Forum Replies Created

Viewing 30 posts - 181 through 210 (of 35,282 total)
  • Author
    Posts
  • in reply to: disable lightbox transitions #1495629

    Hey Munford,
    It looks like your site is in maintenance, I don’t see a lightbox.

    Best regards,
    Mike

    in reply to: FIXED logo loading slowly #1495628

    Hey Munford,
    Glad to hear that you sorted it out, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Burger and Social Media icons position on Mobile view #1495627

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    I do not have experience with elfsight, but from examining your button I can tell that there is no direct link to your side form popout, it works via the data-elfsight-show-form attribute:
    qqBXysj.md.png
    There is not a built-in way to add a data attribute to a button.
    So I created a second button for you with your link snippet and the Enfold classes so the style is the same. Please check. 

    Best regards,
    Mike

    in reply to: Can’t select category in portfolio #1495622

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Can’t select category in portfolio #1495614

    Hi,
    Not sure, perhaps you used a different element than the portfolio grid, but it is only ment to show portfolio categories.

    So try creating a portfolio category with a portfolio item to show.
    Or if you don’t want to try the masonry or blog post element.

    Best regards,
    Mike

    in reply to: Can’t select category in portfolio #1495612

    Hi,
    Also note that you must have portfolio categories, the portfolio grid will not show post categories.
    I’m sure you know that, but just wanted to make sure that we are on the same page.

    Best regards,
    Mike

    in reply to: Can’t select category in portfolio #1495611

    Hi,
    Thanks, do you have any custom built elements in your child theme? If so switch to the parent theme to see if they are the cause. Otherwise try to disable all of your plugins and check.

    Best regards,
    Mike

    in reply to: horizontal gallery pic enlarge #1495609

    Hey Tilman,
    When I check your page the horizontal galleries behave as intended, clicking a image enlarges it until the next one is clicked. It’s true that they stay enlarged. If you want the image size to be restored after 5 seconds, try this function in your child theme function.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 code below and save.

    function restore_horizontal_gallery_size() { ?>
      <script>
    document.querySelectorAll('.av-horizontal-gallery-wrap').forEach(item => {
        item.addEventListener('click', function () {
            clearTimeout(this._galTimer);
            this._galTimer = setTimeout(() => {
                this.classList.remove('av-active-gal-item');
            }, 5000);
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'restore_horizontal_gallery_size', 99 );

    Best regards,
    Mike

    in reply to: Can’t select category in portfolio #1495608

    Hey Erwin,
    I do not see a portfolio grid on either page that you linked to, only a special heading & text element.
    When I check on my install it works.
    qqFrJX1.png

    Best regards,
    Mike

    Hi,
    You have a server error:

    Failed to load module script: Expected a JavaScript-or-Wasm module script but the server responded with a MIME type of "". Strict MIME type checking is enforced for module scripts per HTML spec.

    Typically this is an Incorrect Server Configuration: The server is not serving .js or .wasm files with the correct MIME types.
    Configure your server to set the proper Content-Type header.
    Apache: Add AddType application/javascript .js to .htaccess or httpd.conf
    Since each webhost is different, please ask your web host support to help, we are not experts on each host setup.

    Best regards,
    Mike

    in reply to: Burger and Social Media icons position on Mobile view #1495606

    Hi,
    Try this css and adjust to suit:

    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li li {
        line-height: 0.4em;
    }

    qqFMJFn.png

    Best regards,
    Mike

    in reply to: Add a picturer to a mega menu column #1495605

    Hey dreyerjm,
    Please see our documentation: Add Images to mega menu you may need to scroll to the section, or use the link in the sidebar.

    Best regards,
    Mike

    in reply to: Button Issue #1495604

    Hey dreyerjm,
    I’m not sure why this is, try this css:

    .avia-buttonrow-wrap.avia-builder-el-last {
    	clear: left;
    }

    Then clear your cache.

    Best regards,
    Mike

    in reply to: Updates and clarifications #1495603

    Hey Luigi,
    When I check the changelog it shows February 20th 2026 – Version 7.1.4
    Please refer to this one.

    Best regards,
    Mike

    Hi,
    I see that your button is in a text block, the reason that the text is not centered is because it has a
    BR before the text, try viewing in the plain text tab of the element and remove the BR
    If you can’t find it try this css:

    .avia_textblock .avia-slideshow-button br {
    	display: none;
    }

    qq3NiHF.png
    Best regards,
    Mike

    in reply to: Mobile view – Hero text position #1495601

    Hi,
    There is not a setting, you will need to use css. Since I’m not seeing the same as you I had to guess a little, try the following css and adjust to suit:

    @media only screen and (max-width: 767px) {
        #top .logo img {
        max-height: 140px;
        }
        #top .logo img {
        left: 55%;
        transform: translateX(-50%);
        }
        #top .av-burger-menu-main {
        transform: translateY(-38%) !important;
        }
        .av-hamburger-box {
        width: 50px!important;	
        }
        .av-hamburger-inner::before{
        top: -15px;
        }
        .av-hamburger-inner::after {
        bottom: -15px;
    		}
    		.av-hamburger-inner, .av-hamburger-inner::before, .av-hamburger-inner::after {
        height: 6px;
    		}
    }

    This is how it looks for me with this css:
    qq3u5Ml.png

    Best regards,
    Mike

    in reply to: Icons next to correct text #1495600

    Hi,
    For that page try adding this css:

    .page-id-4370 .iconbox_left_content.avia-builder-el-9 .avia-icon-pos-left.av_font_icon{
      float: none;
      margin-right: 0;
      vertical-align: middle;
      display: inline-block;
      padding-left: 0.5em;
    }
    .page-id-4370 .iconbox_left_content.avia-builder-el-9 .iconbox_content_container strong {
      font-size: 15px;
    }

    Best regards,
    Mike

    in reply to: Icon box columns same height #1495583

    Hey dreyerjm,
    Try this solution: https://kriesi.at/support/reply/1467773/
    Note that you will need to have jQuery, check that your cache plugin or the theme performance settings is not loading it in the footer or blocking it.

    Best regards,
    Mike

    in reply to: Mobile view – Hero text position #1495582

    Hi,
    This is how it looks on my mobile:
    qfQfIEu.png
    The logo & burger menu both look large to me, do you still want them larger?
    If you want to show the social icons on mobile, I recommend showing them in the top bar, but this will also show on desktop, probably not what you want.
    How about adding the social icons to mobile menu?

    Best regards,
    Mike

    in reply to: Enable to update Theme #1495579

    Hi,
    I was not able to login as Wordfence blocked me. When you look at the theme settings for the license do you see any errors?
    Have you recently updated the token?
    Envato limits daily update checks across all tokens on your account. Wait up to 24 hours if you’ve recently updated your token or checked 15 or more times for all tokens on your account.
    If not try the Envato Market Plugin, or follow these steps to manually update.

    To update Enfold manually you can download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue,
    then you will see the Theme updated successfully message.

    Best regards,
    Mike

    in reply to: Image does not open video in Lightbox #1495578

    Hi,
    I tested Guenni007’s solution and it is working for me. It looks like you forgot to add the custom class mixed-contenttype to the image element.
    qfLNKgt.png

    Best regards,
    Mike

    in reply to: odd behavior when editing contact form #1495504

    Hi,
    Glad to hear that you found the issue. We do not recommend using the plugin, the theme settings has the Classic Editor option, please use this setting instead.

    Best regards,
    Mike

    in reply to: Lightbox Caption Showing Filename – How do I change that? #1495503

    Hey theamplifiedagent,
    Typically it is the title of the image that is shown, check your image in the media library and check the title field, it is possible that if you didn’t add a title it will fallback to the file name.
    If you find that there is no title and you don’t want to edit dozens of images adding titles, you can hide this field with this css:

    .mfp-content .mfp-title {
    	display: none;
    }

    Best regards,
    Mike

    in reply to: PROBLEM WITH ACCORDEON COLORS NOT SHOWING #1495502

    Hi,
    Your screenshots are not working but I understand. Your issue seems to be related to a cache, when I check your page with Firefox & Edge the accodeon toggles are gray because the mouseover color is set by the main-color-bg set in the theme options #e1e1e1:

    .main_color .toggler:hover {
    background: var(--enfold-main-color-bg2);
    }

    If you what them to be orange then try changing that color in the theme settings, but note that this color setting changes many elements in the theme. If you don’t want everything to change then try this css:

    #top .main_color .toggler:hover {
    	background: #db5200;
    }

    As for your second question, I can’t see the screenshot but I see that the top color section has a background color of white. Try changing the color in the color section, or try this css:

    .page-id-9206 #av_section_1.main_color {
    	background-color: #d5c58a;
    }

    After these changes clear all of your caches.

    Best regards,
    Mike

    in reply to: Columns elements not lining up #1495501

    Hi,
    On your /find-food/ page your column Vertical Alignment was set to middle, I changed it to top
    qfBC6pS.png
    The reason is that the first column has more text which sets the height for the other two columns, but with the Vertical Alignment set to middle the other two columns center the content. In the screenshot notice how the special heading titles and images do not line up:
    qfBT3ru.png
    After making the change everything lines up:
    qfBuFnI.png
    I made this change to the other pages that you listed above and the all work now.
    Keep Ismael’s CSS above as it forces the buttons to the bottom of the columns without using extra HR elements.

    Best regards,
    Mike

    in reply to: Portfolio filter causes loading errors in testimonials #1495481

    Hi,
    Glad that you found a solution, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Icons next to correct text #1495453

    Hey dreyerjm,
    Try is css:

    .page-id-3710 .iconbox_left_content.avia-builder-el-4 .avia-icon-pos-left.av_font_icon{
      float: none;
      margin-right: 0;
      vertical-align: middle;
      display: inline-block;
      padding-left: 0.5em;
    }
    .page-id-3710 .iconbox_left_content.avia-builder-el-4 .iconbox_content_container strong {
      font-size: 15px;
    }

    Then clear your browser cache.

    Best regards,
    Mike

    Hey Tilman,
    If you want a different logo on some pages, try this function in your child theme functions.php and change the logo url to yours and change the page IDs to yours and add as many as you like with a comma between each:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page( array(626, 632) ) )
        {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
    
        return $logo;
    }

    If you want all pages except your home page to be different, then I would recommend changing your logo in the theme settings to your other logo and use this function to only change the home page to the red one:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(2) )
        {	
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Best regards,
    Mike

    in reply to: H tag all stands in capital letters #1495385

    Hey Alan,
    When I check your site the only H tags that are capitalized are in the three boxes:
    qK7hxdg.png
    but these are as they are written 
    qK7wSsV.png
    all others are first letter capitalized and the rest in lowercase
    qK7OVS9.png

    Best regards,
    Mike

Viewing 30 posts - 181 through 210 (of 35,282 total)