Hi,
it sounds that this is a good solution. Thanks a lot!
Are you use this plugin with enfold and the fixed Navibar?
Regards
Hi,
You should not add any code to style.css but you should use Custom.css file instead. Located in Enfold > Css folder
Regards,
Yigit
I use this on another blog and it’s works well. Find it in WordPress Plugins Search
CE WP-Menu per Page
Hi,
the way things are going there is a new client and I think I want to use enfold for his website.
But it´s a little bit difficult. This client have different businesses, that means he has sportclubs, restaurants and hotels.
In this case it´s ok to handle all them with one website but I need different mainmenus on different subsites. How can I do this with enfold?
I don´t mean the submenu.
For example the startsite need the Menuitems: Logo 1, item 1, item 2, item 3, item 4 but on the subside I need: Logo 2, item to startpage, item 5, item 6, item 7, item 8.
I know how to create the menus but what is the right way to insert them inside the pages. And how can I classify the 2 different Logos?
I want to use the fixed NavBar.
Best regards
Hi Voicepro,
You can increase font size and change text color by adding following code to Quick CSS in Enfold theme options under Styling
.sub_menu { font-size: 13px; }
.sub_menu>ul>li>a { color: red!important; }
I hope that helps you
Regards,
Yigit
Hi,
Please try adding following code to Quick CSS in Enfold theme options under Styling
#menu-item-3408 #top #header .avia_mega_div > .sub-menu, #menu-item-3454 #top #header .avia_mega_div > .sub-menu > li > ul li, #menu-item-3454 #top #header .avia_mega_div > .sub-menu > li > ul li, #menu-item-3455 #top #header .avia_mega_div > .sub-menu > li > ul li { background-color: red; }
This should do it, if it does not, let us know
Regards,
Yigit
I just had my host change all permissions on my site and re-uploaded version 2.1 of enfold (freshly downloaded from theme forest today) and I still get the same error message. Is there any information you might want that might help with this error?

-
This reply was modified 11 years, 10 months ago by
Alex.
Hi,
Please add following code to Quick CSS in Enfold theme options under Styling
.main_color .avia-icon-list .iconlist_icon { background-color: red!important; }
Regards,
Yigit
-
This reply was modified 11 years, 10 months ago by
Yigit.
hi there
i have added this to my css, which removes the thumbnail:
.avia-post-nav .entry-image {
display: none!important;
}
i am also trying to reduce the width of the area on rollover, and tried:
.avia-post-nav:hover .entry-info-wrap {
width:140px;}
but the text is not displaying properly now; please advise, thanks :)
when I try to save the theme settings I get this message: “Saving didnt work! Please reload the page and try again” and changes are not saved.
I’ve changed the memory limit to 128M
I installed the last version of Enfold theme
I need help, what can I do?
I am using translated version of WordPress, so there shouldn’t be a problem. And am I right if I think, that this code: <?php _e('Search','avia_framework')?>
mean, that it’s in avia_framework textdomain in Enfold theme?
-
This reply was modified 11 years, 10 months ago by
usrbowe.
The thing I don’t understand is why the enfold demo DOES work perfectly on the same Internet Explorer….
Hi,
I am trying to translate a little bit Enfold theme. But some text strings are missing. I am using WP plugin Codestyling Localization. For example I can’t find “Nothing Found” from 404 Error page in avia_framework textdomain. Thanks
Hi Judith,
Please add following code to Quick CSS in Enfold theme options under Styling
.main_color .iconlist_content { color: black !important; }
you can change color by changing ‘black’ to any other color or colors hex value
Regards,
Yigit
In the main navigation, there is no indication to show when sub menu items have their own sub items. A simple arrow indicator or similar would help to alleviate this problem.
The thread was closed for this issue for a previous user, but I have the same issue. The issue persists and I am running WP 3.6.1 and Enfold 2.1 (with Enfold child downloaded from your site) on a clean install of a new host, so I don’t know what the problem is.
I just deleted Enfold from the themes folder and reuploaded a fresh copy and it still persists.
http://homesmartsecure.com
Hi,
These ones? they display correctly in my end:

