Forum Replies Created

Viewing 30 posts - 151 through 180 (of 34,455 total)
  • Author
    Posts
  • in reply to: Problem of transition with content slider #1483979

    Hi,
    It looks like you had a duplicate thread for the overlay icon, check here.

    Best regards,
    Mike

    in reply to: LayerSlider Import layer not working #1483978

    Hey arsprengel,
    When I check your LayerSlider, it seems to be working. Please see the screenshot in the Private Content area.
    If this is not what you mean, please explain further.

    Best regards,
    Mike

    in reply to: multiple accordion – behaviour on click #1483976

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread now?

    Best regards,
    Mike

    in reply to: Color section header for mobile and desktop #1483975

    Hi,
    For your live site try this css:

    .home #after_section_2 .template-page.content {
    	padding: 0;
    }

    for your test site try this css:

    .page-id-3986 #after_section_2 .template-page.content {
    	padding: 0;
    }

    Best regards,
    Mike

    in reply to: Change settings on hover on slider images #1483973

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

    .avia_transform a:hover .image-overlay {
        opacity: 1 !important;
        background: transparent !important;
    }
    .avia_transform .image-overlay {
        background: transparent !important;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: trying to hide the “by” on the blog posts. #1483972

    Hi,
    Glad Ismael 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: Accessibility with Tab – making it more visible #1483967

    Hey Martin,
    To add a red border to items that you tab to, you can add this css:

    a:focus,button:focus {
      border:1px solid red !important;
    }

    adjust the color and size to suit.
    Your accessibility plugin is at the bottom of the page in the DOM, so you would need to tab the whole page to get to it, perhaps the plugin settings has an option to move it to the top of the DOM? The plugin button also has a tabindex of -1 so you can’t tab to it, check the plugin settings.
    If you can’t change these in the settings, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
    	const accessibilityButton = document.querySelector('#accessibility-trigger-button');
        const messageBar = document.querySelector('#accessibility-button');
        const body = document.querySelector('body#top');
        body.prepend(messageBar);
        accessibilityButton.setAttribute('tabindex', '1');
    });
    </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.
    This javascript will move the accessibility-button in the DOM to the top of the page so it is the first tab, the icon will still show at the bottom of the page, it will also change the tabindex so you can tab to it. With the css above to add a red border, the first tab will show this:
    Screen Shot 2025 05 10 at 6.24.55 AM
    and then if you hit the enter key it will open:
    Screen Shot 2025 05 10 at 6.27.43 AM

    Best regards,
    Mike

    in reply to: Home page automatically scrolling on mobile #1483966

    Hi,
    I checked your page on my Android mobile device, but I don’t see that it is automatically scrolling, up or down, please explain further.

    Best regards,
    Mike

    Hi,
    Change this css:

    #av-burger-menu-ul li.av-show-submenu > .sub-menu > li > a > .avia-menu-text {
    	color: yellow;
    }

    to this:

    #av-burger-menu-ul li.av-show-submenu > .sub-menu > li > a > .avia-menu-text {
    	color: yellow;
    	font-size: 20px;
    	line-height: 20px;
    }

    then add this css:

    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li.av-show-submenu li {
        line-height: 20px;
    }

    Screen Shot 2025 05 10 at 5.34.09 AM
    adjust 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: Enfold Demo Theme #1483913

    Hi,
    Glad Yigit was 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: Advanced Layout Editor not complete #1483681

    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

    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: Navigation Bar search widget SVG image #1483646

    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

    in reply to: Burger menu #1483645

    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: going crazy withe text aling #1483644

    Hi,
    This is what I also see.

    Best regards,
    Mike

    in reply to: Disable Cart In Enfold #1483575

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

    #menu-item-shop .av-cart-counter,
    #menu-item-shop .dropdown_widget_cart {
    	display: none !important;
    }

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

    Best regards,
    Mike

    in reply to: Barrierefreiheit – Anpassungen an Enfold #1483572

    Hey Brixton4G63T,
    1: please see this thread for tabbing to the cookie banner buttons, this may not seem intuitive, so perhaps you will want to try a cookie bar plugin like Borlabs.
    2: this can be achieved with a plugin, I don’t believe there has been a feature request for this.
    3: this has a open feature request, please follow up in that feature request.
    If you would like to request these features 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

    Hey rixi,
    You will need to add a second masonry gallery below your desktop version for mobile, the current one will have your Image Number set to whatever you want on desktop:
    Screen Shot 2025 05 04 at 7.36.03 AM
    Then set the Element Visibility to hide on small screens:
    Screen Shot 2025 05 04 at 7.37.44 AM
    Then in your second element, set the mobile Image Number to 5:
    Screen Shot 2025 05 04 at 7.40.22 AM
    Then set the Element Visibility to hide on large screens:
    Screen Shot 2025 05 04 at 7.41.42 AM
    CSS will not work in this case, because it will cause the “load more” to not work.

    Best regards,
    Mike

    in reply to: going crazy withe text aling #1483569

    Hi,
    When I check your page all of the text blocks have the same width, 1400px:
    Screen Shot 2025 05 04 at 6.54.49 AM
    As Guenni007 pointed out, some of your paragraphs have manual line breaks in between sentences so they will not reach the edges because the text is centered, try editing these paragraphs and use the backspace key to remove these line breaks.

    Best regards,
    Mike

    in reply to: blog with image on right but text on left #1483568

    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: Enfold Theme Version Number is 4.7.1 Update #1483567

    Hey Frank Karau,
    Unfortunately, you can not automatically update v4.7.1 to v7.1 because of how Envato (Theme Forest) changed the update process a few years ago.
    You will need to manually update following the steps below.
    We also can not create licenses due to our exclusive contract with Envato.
    Envato will also not transfer licenses from one account to another, this situation occurs when a developer purchases their client licenses in his account instead of having the client create an account.
    You will need to purchase a new license. The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more.
    2022-12-04_001.jpeg I
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    While we don’t expect any issues with the update, we do recommend creating a full site backup in your webhost panel, not a plugin, just in case.

    Best regards,
    Mike

    in reply to: Help with some shop elements #1483566

    Hi,
    Reading the above thread, it looks like we said to contact the plugin developer, perhaps that is where you got the code from.
    Otherwise, please link to the thread with the code that we gave you.

    Best regards,
    Mike

    in reply to: need top and bottom lines in my boxes #1483565

    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: Masonry does not show all categorys #1483559

    Hey kalla77,
    The sort feature will only show the categories for items loaded, it can not load sorting for items not shown. You can change the number of items shown on first load to show more sorting categories, or change the dates on one item from each category so when the page loads at least one item from each category will be shown.
    See this thread: https://kriesi.at/support/topic/categories-not-displaying-in-masonry-blog/#post-209952

    Best regards,
    Mike

    in reply to: Round Picture Buttons smaller on mobile version? #1483557

    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

    Hi,
    I added this css:

    @media only screen and (max-width: 767px) { 
    .av-burger-overlay-active .av-burger-overlay-scroll,
     .av-burger-overlay-active {
        overflow: hidden;
    }
    #top #av-burger-menu-ul {
        vertical-align: top;
    }
    }

    clear your browser cache and check.

    Best regards,
    Mike

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

    #av-burger-menu-ul li.av-show-submenu > a > .avia-menu-text {
    	color: blue;
    }
    #av-burger-menu-ul li.av-show-submenu > .sub-menu > li > a > .avia-menu-text {
    	color: yellow;
    }
    .html_av-submenu-hidden #av-burger-menu-ul .av-submenu-indicator:before {
    	color: yellow;
    	font-size: 20px;
    }
    #top #wrap_all #av-burger-menu-ul .menu-item-2846 {
    	font-size: 12px !important;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    When I check your site, it looks like you have the preloader enabled, this is why the site is white with a spinning icon for a few seconds, you can disable this in the theme settings. Enfold Theme Options ▸ Page Preloading
    When I check your page with Safari on a Mac the background video is working for me.
    I do see this console error only in Safari: Unhandled Promise Rejection: AbortError: The operation was aborted. but it doesn’t keep the video from playing for me. I found this stackoverflow thread about the message.

    Best regards,
    Mike

    in reply to: Responsive Scaling of Photo Elements #1483552

    Hey William,
    Your first 1/5 column with the image has no background color:
    Screen Shot 2025 05 03 at 11.14.57 AM
    the other ones have a gray background color:
    Screen Shot 2025 05 03 at 11.17.33 AM
    Try clearing this background color.

    Best regards,
    Mike

    in reply to: Round Picture Buttons smaller on mobile version? #1483551

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

    @media only screen and (max-width: 767px) { 
    .responsive #top.home #wrap_all #av_section_3 .flex_column.av_one_third {
    	width: 31%;
      margin-left: 6px;
    }
    }
     @media only screen and (max-width: 500px) { 
     	#top.home #wrap_all #av_section_3.main_color .flex_column.av_one_third h3 {
        font-size: 0.6em;
     	}
     }
     @media only screen and (min-width: 501px) and (max-width: 767px) { 
     	#top.home #wrap_all #av_section_3.main_color .flex_column.av_one_third h3 {
        font-size: 0.9em;
     	}
     }

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

    Best regards,
    Mike

Viewing 30 posts - 151 through 180 (of 34,455 total)