Forum Replies Created
-
AuthorPosts
-
Hi!
You have this custom css code:
.responsive .container { max-width: 3000px; }
I think 3000px is a bit too much. Default is 1030px. If you don’t mind, please post the css modifications that you have on pastebin.com. We would like to check it.
Regards,
IsmaelHi!
I’m sorry about that. There’s a missing apostrophe on the code above. We updated the code. Enable the Sidebar on Smartphones setting on Enfold > Sidebar Settings panel to enable the sidebar on mobile.
Regards,
IsmaelHey!
Please use any other slider shortcode except for the layer slider. The layer slider will only work with the advance layout builder.
Regards,
IsmaelHey!
Please replace it with this:
.logo img, .logo, .logo a { width: 800px; height: 120px; }
That should fix it.
Regards,
IsmaelHey!
Add this to the Quick CSS field:
@media only screen and (max-width: 1100px) { .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { display: block; } .responsive .av_mobile_menu_tablet .main_menu { display: none; } .html_mobile_menu_tablet #mobile-advanced { display: block; }}
Best regards,
IsmaelHey!
Did you add any html tags or code on the page? Make sure to close them properly. Is this is happening on a newly created page?
Cheers!
IsmaelHi!
Alright. Please post the login details here. We would like to check it.
Best regards,
IsmaelHi!
Add this to the Quick CSS field:
body { font: 13px/1.65em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }
Let us know what happens.
Regards,
IsmaelMarch 9, 2015 at 4:17 pm in reply to: Possible for Tabs on Page to highlight correct submenu item #408211Hi BruceJackson!
Thank you for using Enfold.
I’m sorry but it’s not possible without creating a custom jquery script. This a custom work so you might need the help of a freelance developer. Or try to add a custom class to the tab menu items on Appearance > Menus panel. Click screen options, enable the CSS Classes option. Use “tab-menu” as css class for example then add this to the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script> (function($){ $(".tab-menu a").click(function(){ $(this).removeClass('active'); $(this).stop().addClass('active'); }) })(jQuery); </script> <?php }
Add this to the Quick CSS field:
#top #header .avia_mega_div > .sub-menu > li > ul > li a.active { color: red !important; }
Regards,
IsmaelHi!
I’m sorry but you can only set the section’s minimum height. The actual height of the section will depend on the content. I don’t think it’s possible to control the height without creating a custom jquery script which dynamically calculate the browser height and apply it to the section. You might need to hire a freelance developer for this one. Or use css media queries to resize the section and the elements inside it.
Regards,
IsmaelHey!
Add this to the Quick CSS field:
.single .avia-image-container img { width: 100%; }
Cheers!
IsmaelHi curtdonohue!
Thank you for using Enfold.
Try to use the Content Slider. You need to add the contents manually.
Regards,
IsmaelHi sundialstudios!
Thank you for using Enfold.
Unfortunately, the option isn’t available yet. You can request the feature here: https://kriesi.at/support/enfold-feature-requests/
Or set the Display Preview Images to the 4th option which disables the preview image then add the Video shortcode inside the preview text editor.
Regards,
IsmaelHey!
Elliot meant to select 3 column in the product slider options. Remove the 1/3 column layout element.
Cheers!
IsmaelHi TJ!
Thank you for using Enfold.
Looks like you don’t have the latest version of the theme. Please download version 3.0.8 from your themeforest account then update the theme via FTP.
Regards,
IsmaelHey mlk92!
Thank you for using Enfold.
The plugins listed above sounds promising. You can try them. Or try to pre-organize the images before uploading them. Name them properly, by date, category or whatever floats your boat. It will be much easier to search for them later.
Cheers!
IsmaelHey!
Thank you for the info.
Try to use the Color Section element then set the image as background. The second part is a bit unclear. Can you please provide a screenshot of the design you’re after?
Regards,
IsmaelHi Smaskit6!
Thank you for using Enfold.
You can use woocommerce hooks and filters to insert a new element such as a drop down menu inside a single product page. Maybe, you can use the Fullwidth Sub Menu shortcode and the do_shortcode function. Refer to this link for more info: http://docs.woothemes.com/document/hooks/
Cheers!
IsmaelHey Bryan!
Thank you for using Enfold.
There is no global option for the transparent header so you have to do it for every pages manually. Create a template as a starting content. Just add the elements that you want as starting content then click the Template button at the top right corner of the advance layout builder. Use this template for every page.
Regards,
IsmaelHey Viktoria!
Thank you for using Enfold.
The site looks fine when I checked the page on iPad emulation. Can you please provide a screenshot of the issue?
Cheers!
IsmaelHey!
Maybe this filter will help to enable/disable the advance layout builder for specific user roles:
add_filter('avf_builder_boxes','custom_post_types_options'); function custom_post_types_options($boxes) { $user_info = get_userdata(1); $user_login = $user_info->user_login; if ($user_login == 'admin') { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page'), 'context'=>'normal', 'priority'=>'high' ); }else { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array(), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('post','page'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('post','page'), 'context'=>'normal', 'priority'=>'high' ); } return $boxes; }
The code above will enable it for the user with the “admin” username. For user role conditionals, refer to this link: https://wordpress.org/support/topic/conditional-display-based-on-role
Cheers!
IsmaelHi!
There’s an error in the console when we edited the page:
http://scarlettdesign.co.uk/dev/360play/wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 403 (Forbidden)
Please re-install the WordPress files.
Regards,
IsmaelHey Antonio!
Thank you for using Enfold.
Generate the testimonial shortcode by using the shortcode wand. Copy it then place it inside a text widget on Appearance > Widgets panel.
Best regards,
IsmaelHi!
Add this code to remove the bottom and top padding of the navigation:
.html_header_sidebar #header .av-main-nav { padding: 0; }
Regards,
IsmaelMarch 9, 2015 at 5:09 am in reply to: Header Social Icons turn white when scrolling (header background is also white) #407854Hey!
Add this to the Quick CSS field:
#top .header-scrolled #header_meta ul.social_bookmarks a { color: gray; }
Cheers!
IsmaelHey!
Please try this:
.current-menu-item a .avia-menu-text { color: red !important; }
Best regards,
IsmaelHey!
All css modifications should be placed inside the Quick CSS field or the custom.css file, better yet, add it in the child theme’s style.css. You have to avoid editing theme core files because they will be overwritten once you update the theme. I’m sorry but can we can’t help you trace back css modifications made on the base.css file.
Cheers!
IsmaelHi!
You can try this:
ul#avia-menu { text-align: justify; min-width: 500px; width: 100%; } ul#avia-menu:after { content: ''; display: inline-block; width: 100%; } ul#avia-menu li { display: inline-block; float: none; }
Regards,
IsmaelHi!
You need to create product attributes to create product variations. Use the Woocommerce Layererd Nav widget on Appearance > Widgets panel.
Regards,
Ismael -
AuthorPosts