Forum Replies Created
-
AuthorPosts
-
Hi,
Yes, I saw the issue but after I refresh the page a few times, it fixed itself to normal.
Let me tag the rest of the support team.
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS to make the thumbnails square.
#top div .avia-gallery img {
width: 100%;
height: 100%;
}
.avia-gallery-thumb a {
width: 20%;
height: 97px;
}Regards,
Ismael
Hi,
What is the Blog style you’re currently using? Big preview? Small preview?
You can add this on your custom.css
.big-preview.single-big {
display: none;
}
.small-preview {
display: none;
}Regards,
Ismael
Hi,
You can use this code
.current-page-ancestor a > .avia-menu-fx {
visibility: visible;
opacity: 1;
}Regards,
Ismael
Hi,
Yes, it is possible.
<img src="IMAGE URL" style="padding: 7px; border: 1px solid gray;" />
Regards,
Ismael
Hi,
Do you have WordPress 3.5 installed?
Try to increase the php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Is it possible to sync the mailchimp subscribe form to the wordpress login function?
Regards,
Ismael
June 4, 2013 at 2:34 am in reply to: Slider is on the left and not everytime in the center/middle #122851Hi,
Go LayerSlider WP > Select the slider > Global Options > Basic > Layers Container. Specify a width in pixel, 1210 for example. This will constrain the elements at the center.
Regards,
Ismael
Hi,
If you are editing page and you use the default editor, the page.php will then be use as the template. You can’t use a custom template then use the Layout Builder at the same time.
Regards,
Ismael
June 4, 2013 at 2:22 am in reply to: How to Increase Font Size and Special Heading Isn't Responsive #122836Hi,
You can edit base.php, look for #Typography section.
You can use Media Queries to target the special heading.
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
.av-special-heading h3 {
YOUR STYLE HERE
}
}Regards,
Ismael
Hi,
Just add this on your custom.css
.blog-author.minor-meta {
display: none;
}Open loop-index.php then find this code
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';Replace it with
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';Regards,
Ismael
Hi,
Can you give us a screenshot? It’s kind hard to find the white line.
Regards,
Ismael
Hi,
I tested this on my end. It works fine. Can you please embed the youtube back? Maybe on a different page with the same layout.
Regards,
Ismael
Hi,
I can see your sidebar. Please remove browser cache then reload the page.
Regards,
Ismael
Hi,
I’m not sure if this is possible. Let me tag the rest of the support team.
Regards,
Ismael
June 4, 2013 at 1:52 am in reply to: "Enfold Latest News" widget when in archive view shows broken links #122796June 4, 2013 at 1:51 am in reply to: bold text invisible in front + selected text 'disappears' #122910Hi,
Can you give us a link to the issue?
I tested this on my end and it is working fine. I can see the bold text.
<strong>Click here to add your own text</strong>
<b>Click here to add your own text</b>Regards,
Ismael
Hi,
You can switch the Avia Builder to debug mode. You will be able to see the actual shortcode at the bottom of the Advance Layout Editor.
Add this code on your functions.php
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}Regards,
Ismael
Hi,
We thought you are using Abundance. I will move this thread to Enfold.
Regards,
Ismael
Hi,
I’m sorry but I’m not sure if there is a thumbnail size with the dimension of 55x55px. What do you mean “Latest Posts”? Can you give us a link to the page?
You can change the thumbnails size on functions.php
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)Regards,
Ismael
Hi,
Please switch to twentytwelve theme, see if the shortcode generator for the plugin is working.
Regards,
Ismael
Hi,
Add this on your custom.css
#top input[type="text"] {
float: left;
clear: left;
}Regards,
Ismael
Hi,
You can edit includes > loop-index.php, find this code.
$current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>') : get_the_excerpt();
$current_post['content'] = $blog_content == "excerpt_read_more" ? $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>' : $current_post['content'];To disable date and time, find this code and remove it.
echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
echo "<span class='text-sep'>/</span>";Regards,
Ismael
June 4, 2013 at 12:49 am in reply to: REMOVE DATE/BY/AUTHOR TEXT FROM PORTFOLIO AFTER SEARCH #122877Hi,
Please use this.
.search .date-container.minor-meta, .search .author-container.minor-meta {
display: none;
}Regards,
Ismael
Hi,
You need to use the dropcap shortcode.
<blockquote>[av_dropcap1]"[/av_dropcap1]Click here to add your own text</blockquote>[av_dropcap1]"[/av_dropcap1]
Or you can bring the default wordpress blockquote styling.
blockquote {
background: transparent url('../images/skin1/quotes.png') no-repeat top left;
}You need to supply the image for quotes.png.
Regards,
Ismael
-
AuthorPosts