Forum Replies Created

Viewing 30 posts - 1,111 through 1,140 (of 34,867 total)
  • Author
    Posts
  • in reply to: responsive issues images #1477264

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #footer-page .av_one_fifth .avia-image-container {
    	padding: 10px 0;
    }
    }

    adjust the padding to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Single Post: Change Headline and Image #1477262

    Hi,
    Try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .small-preview, .big-preview {
        max-height: 200px;
    }
    
    .small-preview img, .big-preview img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    }

    and adjust the height to suit.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider > Fallback image not working #1477261

    Hi,
    Glad to hear that you have this sorted out, this seems fine. Shall we close this thread then?

    Best regards,
    Mike

    Hi,
    I’m not sure what you mean, please explain further.

    Best regards,
    Mike

    in reply to: Footer visibility problem in Safari (Enfold 6.0.9) #1477201

    Hi,
    Thank you for your patience.
    Glad to hear that you have found the issue, the content blocker setting in Safari.
    Screen Shot 2025 02 16 at 1.05.41 PM
    Unfortunately this is not something that the theme can change within your browser.

    Best regards,
    Mike

    in reply to: Layout possible with Enfold? #1477199

    Hi,
    Thank you for your patience. but the vertical black line is from a special element in the fusion plugin, Enfold doesn’t have such an element, we have a horizontal hr element.
    If you would like to request this feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Elements to recreate law homepage 3-box lines #1477197

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Enlarging background image within cell #1477196

    Hey northorie,
    The image is in a 1/3 column and the image width fills it, I assume that you want it taller without stretching it.
    So try changing your columns to a larger size, or this css:

    @media only screen and (min-width: 1024px) { 
    .responsive .home #av_section_1 .container {
    	max-width: 100%;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 02 16 at 8.08.57 AM

    Best regards,
    Mike

    in reply to: Single Post: Change Headline and Image #1477195

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
      $('.single-post').each(function() {
      $(this).find('.entry-content-header').css({'margin-top':'15px'}).insertAfter($(this).find('.big-preview').css({'margin-top':'0'}));
      });
      })(jQuery);
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 02 16 at 7.31.56 AM
    To use the full size featured image for single posts with a sidebar, instead of the 845×321 size that will be upscaled, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' );
    function custom_single_event_post_thumbnail_size($size) {
        if( !is_singular('post') ) {
            return;
        }
        if( ! has_post_thumbnail() ) {
            return;
        }
        $size = 'full'; 
        return $size;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Problems with Enfold and Ninja Forms Paypal Add on #1477194

    Hi,
    Unfortunately since we can not find any errors in the console as to the conflict, we don’t have a solution.
    We are limited to offering support for third party plugins.

    Best regards,
    Mike

    Hey edgar,
    I don’t see a “Random Faded” option for the masonry gallery:
    Screen Shot 2025 02 16 at 7.11.37 AM
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Logo is not showing #1477191

    Hey lilijabula,
    When I login the logo shows, but not when logged out, this is a caching issue, I cleared your LiteSpeed Cache and now it shows.
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Menü und Logo werden nicht korrekt angezeigt. #1477188

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change color of only the bottom header section #1477175

    Hi,
    Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header_main_alternate {
        background-color: red;
    }
    #top #header .av-main-nav > li > a {
        background-color: red;
    }

    Change the color to suit and Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Lightbox Gallery Image Limitation #1477174

    Hi,
    It looks like you are using the plugin Kadence Blocks, this was created for the WP Block Editor and doesn’t seem to offer shortcodes, so it may not be compatible with Enfold.
    So changing the behavior of the lightbox may not be possible, try asking the plugin author for a solution, they may have one.

    Best regards,
    Mike

    in reply to: Image size in grid flip #1477173

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mobile view top area formatting #1477171

    Hi,
    I can not see your screenshot as it requires a login, To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Mobile view top area formatting #1477168

    Hi,
    I can not see your screenshot as it requires a login, when I check the image goes to the top:
    Screen Shot 2025 02 15 at 12.38.32 PM
    I check on Android, the black area (in the green circle) in your screenshot is from your phone not the site.

    Best regards,
    Mike

    in reply to: Menü und Logo werden nicht korrekt angezeigt. #1477167

    Hey ulrikelauer,
    Thank you for your patience, when I check your setting is: Logo left, Menu below:
    Screen Shot 2025 02 15 at 12.03.01 PM
    I changed for you:
    Screen Shot 2025 02 15 at 12.05.04 PM
    Then I find that you have a unclosed link in your Phone Number Or Small Info Text:
    Screen Shot 2025 02 15 at 12.30.33 PM
    I fixed it for you, now the logo and menu is correct:
    Screen Shot 2025 02 15 at 12.33.00 PM
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mobile view top area formatting #1477164

    Hi,
    This green circle is your phone not the site:
    Screen Shot 2025 02 15 at 11.44.28 AM

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider > Fallback image not working #1477160

    Hi,
    When I clear Varnish & WPRocket and am logged in I don’t see this, when I log out I see it, but if I log back in I don’t see it.
    Typically caches do not show for admins when logged in, this is a sign that it is in your cache. Try disabling your WPRocket and check again. Perhaps also try the same with Varnish.

    Best regards,
    Mike

    in reply to: HTML for Turning On Audio? #1477159

    Hi,
    You have a duplicate question open I answered there:
    The reference to the “shortcode” folder is what you add to your child theme, the “sections.php” in the parent theme is at: /config-templatebuilder/avia-shortcodes/section/section.php
    This will only work with self hosted videos and not on mobile.

    Best regards,
    Mike

    Hey epkdesign,
    The reference to the “shortcode” folder is what you add to your child theme, the “sections.php” in the parent theme is at: /config-templatebuilder/avia-shortcodes/section/section.php
    This will only work with self hosted videos and not on mobile.

    Best regards,
    Mike

    in reply to: responsive issues images #1477157

    Hi,
    The solution is to use equal height for the columns, I changed this for you, please clear your browser cache and check.
    Screen Shot 2025 02 15 at 10.39.20 AM

    Best regards,
    Mike

    Hey MM,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen .active-slide .avia-caption-content,
    .avia_transform .av_fullscreen .active-slide .avia-slideshow-button {
        visibility: visible;
        animation: caption-left 1s 1 cubic-bezier(0.1, 0.1, 0.1, 1)!important;
    }

    This will make the title, subtitle, and buttons slide in from the left at the same time.

    Best regards,
    Mike

    Hey sh7850,
    Typically when you are logged in and css of an element is correct, this is a sign that the issue is with your caching plugin. Try clearing or disabling your caching plugin. Then clear your browser cache, and check.
    Or try this css in your Quick css:

    .avia-image-container .av-caption-image-overlay-bg {
        opacity: 0.6;
        background-color: #ffffff;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Single Post: Change Headline and Image #1477154

    Hey northorie,
    Please link to your post so we can examine.

    Best regards,
    Mike

    Hey christophe rouchon,
    You don’t need a subscription or a activate license to import a demo.
    Try increasing the PHP max execution time and time limit values.
    The demos are imported via the WordPress XML file, which is a file that links the images to our domain, (IP address) typically the curl 28 error means that our IP address has been blocked, some hosts like OVH block our IP, I don’t know why but we have reached out to them for a few years and once in a while sometimes they might unblock us, but later it will always get blocked again. Most of the time they are not helpful. I don’t know your host, but if it is them, this is the issue.

    As a workaround, you can install the demo on a local host on your computer and then use the plugin Duplicator to move to your live site. This is typically the easiest solution.

    Best regards,
    Mike

    in reply to: align vertically the menu in the top bar #1477143

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 1,111 through 1,140 (of 34,867 total)