Viewing 30 results - 31 through 60 (of 142,870 total)
  • Author
    Search Results
  • #1496294

    Topic: Huge space

    in forum Enfold
    Advantage09
    Participant

    I am having a problem on mobile view of a website. On one page there is a huge gap between a textbox inside a color section and grid row. When checking the site on desktop everything looks like it should, but on mobile there is a huge gap. When choosing to inspect element in chrome it looks like there is three whitespace separators in the empty space, but there is no separator at all.
    Any idea why this is? Link to the page below.

    Regards
    Nina

    #1496293

    Hey,

    Thank you for the update.

    Sections disappearing from the page is usually caused by invalid html in one of the layout builder elements. If any Text Block or Code element on the page contains an unclosed html tag or malformed markup, it can break the structure of the entire page and cause sections below it to collapse or disappear entirely.

    Could you check if you have added any custom html or script tags inside any of the elements on that page? If so, please make sure all tags are properly opened and closed. For example, a missing closing tag like div or section can silently break everything below it.

    A quick way to test this is to temporarily disable elements one by one (starting from the top of the page) until the missing sections reappear. That will help narrow down which element is causing the issue.

    If you are not sure where to start, please share your login credentials in the private field below and we will take a look directly.

    Let us know the result.

    Best regards,
    Ismael

    #1496283
    oestersund
    Participant

    Dear team,
    on my page https://www.auto-wulf.de I use the extra info top bar.

    in the backend it shows:
    [av_font_icon icon='ue854' font='entypo-fontello' size='20px' color='#ffffff'] Geesthacht: 04152 / 87780        Dömitz: 038758 / 24077

    on safari the phone symbol appear correctly, but on chrome just a white square box.

    what is the reason / how to fix?

    thx a lot & best regards Tilman

    #1496282

    Hey mjrielly,
    Typically the solution is to apply css height so all of the testimony slides will have the same height, and also calculate the needed height for each screen size. The following javascript will do this automatically for you. Add the following code to your child theme functions.php file. If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    fUcTO4R.jpg
    then add the following code and save.

    function equalise_testimonial_heights() { ?>
      <script>
    (function () {
    
      function equaliseTestimonialHeights() {
    
        const row = document.querySelector('.avia-testimonial-row');
        if (!row) return;
    
        const slides = row.querySelectorAll('.avia-testimonial');
        if (!slides.length) return;
    
        slides.forEach(function (slide) {
          slide.style.height = '';
        });
    
        let maxHeight = 0;
        slides.forEach(function (slide) {
          const h = slide.offsetHeight;
          if (h > maxHeight) maxHeight = h;
        });
    
        slides.forEach(function (slide) {
          slide.style.height = maxHeight + 'px';
        });
      }
    
      function debounce(fn, delay) {
        let timer;
        return function () {
          clearTimeout(timer);
          timer = setTimeout(fn, delay);
        };
      }
    
      if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', equaliseTestimonialHeights);
      } else {
        equaliseTestimonialHeights();
      }
    
      window.addEventListener('resize', debounce(equaliseTestimonialHeights, 150));
    
    })();
    </script>
      <?php
    }
    add_action( 'wp_footer', 'equalise_testimonial_heights', 99 );

    Best regards,
    Mike

    #1496266

    In reply to: Template Enfold

    Hey Marcos,

    The update to 7.1.4 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1496262

    Topic: Search Icon Color

    in forum Enfold
    newmediologo
    Participant

    Hi.. The client (site link in private content) wants a Search Icon on the right of the main menù but the icon does not appear, if I click after the last menù item the search box appear but not the icon. I’ve try the following code, it makes the icon visible but the search box does not come out:

    .header_color .main_menu ul:first-child > #menu-item-search > a svg:first-child {
        stroke: #ffffff;
        fill: #ffffff;
        color: #ffffff;
        z-index: 10;
    }

    This other code has no effect:

    #top #wrap_all .header_color.av_header_transparency .avia-svg-icon svg:first-child {
      fill: #fff;
    }

    Could You please help?
    Thank You Very much
    Note: the Search works regularly and on mobile the icon is correctly displayed

    • This topic was modified 1 week, 2 days ago by newmediologo. Reason: Icon in visible and works on mobile
    #1496261
    Munford
    Participant

    HI
    I’ve got an issue with my mobile header – it’s set to stick to the top, but I’m seeing the content above the header when I scroll.
    see: https://imgur.com/a/wfbMInN
    Can you see how to fix that?
    thanks
    Nancy

    #1496246
    Rustum
    Participant

    I am trying to translate URLs/Links for LayerSlider bundled in the Enfold Theme. Please see summary of the issue:

    https://wpml.org/forums/topic/translating-page-links-in-layerslider/

    #1496244

    In reply to: SVG icons question

    Hi,
    When I check on my test site adding this to the top of my child theme, or parent right after if( ! defined( ‘ABSPATH’ ) ) { exit; } prevents entypo-fontello-enfold.woff2 from loading:

    function avf_custom_font_display( $font_display, $font_name )
    {
    	if( 'entypo-fontello' == $font_name )
    	{
    		return 'swap';
    	}
    
    	return $font_display;
    }
    
    add_filter( 'avf_font_display', 'avf_custom_font_display', 10, 2 );

    If you still have some css calling the entypo-fontello font, such as the submenu-indicator, you will need to override the css like this:

    .html_av-submenu-hidden .av-submenu-indicator:before {
        content: ">";
        font-family: svg_entypo-fontello;
    } 

    Best regards,
    Mike

    #1496238

    In reply to: using z-index?

    Hi,
    These two pages have different IDs, so use this css for all four pages:

    #top.page-id-19041 #main > .avia-section,
    #top.page-id-19042 #main > .avia-section,
    #top.page-id-3288 #main > .avia-section,
    #top.page-id-10730 #main > .avia-section {
    	z-index: 2;
      position: relative;
    }
    .html_entry_id_19041,
    .html_entry_id_19042,
    .html_entry_id_3288,
    .html_entry_id_10730 {
    	z-index: -1;
      position: relative;
    } 

    Best regards,
    Mike

    #1496233

    In reply to: using z-index?

    Hi,
    Try this css:

    #top.page-id-19041 #main > .avia-section,
    #top.page-id-19042 #main > .avia-section {
    	z-index: 2;
      position: relative;
    }
    .html_entry_id_19041,
    .html_entry_id_19042 {
    	z-index: -1;
      position: relative;
    } 

    Then clear your cache.

    Best regards,
    Mike

    #1496232

    Hi,
    Sorry I was looking at the submenu dropdown. Try this css:

    #top #av-custom-submenu-1.av-subnav-menu>li {
        width: 33%;
    } 

    Best regards,
    Mike

    #1496225

    Hey Michael F,
    Try adding this css to your Quick CSS field:

    #menu-item-2686 img {
    	padding-top: 19px;
    } 

    Then clear your cache.

    Best regards,
    Mike

    #1496223

    Hi,

    Sorry, I’ve figured it out myself. You can close this topic.

    Best regards,
    Erwin

    #1496222
    Erwin
    Participant

    Hi,

    The solution in my earlier post works fine on pages, but not on posts. On posts the content is still to much to the right and not centered.
    Do you know how I can center the post-content?

    The credentials are in the private part. The site is under construction.

    Best regards,
    Erwin

    Hey GWS,
    #text-20 is a search field, it has the class av-mini-hide so it will not show on small mobile devices.
    Try adding this css to show it:

    @media only screen and (max-width: 479px) {
    .responsive.av-no-preview #top #wrap_all #text-20 .av-mini-hide {
    	display: block;
    }
    } 

    But you should review your css for the widgets as it is too general and places both of them in the same place:

    
    @media screen and (max-width: 1024px) {
        #header .widget {
            left: 20%;
            position: absolute;
            top: 50px;
            transform: translate(-20%);
            z-index: 999;
        }
    } 

    Try making two css rules for each widget so they will not overlap
    #header #text-19.widget
    #header #text-20.widget

    On the other hand I don’t see the point of showing the search field on mobile when the search icon is already showing.
    Instead of in the header it might be better just above the Latest Articles title.

    Best regards,
    Mike

    #1496208
    magootim
    Participant

    I’ve got a hero section at top of my homepage – a headline rotator in a color section. When i preview the page it renders fine as it should. When i navigate to the homepage though it doesn’t render properly. I’m on latest verion of wordpress, all themes and plugins are updated and I’ve purged the cache. Not sure hwy this has started now?

    #1496176

    In reply to: Making the logo bigger

    you see that image here:
    https://kriesi.at/support/topic/making-the-logo-bigger-2/#post-1496150

    do not make it by mikes css – just use these settings on Enfold Header Options. Choose on the right custom pixel value – then the hidden input field will show – and enter 200px there – thats all.

    put this to your quick css:
    ( or @media only screen and (min-width: 768px) {

    @media only screen and (min-width: 990px) {
      #top #menu-item-logo a {
        display: inline-block;
        transform-origin: center top;
      }
    
      #top #menu-item-logo img {
        max-height: 200px;
        height: 100%;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    after that you can decide to have more or less shrink-faktor on:

    #1496152

    In reply to: Making the logo bigger

    btw. : have a look what happens to your top divider on home page if you add this to your quick css:

    #top.home #av_section_1 .avia-divider-svg.avia-divider-svg-top {
      transform: scaleY(-1);
      top: -39px;
    }
    
    #top.home #av_section_1 .avia-divider-svg.avia-divider-svg-top svg {
      fill: #FFF !important;
    }
    
    #top.home #av_section_1 .scroll-down-link {
      bottom: 25px;
    }
    #1496150

    In reply to: Making the logo bigger

    you see on the first two images the position where you can enter a custom value:
    https://kriesi.at/support/topic/making-the-logo-bigger-2/#post-1496110

    if you enter 200px there on “header custom height” ( i guess you are now back to “large” ) you had to synchronise that max-height value on #top #menu-item-logo img rule to 200px too.

    #1496145

    In reply to: Making the logo bigger

    
    @media only screen and (min-width: 990px) {
      #top #menu-item-logo a {
        display: inline-block;
        transform-origin: center top;
      }
    
      #top #menu-item-logo img {
        max-height: 150px;
        height: 100%;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    synchronise the max-height : 150px to what you have determined in the header enfold start height options.

    Hi,
    This is a sidebar widget:
    qhUzFee.md.png
    You can remove the widget shortcode or use this css to hide it:

    .single-product .sidebar #block-7 {
    	display: none;
    } 

    Let us know if this helps, if you have any further questions please open a new thread and we will try to help, we ask that each thread stays on one topic to be easier for everyone.

    Best regards,
    Mike

    #1496125

    Hi

    That’s much helping.

    One more question, when I scrolled the page to the very top, always the header will changes to transparency, but i want the header always fixed and to be on color. how can i set this?

    #1496114

    Hi,
    We have seen a couple of claims from COPYTRACK on behalf of genious2000de, the author of the image that you linked to. Who is claiming the same images that we own extended licenses for, by the user francesco83 from 2014
    Perhaps these are the same person, we are not sure. Kriesi states that his extended license allows end users to use the images in the theme, but not outside the theme. Please see these threads.

    This seems shady, perhaps your best course of action would be to follow Ismael’s advice and use a royalty-free image or create one with AI which can not have a claim against them. Double check your local laws though, we can not offer legal advice.
    https://www.reuters.com/world/us/us-appeals-court-rejects-copyrights-ai-generated-art-lacking-human-creator-2025-03-18/
    Hope that this helps.

    Best regards,
    Mike

    #1496113

    In reply to: Making the logo bigger

    Hi,
    Perhaps if you want the logo just a little bigger and don’t mind the header to be a little bigger, then this css may help.

    @media only screen and (min-width: 768px) {
        #top #menu-item-logo svg, #top #menu-item-logo img {
        max-height: 150px;
        }
        .html_header_top.html_header_sticky.html_large .av_minimal_header #header_main .container,.html_header_top.html_header_sticky.html_large.html_main_nav_header .av_minimal_header .main_menu ul:first-child > li a {
        height: 150px;
        line-height: 150px;
        }
    } 

    larger-header
    https://postimg.cc/0bp4h1jM

    Best regards,
    Mike

    #1496110

    In reply to: Making the logo bigger

    Even with a vector-based SVG logo, this font (the smaller one in your logo) would no longer be legible.

    You could make the header area larger overall, but then let it shrink so it doesn’t take up too much space.

    _________________
    Another option would be to display the logo larger at first and then have it move to the desired position inside navigation as the page is scrolled.
    this for child-theme functions.php:

    function logo_shrink_navigation(){
    ?>
    <script type="text/javascript">
    (function($) {
        function initLogoScrollAnimation() {
            // ===== CONFIGURATION =====
            var config = {
                maxScroll: 100,
                scaleStart: 2.3,
                scaleEnd: 1,
                translateYStart: 80,    // Starting point shifted in the Y direction (e.g. 80px for down shift)
                translateYEnd: 0,       // End point (must be 0 for the final position)
                translateXStart: -230,  // Starting point shifted in the X direction (e.g. -100px for the left)
                translateXEnd: 0        // End point (must be 0 for the final position)
            };
            // =========================
            
            var ticking = false;
            var $menuLogo = $('#menu-item-logo');
            var $menuLogoLink = $menuLogo.find('a');
            var $menuLogoImg = $menuLogo.find('img');
            var logoWidth;
            
            function updateLogo(scrollTop) {
                var progress = Math.min(scrollTop / config.maxScroll, 1);
                
                // Skalierung berechnen
                var scaleDiff = config.scaleStart - config.scaleEnd;
                var scale = config.scaleStart - (scaleDiff * progress);
                
                // Y-Verschiebung berechnen
                var translateYDiff = config.translateYStart - config.translateYEnd;
                var translateY = config.translateYStart - (translateYDiff * progress);
    
                // X-Verschiebung berechnen (NEU)
                var translateXDiff = config.translateXStart - config.translateXEnd;
                var translateX = config.translateXStart - (translateXDiff * progress);
                
                var extraSpace = (scale - 1) * logoWidth / 4;
                
                // Transform mit translateX ergänzt
                $menuLogoLink.css('transform', 'translateX(' + translateX + 'px) scale(' + scale + ') translateY(' + translateY + 'px)');
                
                $menuLogo.css({
                    'margin-left': -extraSpace + 'px',
                    'margin-right': -extraSpace + 'px',
                    'z-index' : '19'
                });
    
                $menuLogoImg.css({
                    'background-color': 'rgba(255,255,255,0.8)',
                    'backdrop-filter': 'blur(5px)',
                    'border-radius': '25px',
                    'border': '1px solid #FFF'
                });
            }
            
            $(window).on('scroll', function() {
                var scrollTop = $(window).scrollTop();
                
                if (!ticking) {
                    window.requestAnimationFrame(function() {
                        updateLogo(scrollTop);
                        ticking = false;
                    });
                    ticking = true;
                }
            });
            
            // Logo-Breite messen und initial setzen
            logoWidth = $menuLogoLink.outerWidth();
            updateLogo($(window).scrollTop()); // Initialen Scrollwert beim Laden berücksichtigen
        }
        
        $(document).ready(function() {      
            setTimeout(function() {
                initLogoScrollAnimation();
            }, 300);
        });  
    })(jQuery);
    
    </script>
    <?php
    }
    add_action('wp_footer', 'logo_shrink_navigation');

    the confic section is for the starting look of your logo (scale, shift x and y-axis etc)

    look at start this way:

    after scroll it is in the center of your nav.

    Holger-Germany
    Participant

    Subject: CRITICAL: Enfold 7.1.4 Redirect Failure & PHP Fatal Error (get_page_permastruct on null)

    “Dear Enfold Support Team,

    I am experiencing a critical issue with Enfold 7.1.4 on a site running the latest WordPress version and PHP 8.1 (also tested with 8.2 and 8.3).

    The Problem:
    A registration form (created with DigiMember) has stopped functioning correctly. While the user is successfully registered in the database, the AJAX redirect to the thank-you page fails completely. The button does not trigger the redirect, leaving the user stuck on the form page.

    Technical Analysis & Error Logs:
    The error logs show that the process is interrupted by a Fatal Error within the WordPress core, triggered during an AJAX call. Even with PHP 8.1, I get the following stack trace:

    PHP Fatal error: Uncaught Error: Call to a member function get_page_permastruct() on null in …/wp-includes/link-template.php:435

    Stack Trace highlights:

    #0 …/wp-includes/link-template.php(397): _get_page_link()

    #1 …/wp-includes/link-template.php(197): get_page_link()

    #2 …/plugins/digimember/…/payment_handler.php(878): get_permalink()

    Additionally, the log is flooded with hundreds of deprecated warnings regarding the Enfold core:
    PHP Deprecated: Class avia_style_generator was called with an argument that has been deprecated since version 5.3! Trying to set protected/private property: avia_style_generator::print_extra_output.

    Environment:
    Enfold Version: 7.1.4

    WordPress: Latest (6.9.1)

    PHP: 8.1.34

    Active Plugins: Cookiebot, DigiMember, GetResponse.

    It seems that the way Enfold handles the style generator or AJAX environment is causing WordPress to lose its permastruct context, leading to the null error during the redirect.

    Do you have a temporary fix, a filter for my child theme’s functions.php, or a patch to resolve this redirect failure? This is currently breaking my sales funnel.

    Best regards,”

    #1496091

    Hi,

    Thank you for the inquiry.

    Regarding the logo shrinking on smaller screens and the burger menu/search icon overlapping, you can add the following css to Enfold > General Styling > Quick CSS field:

    
    @media only screen and (max-width: 1290px) {
      .responsive #top .logo img {
        max-width: 62%;
      }
    
      #avia-menu {
        margin-right: 0;
        padding-right: 0;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top .logo img {
        max-width: 35%;
      }
    }
    

    Adjust the max-width value as needed to fit your logo within the header. Please make sure to purge the cache before testing.

    qVl8kmu.md.png

    Let us know if the issue persists.

    Best regards,
    Ismael

    #1496083

    Hey bemodesign,
    Try this css:

    @media only screen and (max-width: 767px) {
        #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
            font-size: 22px;
        }
        .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li,.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li li {
        line-height: 1em;
    		}
    		.responsive #top #wrap_all #av-burger-menu-ul li {
        font-size: 22px !important;
    		}
    } 

    Adjust to suit.
    As for your anchor link, the ID #book-call is in the second section column with the title “Free 15-Minute…” if you want the first section title “CONTACT BEMO DESIGN” to show, then move the ID to that section.

    Best regards,
    Mike

    #1496080

    Hey waveseven,
    Please see these threads:

    If neither of these work for you, please link to your site.

    Best regards,
    Mike

Viewing 30 results - 31 through 60 (of 142,870 total)