Forum Replies Created
-
AuthorPosts
-
Hi,
Look for Screen Options > see if Avia Layout Builder is checked.
Try to increase the php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
This is the actual output for the blockquote use on the page.
<blockquote class="first-quote">Post Formats is a theme feature introduced with Version 3.1. Post Formats can be used by a theme to customize its presentation of a post.</blockquote>
Regards,
Ismael
June 5, 2013 at 5:36 am in reply to: Problem when hover on image alignement with Firefox and Opera Mac #115640Hi,
Please send your login details to ///.
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHi,
Enfold 1.5 is available. Please download it on your themeforest account.
Regards,
Ismael
June 5, 2013 at 5:32 am in reply to: How to Increase Font Size and Special Heading Isn't Responsive #122838Hi,
Open includes > helper-post-format.php, then find this code on line 52:
$heading = is_singular() ? "h1" : "h2";
Replace it with
$heading = is_singular() ? "h1" : "h1";
You can change the font size using this:
.entry-content .post-title {
font-size: 30x;
line-height: 1.5em;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You can find the theme styles on the CSS folder. In order to modify the theme, you can add CSS modifications on custom.css or your Quick CSS. Try the following:
.inner_sidebar {
margin-left: 20px;
}Regards,
Ismael
Hi,
Do you have any plugins installed? Try to deactivate them.
Please add this on your custom.css
.js_active .grid-image {
opacity: 1;
}Regards,
Ismael
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
-
AuthorPosts