Forum Replies Created

Viewing 30 posts - 46,261 through 46,290 (of 66,065 total)
  • Author
    Posts
  • in reply to: Layer Slider Image Transparency #482066

    Hi!

    First of all the image that you’re using is not transparent: http://www.hayden-media.com/A1/wp-content/uploads/2015/07/slide1_Layer_x.png

    Make it transparent then use this in the Quick CSS field to remove the background of the main container:

    #main, .avia-msie-8 .av_header_sticky_disabled#header {
        background-color: transparent;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for using Enfold.

    You can’t set the tooltip to align left or right but you can adjust the position in the Quick CSS field:

    #top .avia-icon-tooltip {
        margin-left: -50px;
    }
    
    .avia-tooltip .avia-arrow-wrap {
        margin-left: 43px;
    }

    Regards,
    Ismael

    in reply to: Add Facebook Jaca Script Code to Enfold #482057

    Hey RynoSwan!

    Thank you for using Enfold.

    What is the code that you need to add? You can try the wp_head or wp_footer hook. https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    Best regards,
    Ismael

    in reply to: Secondary Header Adding Whitespace Issue #482055

    Hey!

    Hmm.. I just don’t see any difference between the pages but glad it worked. :)

    Best regards,
    Ismael

    in reply to: Change Mobile Menu Icon #482054

    Hey djshortkut!

    Thank you for using Enfold.

    What is the error that you get when you test the code? You can replace the code with this:

    add_action('init', function() {
    	global $avia_config;
    	$avia_config['font_icons']['close']['icon'] = 'ue824';
    	$avia_config['font_icons']['mobile_menu']['icon'] = 'ue824';
    	return $avia_config;
    });
    

    Adjust the icon value.

    Regards,
    Ismael

    in reply to: Full Screen Slider #482049

    Hey MindSpark!

    Thank you for using Enfold.

    I’m not sure what you mean by that but if you try to resize the browser, you’ll see that the button is visible on smaller screen size.

    Regards,
    Ismael

    in reply to: Logo not centered in mobile version #482046

    Hi martinprankl!

    Thank you for using Enfold.

    Use this in the Quick CSS field to adjust the logo on mobile view:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        width: 100%;
    }
    
    .responsive .logo a {
        text-align: center;
    }
    
    .responsive .logo img {
        display: inline-block;
        max-height: 156px;
    }
    }

    Regards,
    Ismael

    in reply to: Google Fonts Stylesheet #482044

    Hi Gigi!

    Thank you for using Enfold.

    Use this in the functions.php file to disable the default google font:

    /* Disable Google Font embedding */
    add_action( 'init', 'enfold_customization_switch_fonts' );
    function enfold_customization_switch_fonts() {
        global $avia;
        $avia->style->print_extra_output = false;
    }

    Regards,
    Ismael

    in reply to: Startup Questions #482038

    Hey TippToppFoto!

    Thank you for using Enfold.

    Users usually use third party services like imgur or dropbox when they want to post a screenshot because the forum doesn’t have any upload capability :)

    1.) Are you trying to edit the menu items’ description? Go to the Appearance > Menus panel then remove the menu item description. If you can’t see the description field, activate it in the Screen Options.

    2.) I’m sorry but can you please explain the issue a little bit further A screenshot will help.

    3.) Use this in the Quick CSS field to adjust the left post navigation:

    .avia-post-prev {
        left: 301px;
    }

    4.) You can only use a single style for the header. It’s either the top header or the left or right sidebar menu.

    If possible, please create a single thread for each inquiry. Thank you.

    Best regards,
    Ismael

    in reply to: Full Page Slider Content Area Height #482030

    Hey!

    Glad it is working now. If you have any question, feel free to open a new thread. :)

    Cheers!
    Ismael

    in reply to: Exclude all Enfold .css Files from one-subpage #482025

    Hey Kasperlino!

    Thank you for using Enfold.

    What is the application that you’re trying to run? Please give us a link to a test page.

    Best regards,
    Ismael

    Hi Guenter!

    Thank you for using Enfold.

    Do you see any errors when you check the site on Edge browser’s console? I’m afraid we don’t have the browser at our disposal yet but we will check it as soon as possible.

    Best regards,
    Ismael

    in reply to: Menu over logo #482017

    Hey timpro!

    Thank you for using Enfold.

    You can adjust the menu padding and font size on smaller screens:

    @media only screen and (max-width: 1100px) {
    .av-main-nav > li > a {
        padding: 0 8px;
        font-size: 11px;
    }
    }

    Regards,
    Ismael

    in reply to: Different menu on different pages #482016

    Hey csmwebdesign!

    Thank you for using Enfold.

    You can combine the “cars” and “motorcycles” menu items into a single menu then use this plugin to control the visibility of the menu items: https://wordpress.org/plugins/menu-items-visibility-control/

    Regards,
    Ismael

    Hey!

    I’m sorry but you can’t add the modification in the child theme. You can add this in the Quick CSS field to disable the gallery animation:

    .avia-gallery-thumb img {
    	opacity: 1 !important;
    	transform: scale(1) !important;
    }

    Best regards,
    Ismael

    in reply to: theme not working #481916

    Hi compudean!

    Thank you for using Enfold.

    Glad to know you fixed it. How?

    Regards,
    Ismael

    in reply to: Avai not loading. Tried everything #481914

    Hey!

    This is usually a cache issue. How did you fix it?

    Regards,
    Ismael

    in reply to: WP gallery shortcode : thumbnail sizes not working #481911

    Hi!

    You can add this in the Quick CSS field:

    #top .gallery .gallery-item {
        margin: 1px 1px 0 0;
        width: auto;
        height: auto;
        padding: 0;
    }

    Regards,
    Ismael

    in reply to: No Thumbnails in related post or latest news. #481910

    Hi!

    Try to set the Maximum Rating of the avatars on Settings > Discussions > Avatars panel. Make sure that the users’ email have a registered avatar on http://en.gravatar.com/

    Regards,
    Ismael

    in reply to: Why doesn't text mode show text on pages #481905

    Hey cidcreative!

    Thank you for using Enfold.

    Please avoid from switching between the Default Editor and the the Advance Layout Builder when building the content. Try to switch the ALB to debug mode to get the shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Cheers!
    Ismael

    in reply to: duplicate image on blog #481904

    Hey!

    What is the original size of the images that you uploaded in your posts? You can regenerate the thumbnails in order to recreate the theme’s post thumbnail correctly. Use this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to the Settings > Media panel then click the “Regenerate Thumbnails” button.

    Cheers!
    Ismael

    in reply to: Weird large picture on post page #481902

    Hey esemmel!

    Thank you for using Enfold.

    I checked the site but I don’t see the large image. Can you please provide a screenshot of the issue? Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Adding a second responsive header image #481899

    Hi aztamer!

    Thank you for using Enfold.

    We need to see the actual website. Please post the url here. You can use css media queries to adjust the size of the image on smaller screens.

    Best regards,
    Ismael

    in reply to: make preview image bigger #481897

    Hey iveyeng!

    Thank you for using Enfold.

    1.) Add this in the Quick CSS field to adjust the thumbnail size:

    .small-preview {
        width: 160px;
        height: 160px;
        line-height: 160px;
    }
    
    .template-blog .blog-meta {
        left: -30px;
        position: relative;
    }

    2.) Can you please provide a screenshot? Use imgur or dropbox.

    Regards,
    Ismael

    in reply to: Menu not working on smartphone #481895

    Hi pbchambers!

    Thank you for using Enfold.

    I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author regarding the issue. I checked the site and the mobile menu icon container is sliding but it’s not stopping correctly.

    Best regards,
    Ismael

    in reply to: Login Problem with enfold 3.2.3 #481894

    Hey!

    What are the codes that you modified? Please use the latest version of functions-enfold.php file then add the yoast breadcrumbs modifications there.

    Regards,
    Ismael

    in reply to: Adding navigation arrows to Testimonial slider (compact) #481892

    Hi Citrusconstructions!

    Thank you for using Enfold.

    I’m sorry but the navigation arrows are not applicable on the testimonial element. You will have to modify the testimonials.php file inside the config-templatebuilder > avia-shortcodes folder.

    Best regards,
    Ismael

    in reply to: CSS Mouseover with Text box has copy showing over it #481890

    Hey!

    You can adjust the z-index property of the column:

    .flex_column.av_one_fourth.flex_column_div.av-zero-column-padding.avia-builder-el-9.el_after_av_three_fourth.el_before_av_one_full {
        z-index: 9999;
    }

    Regards,
    Ismael

    in reply to: Technical Question #481886

    Hi!

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Cheers!
    Ismael

    in reply to: Woocommerce – Product Info shows nothing #481884

    Hey!

    Where did you add the element? Please give us the url to the product item. Note that the Product Info element will only work for variable products with attributes. It will display the product attributes of the product item.

    Regards,
    Ismael

Viewing 30 posts - 46,261 through 46,290 (of 66,065 total)