Forum Replies Created
-
AuthorPosts
-
Hi,
You can use this instead. Mega menus have different ids.
.avia_mega_div.avia_mega2.six.units {
right: -360px !important;
}Regards,
Ismael
Hi,
This is actually a good plugin:
http://wordpress.org/plugins/post-types-order/
You can manually arrange your posts.
Regards,
Ismael
Hi,
You can follow this link:
https://kriesi.at/support/topic/wpml-only-flags-inline-sorting
Regards,
Ismael
Hi,
If you are using a 4 column porfolio, find this code on functions.php
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Replace it with
$avia_config['imgSize']['portfolio_small'] = array('width'=>300, 'height'=>300 ); // images for portfolio 4 columns
Regenerate thumbnails using this: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael
Hi,
Do you mean the Blog Grid Style? Suggested image size is 495×400. You can find the image size on functions.php.
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
Can you give us a link to your website?
Regards,
Ismael
Hi,
What kind of slider are you using? Easy Slider? Layer Slider?
Can you give us a link to your website?
Regards,
Ismael
Hi,
Open js > avia.js, go to line 537.
item.stop().css('display','block').animate({opacity:1},300);
Replace 300:
item.stop().css('display','block').animate({opacity:1},0);
Regards,
Ismael
Hi,
Actually, there is no right margin.
.inner_sidebar {
margin-left: 50px;
}Adjust the value.
Regards,
Ismael
Hi,
Try to increase your wp memory limit, see if it fixes the issue.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Add this code
.current-page-ancestor a > .avia-menu-fx {
visibility: visible;
opacity: 1;
}
.current-page-ancestor a > .avia-menu-fx .avia-arrow-wrap {
overflow: hidden;
display: block;
}The line and arrow is working fine on my end. This is the screenshot:
Regards,
Ismael
Hi,
Switch your Avia Builder to debug mode. You will be able to see the actual shortcode at the bottom of the Advance Layout Editor. This way you will be able to reproduce the code.
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";
}If are still experiencing issues on the Avia Builder, please increase the php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Please add this on your custom.css
.avia_mega_div.avia_mega2.six.units {
right: -300px !important;
}Regards,
Ismael
Hi,
On Appearance > Menu, give the menu items a special class. If you can’t see it, click Screen Options (top right), look for “Show advanced menu properties”, check “CSS Classes”. You will be able to specify “CSS Classes (optional)” for each menu item.
Regards,
Ismael
Hi,
After uploading the logo, choose the image size before clicking “Use Image as logo”. You can select the Full Size.
Regards,
Ismael
Hi,
I visited your site for the first time and it looks fine. Maybe just a slow internet connection?
Regards,
Ismael
Hi,
I tested this and it seems like you are correct, they are required. Let me tag Kriesi to shed some light on this topic.
Regards,
Ismael
Hi,
<p> tag creates a top and bottom margin. You can add this on your custom.css
p {
margin: 0 0;
}Regards,
Ismael
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
-
AuthorPosts