Please post a screenshot of what you see.
Regards,
Josue
The issue is in the Icon Boxes right under the slider of the homepage…(as I mentioned in my second post when replying to dude.) It works fine everywhere else.
I wouldn’t be worried about it…except it’s at the very top of the first page…and the first thing everyone will see when they visit my site.
That’s why I was hoping to get the accents in those particular Icon Boxes at the top of the page. I suppose I could not use the icon boxes…(I just think they are kind of cool though).
Thanks for the replies so far…and thanks in advance for a quick solution. (here’s finger crossed).
;)
Found lots of info online, but still very confusing to me. I’m running Enfold and WPML. Yet WPML finds no .mo files, so I don’t know what it means.
Please see this screenshot of what WPML says about the .mo files: http://goo.gl/SN750X
Is that a problem? I see there is a German .mo file (probably because of Kriesi’s native language), but how to get the other missing files?
Thanks in advance!
Hi,
I think I found a solution for the revisions issue and we’ll fix this in the next update (Enfold 2.2). For a quick fix add following code to the bottom of functions.php
add_action('wp_restore_post_revision', 'avia_builder_restore_revision', 10, 2);
function avia_builder_restore_revision( $post_id, $revision_id )
{
//$post = get_post($post_id);
$revision = get_post($revision_id);
$meta_fields = array('_aviaLayoutBuilderCleanData', '_avia_builder_shortcode_tree');
foreach($meta_fields as $meta_field)
{
$builder_meta_data = get_metadata( 'post', $revision->ID, $meta_field, true );
if (!empty($builder_meta_data))
{
update_post_meta($post_id, $meta_field, $builder_meta_data);
}
else
{
delete_post_meta($post_id, $meta_field);
}
}
}
I didn’t test this but you can try following code modification. Open up and replace /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider.php
if($navigation == 'dots') $output .= $this->slide_navigation_dots();
with
$output .= $this->slide_navigation_dots();
and
$html .= "<a href='#{$i}' class='goto-slide {$active}' >{$i}</a>";
with
$html .= "<a href='#{$i}' class='goto-slide {$active}' >{$this->config['content'][($i-1)]['attr']['title']}</a>";
and add following code to the quick css field
.avia-content-slider .avia-slideshow-dots a {
height: auto;
width: auto;
border-radius: 0;
background: #000;
opacity: 1;
filter: alpha(opacity=100);
text-indent: 0;
padding: 5px;
}
Is there already an option or a workaround to change the logo based on screensize or scrollposition. Well in fact just like you do it on your new kriesi.at design which seems to be very much based on Enfold ;-)
Cheers
Michael
Hi guys
Still having problems with your template Enfold. Please take a look @ the website: http://new.raffaello.name
1. Every time I embed a Vimeo video with the “video media element”, two black lines appear on the sides once I resize the width of the page. This looks strange. How do I get rid on these?
2. Why is there so much blank space on the left of the pages? This results in a need for an unnecessarily large width for the page. The problem appears to be with the way that you automatically scale the page. I don’t understand why the left margins move when you resize the page.
3. After sending a message in the “Contact” section, the bottom half of the screen turned black (has do to with how you resize the webpage). The footer kind of expands. is there a way to get a white space instead?
Thank you in advance!
Hi,
Please add following code to Quick CSS in Enfold theme options under Styling
@media only screen and (min-width: 768px) and (max-width: 989px) { .avia-button.avia-size-medium { min-width: 210px; } }
@media only screen and (max-width: 767px) { .avia-button.avia-size-medium { min-width: 231px; } }
Regards,
Yigit
-
This reply was modified 11 years, 10 months ago by
Yigit.
Hi,
In your WordPress theme directory you should go to Enfold > 404.php file and Enfold > Includes > Error404.php file
Regards,
Yigit
Hi Josue,
now I found what I need :)
Thanks a lot for this nice tip!
Best regards,
Bruno
Hi Devin,
I added this snippet into my functions.php inside the childtheme. After that I went to the startpage and turn on the default editor.
I insert a class to one Framea to test it. After Update it, the editor window was empty. All the code was gone away.
But fortunately after I turned to Avia Builder the Frames was inside it. All is like before.
But if I turned now to the default editor, I can´t see any code. So I can´t add classes or anything else…
Do you have an idea what should I do?
Best regards
Hi,
1) Please add following code to Quick CSS in Enfold theme options under Styling
.avia-content-slider .slide-entry-title { text-align: center; }
2) You can change blog layout in Blog Style in General Settings
http://i.imgur.com/VrbxQnB.jpg
Regards,
Yigit
Hi,
After loading in the dummy content to the Enfold theme i accidentally deleted the Fullscreen slider page.
This is the page on the demo site
http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
What i need to find out is the short code or CSS that adds the smoothscroll onto the “Learn More” Button on slide 2. Also if you can tell me where best to apply the code to the slide.
Any pointers would be really appreciated
Thanks!!
Hi,
Can you once again check that Enfold Main Menu is checked in Appearance > Menus
http://i.imgur.com/4D7x1G3.jpg
Regards,
Yigit