Forum Replies Created

Viewing 30 posts - 27,181 through 27,210 (of 67,539 total)
  • Author
    Posts
  • Hi,

    You should enable the sky image’s loop or middle transition. Set the image’s opacity to 0 so that it fades out after a few seconds.

    Best regards,
    Ismael

    in reply to: Video Images Not Resizing on Porfolio Grid #1011667

    Hi,

    Thank you for the info. I can’t modify the functions.php file via Appearance > Editor panel though. Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: * box-sizing #1011665

    Hi,

    Ok. I can the see it on a tablet view. This css code will prevent that but the word in a sentence or paragraph may be broken at any character.

    p {
        word-break: break-all;
    }

    Best regards,
    Ismael

    in reply to: * box-sizing #1011598

    Hi,

    Thanks for the update.

    Is the css code active? I can’t seem to reproduce the issue on my end. Did you copy the content from another source? You should inspect the markup and check if there are extra tags like paragraph or line breaks.

    Screenshot: https://imgur.com/a/RtHjxqQ

    Best regards,
    Ismael

    Hi,

    I think you see that notice because your shortcode is not recognized by the builder manager. Again, you can replace that shortcode with theme’s Page Content because that element was specifically created to show the content of a particular post or page.

    Best regards,
    Ismael

    in reply to: bug with insert short separator #1011595

    Hi,

    I don’t really think this can be considered as a bug because that is the default style of the generated color section. If you don’t want to see that border, wrap the separator inside a color section and then disable the top and bottom border style.

    Best regards,
    Ismael

    in reply to: Video Images Not Resizing on Porfolio Grid #1011594

    Hi,

    Ok. I am able to reproduce the issue on Chrome, Windows 8. Please provide the login details in the private field so that we can test the script.

    Best regards,
    Ismael

    in reply to: Enfold Masonry – Blog Posts #1011592

    Hi,

    Thanks for the update. You can add this css code to set a minimum height for the masonry content or title container.

    .av-masonry-entry .av-inner-masonry-content {
        height: 79px;
    }

    The height varies because the title breaks to a second line.

    Best regards,
    Ismael

    in reply to: vertical menu nicht mehr sichtbar #1011591

    Hi,

    Sorry for the late reply. I would like to revert the changes but I got locked out because of WordFence. I set the front and blog pages in the Enfold > Theme Options panel for both languages and then reset the Settings > Reading options to default. That’s all I did.

    Best regards,
    Ismael

    in reply to: google map #1011590

    Hi,

    Thank you for using Enfold.

    Based on Dude’s suggestion, you can try this code on the functions.php file to adjust the map’s parameter.

    add_filter('avf_gmap_vars', 'avf_gmap_vars_settings', 10, 1);
    function avf_gmap_vars_settings($map) {
    foreach($map['av_google_map'] as $key => $data)
    {
        $map['av_google_map'][$key]['gestureHandling'] = 'auto';
        $map['av_google_map'][$key]['scrollwheel'] = 'true';   
    }
    return $map;
    }

    Best regards,
    Ismael

    in reply to: Question about WPML #1011587

    Hi,

    Yes, that could be the setup. You should include the custom link or language switcher in your main menu or put it on the area of the site where it’ll be noticeable. You can include a country flag beside the menu name or label.

    Best regards,
    Ismael

    in reply to: Column Animation Delay Time #1011586

    Hi,

    Thanks for the update. You can use this css code.

    .avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275);
        animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275);
        opacity: 1;
    }
    

    Best regards,
    Ismael

    Hi,

    I would like to access the layer slider but the site is down when I checked. I got a 503 error. Please contact your hosting provider.

    Best regards,
    Ismael

    Hey acelam714,

    Thank you for using Enfold.

    The “Blog meta elements” settings will not affect the grid layout because that specific style is using a different template. You can add this css code on the Quick CSS field to remove the category container.

    .html_elegant-blog #top .avia-content-slider .blog-categories {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Using advance layout editor in CPT #1011162

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Issues With Ajax Portfolio inside of Tab Panel #1011161

    Hi,

    We adjusted the code a bit. Please test it a few times.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	$('.grid-sort-container').on('click', '.grid-entry', function() {
    		setTimeout( function() {
    			console.log('resize');
    			$(window).trigger('av-content-el-height-changed');
    		}, 1500);	
    	});
    })(jQuery);
    </script>
    <?php
    }
    
    add_action('wp_footer', 'ava_auto_resize_dude');
    function ava_auto_resize_dude(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		console.log('tick');
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 1000);
    	
    	$(window).on('load', function() {
    		clearInterval(int);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Featured images on blog index page suddenly changed alignment #1011157

    Hi,

    Thanks for the update. Please try this css code.

    .avia-image-overlay-wrap a.avia_image{overflow: hidden; }
    .avia-image-overlay-wrap a.avia_image .image-overlay{-webkit-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5);}
    

    Don’t forget to toggle the Enfold > Performance > File Compression options after adding the code.

    Best regards,
    Ismael

    Hey AndreyRasklad,

    Thank you for using Enfold.

    Just add this css code on the Quick CSS field.

    #top .open_container + .grid-sort-container {
        display: none;
    }

    Don’t forget to remove the browser cache or do a hard refresh prior to checking the page.

    Best regards,
    Ismael

    in reply to: Completly Messed Up Site #1011149

    Hi,

    Did you update the theme just recently? If you see the issue again, edit the page and then update it. That should fix the issue. (see private field)

    Best regards,
    Ismael

    in reply to: Slide-Show (volle Breite) #1011142

    Hi,

    Thanks for the update.

    Try to adjust the css code a bit.

    .av_minimal_header_shadow {
        box-shadow: none !important;
    }

    Best regards,
    Ismael

    in reply to: Full width WooCommerce Shop #1011141

    Hey flylanddesigns,

    Thank you for using Enfold.

    Did you set that page as the base shop page in the WooCommerce > Settings panel? That page is considered as archive page so you have to enable the “Sidebar on Archive Pages” from the Enfold > Sidebar Settings panel.

    Best regards,
    Ismael

    in reply to: There is an issue related to CSS #1011140

    Hi,

    Thank you for the info.

    We modified the script in the functions.php file. The script removes the inline css as @mike said.

    function ava_remove_wcc_inline_syle(){
      ?>
      <script>
        (function($) {
          $(window).on('wcc-remove-style', function() {
            $(".wcc-settings-meta-box #tab-main").removeAttr("style");
            $(".wcc-settings-meta-box #tab-category").removeAttr("style");
            $(".wcc-settings-meta-box #tab-post").removeAttr("style");
            $(".wcc-settings-meta-box #tab-templates").removeAttr("style");
            $(".wcc-settings-meta-box #tab-notes").removeAttr("style");
            $(".wcc-settings-meta-box #tab-import-export-settings").removeAttr("style");
          });
    
          var int = setInterval(function() {
            console.log('tick');
            $(window).trigger('wcc-remove-style');
          }, 1000);
    
          $(window).on('load', function() {
            clearInterval(int);
          });
        })(jQuery);
      </script>
      <?php
      }
    add_action('admin_head', 'ava_remove_wcc_inline_syle');

    Best regards,
    Ismael

    in reply to: Can't remove space between images in Flexible Masonry #1011133

    Hey Jurriaan,

    Thank you for using Enfold. Glad to hear that you like it. :)

    You can use this css code to adjust the size of the image.

    .av-masonry-image-container img {
        margin: 0;
        object-fit: cover;
        width: 100%;
    }

    Best regards,
    Ismael

    in reply to: Blurry and small images #1011131

    Hi,

    Thanks for the update. We selected a larger version of the image or thumbnail. If you want to adjust it, edit the image element, click on the current image and then select the image again under the Media Library tab. Look for the “ATTACHMENT DISPLAY SETTINGS” and set the “Size” accordingly. Right now, it is set to “Large (646x1030px)”.

    Best regards,
    Ismael

    in reply to: Symbol Box Styling #1011126

    Hey 360gradmedia,

    Thank you for using Enfold.

    You can use this css code to adjust the vertical position of the title.

    .iconbox_left_content .iconbox_content, .iconbox_right_content .iconbox_content {
        overflow: hidden;
        top: 20px;
        position: relative;
    }

    You may need to turn on the custom css class field if you want to apply the modification to these specific iconbox elements.

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Masonry Gallery don't display arrows #1011123

    Hi,

    I can’t access the dashboard. It redirects to a page with the text “Not Available”. Did you enable the “Lightbox Modal Window” option from the Enfold > Theme Options panel? Looks like like the lightbox script is not enabled.

    Best regards,
    Ismael

    in reply to: Layer slider #1011122

    Hey info224,

    Thank you for using Enfold.

    You can use this css to remove the negative margin of the columns so they don’t cover the layer slider.

    @media only screen and (max-width: 767px) {
    .responsive #top .flex_column_table {
        display: block;
        margin-top: 0 !important;
    }
    }

    You can also include this code inside the css media query above to adjust the height of the slider.

    #layerslider_3, #layerslider_3 * {
        height: 500px !important;
    }
    
    #layerslider_3 img.ls-layer {
        width: 500px !important;
        margin-left: -50px !important;
    }

    This may distort the images a bit.

    // https://imgur.com/a/Ewdj7DJ

    Best regards,
    Ismael

    in reply to: Woocomerce product Gallery save on Pinterest #1011108

    Hey Daniel,

    Thank you for using Enfold.

    Where can we see this in action? I think you forgot to post the product url. Please post it in the private field.

    Best regards,
    Ismael

    in reply to: Animated numbers #1011105

    Hi,

    You can actually change the color from the element’s options panel. Switch to the “Colors” tab and then set the “Font color?” settings to “Custom”.

    Best regards,
    Ismael

    in reply to: Enfold Masonry Grid – Invisible Content #1011103

    Hey ihf-eramstad,

    Thanks for the update.

    None of your posts have featured image. The masonry element requires images in order for the items to display properly.

    Best regards,
    Ismael

Viewing 30 posts - 27,181 through 27,210 (of 67,539 total)