Forum Replies Created

Viewing 30 posts - 49,741 through 49,770 (of 66,206 total)
  • Author
    Posts
  • in reply to: Strange background image issue #408672

    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,
    Ismael

    in reply to: Sidebar issue with events pages. #408669

    Hi!

    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,
    Ismael

    in reply to: Advanced layer slider #408664

    Hey!

    Please use any other slider shortcode except for the layer slider. The layer slider will only work with the advance layout builder.

    Regards,
    Ismael

    in reply to: Logo 1000px wide #408663

    Hey!

    Please replace it with this:

    .logo img, .logo, .logo a {
    width: 800px;
    height: 120px;
    }

    That should fix it.

    Regards,
    Ismael

    in reply to: Change switchWidth on version 3.0.8 #408662

    Hey!

    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,
    Ismael

    in reply to: BUG Not saving content #408660

    Hey!

    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!
    Ismael

    in reply to: Getting the Sidebar to show the Parent/Grandparent #408659

    Hi!

    Alright. Please post the login details here. We would like to check it.

    Best regards,
    Ismael

    in reply to: Failed to changed font #408585

    Hi!

    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,
    Ismael

    Hi 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,
    Ismael

    in reply to: Setting a max height in color sections #408195

    Hi!

    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,
    Ismael

    in reply to: Blog Page width with No Sidebar + Category Page #408185

    Hey!

    Add this to the Quick CSS field:

    .single .avia-image-container img {
    width: 100%;
    }

    Cheers!
    Ismael

    in reply to: Create a "Consultants" or "Team" Slider #408179

    Hi curtdonohue!

    Thank you for using Enfold.

    Try to use the Content Slider. You need to add the contents manually.

    Regards,
    Ismael

    in reply to: Video as Preview Image in AJAX Portfolio #408176

    Hi 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,
    Ismael

    in reply to: Woocommerce product slider additional plugin #408169

    Hey!

    Elliot meant to select 3 column in the product slider options. Remove the 1/3 column layout element.

    Cheers!
    Ismael

    in reply to: Responsive Menu stopped working #408165

    Hi 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,
    Ismael

    in reply to: Using a Media Manager with enfold ? #408163

    Hey 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!
    Ismael

    in reply to: Full screen Background Image #408156

    Hey!

    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,
    Ismael

    in reply to: Sun Menu in Single Page Woocommerce #408151

    Hi 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!
    Ismael

    in reply to: global transparent banner element #408145

    Hey 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,
    Ismael

    in reply to: Sticky Header Ipad #407864

    Hey 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!
    Ismael

    in reply to: advanced/default editor #407862

    Hey!

    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!
    Ismael

    in reply to: Advanced Layout Editor does not open on some pages #407861

    Hi!

    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,
    Ismael

    in reply to: Testimonial Slider in Footer? #407859

    Hey 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,
    Ismael

    in reply to: Menu seperator #407856

    Hi!

    Add this code to remove the bottom and top padding of the navigation:

    .html_header_sidebar #header .av-main-nav {
    padding: 0;
    }

    Regards,
    Ismael

    Hey!

    Add this to the Quick CSS field:

    #top .header-scrolled #header_meta ul.social_bookmarks a {
    color: gray;
    }

    Cheers!
    Ismael

    in reply to: How to change menu color on current page + hover #407846

    Hey!

    Please try this:

    .current-menu-item a .avia-menu-text {
    color: red !important;
    }

    Best regards,
    Ismael

    in reply to: Mega Menu – Custom Drop-down Disappears #407845

    Hi!

    For modifications like this one, you can visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    in reply to: Search Icon not appearing #407844

    Hey!

    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!
    Ismael

    in reply to: Justify the main nav so it fills horizontal space? #407840

    Hi!

    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,
    Ismael

    in reply to: How to set up woocommerce filters? #407839

    Hi!

    You need to create product attributes to create product variations. Use the Woocommerce Layererd Nav widget on Appearance > Widgets panel.

    Regards,
    Ismael

Viewing 30 posts - 49,741 through 49,770 (of 66,206 total)