Viewing 30 results - 1,501 through 1,530 (of 142,838 total)
  • Author
    Search Results
  • #1484210

    In reply to: Lightbox settings

    Hi,
    Your code doesn’t work on mobile but on laptop it’s fine because i dont see anymore the scroll bar.

    #1484196

    Hey Helmut,

    Thank you for the inquiry.

    Those are the thumbnails registered by the theme. If you need to remove them, be sure to create a site backup, then use the remove_enfold_image_sizes function provided in this thread: https://kriesi.at/support/topic/prevent-auto-multi-image-generation/#post-1431800

    Best regards,
    Ismael

    Hey slikslok,

    Thank you for the inquiry.

    You may need to use a smaller logo or limit the number of items in the main menu. To adjust the size of the logo, try to add this css code:

    .logo img, .logo svg {
        max-width: 400px;
        top: 40px;
    }

    You can also set the main menu to display as icon instead of text (Main Menu > General > Menu Items For Desktop).

    Best regards,
    Ismael

    #1484179

    This topic is of great interest! The implementation of this law is mandatory in the EU as of June 28. It would be nice if the Kriesi team would comment on this here.

    goldengate415
    Participant

    RE support post:

    Hi again Ismael,
    I just visited this page and the fix, which I remember working, is no longer working:
    https://www.thomashenthorne.com/125-belvedere-ave-belvedere-ca/

    Here’s the css – can you tell me if I did something wrong?

    /** Ismael fix color sections on iPad1481601 **/
    @media only screen and (max-width: 1024px) {
    /* Add your Mobile Styles here */
    .avia_mobile .avia-full-stretch {
    background-attachment: scroll !important;
    }

    .avia-bg-style-fixed {
    background-attachment: scroll !important;
    }
    }

    Thanks,
    Rob

    #1484149
    MAlmhofer
    Participant

    I’m experiencing slow loading speed and poor LCP (Largest Contentful Paint) on the mobile version of my homepage, even after implementing the following optimizations:

    • The mobile hero image is a WebP format, resized to 800px width (as recommended by one of your support staff in another thread)
    • The image is inserted as an tag (not a background image)
    • I’ve added fetchpriority=”high” and decoding=”async” to the image
    • I’ve disabled lazy loading for this image
    • Using W3 Total Cache and Autoptimize, including CSS/JS minification and defer
    • Cookie banner is handled via Enfold’s built-in tool (no extra plugin)

    Is there a recommended way within Enfold to prioritize key content and improve mobile LCP?

    #1484140

    In reply to: Lightbox settings

    Hello,
    for the thumbnail size i managed it, thanks

    But for the scroll, it doesn’t work for me with you code.

    i put this instead and it seams to be OK:

    .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.avia-popup.mfp-zoom-in.mfp-ready {
    top: 0 !important;
    position:fixed!important;
    }

    What do you think about it?

    #1484129

    In reply to: product listing is

    Hey volkantuncer,

    Thank you for the inquiry.

    Try to add this css code to make sure the products are centered.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #main .product-sorting.avia-product-sorting+.products {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
    
      .responsive #top #main .products .product:nth-child(even) {
        margin-right: 0;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1484126

    In reply to: Menu Layout Advice

    Hi,

    Thank you for the update.

    Try to switch the builder to debug mode to enable the shortcode field.

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Once the debug mode is enabled, add this template in the shortcode field, the update the page. Edit the Catalogue element, then follow the format of the second item in the list (CHEESEBURGER).

    https://pastebin.com/26bBpUc4

    To adjust the style of the custom catalogue element, add this code in the Quick CSS field:

    #top .av-patty-menu .av-catalogue-list {
      border-top: 0;
    }
    
    #top .av-patty-menu ul li:first-child .av-catalogue-item .av-catalogue-item-inner {
      height: 48px;
    }
    
    #top .av-patty-spacer {
      width: 20px;
      display: inline-block;
    }
    
    #top .av-patty-spacer-title {
      display: block;
      text-align: center;
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1484124

    Hey awasner,

    Thank you for the inquiry.

    You can add the following code to the functions.php file to separate the title from the term description.

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
    
    add_action( 'woocommerce_before_shop_loop', 'av_woocommerce_before_shop_loop_mod', 5 );
    function av_woocommerce_before_shop_loop_mod() {
        if ( is_product_taxonomy() ) {
            echo '<h1 class="term-title">' . single_term_title( '', false ) . '</h1>';
        }
    }
    
    add_action( 'woocommerce_after_shop_loop', 'av_woocommerce_after_shop_loop_mod', 15 );
    function av_woocommerce_after_shop_loop_mod() {
        if ( is_product_taxonomy() ) {
            $term = get_queried_object();
            if ( isset( $term->description ) && $term->description ) {
                echo '<div class="term-description">' . wpautop( $term->description ) . '</div>';
            }
        }
    }

    Best regards,
    Ismael

    #1484119

    Hello! Thanks for the reply

    Yeah, the LayerSlider in itself is working just fine, the problem is when I try to use the “Import Layer” inside the LayerSlider to import an already created layer/asset from another Slider, like a button, for example.

    The “Import Layer” option inside the LayerSlider project just doesn’t load, no matter how much time I wait. Before it used to be really fast to load and import any layer from other projects. I’ve sent a screenshot in the private content area for you to see what I mean.

    I have tried in other web browsers and even another desktop, but it still doesn’t work.

    #1484113

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1484101

    Topic: product listing is

    in forum Enfold
    volkantuncer
    Participant

    I am using following css code to put two products on on line in mobile design

    but because of this my mobile view is not showing products in the middle

    Tha gap in left side is smaller than the right side

    How can I solve this situation ?

    I like the product design to be in the middle

    https://www.teknolom.com/magaza/

    Thank You

    @media only screen and (max-width: 736px) {
    .avia_textblock pre, .responsive #top #main .products .product {
    width: 45.6% !important;
    margin: 0 4% 1% 0;
    }}

    @media only screen and (max-width: 480px){
    .responsive #top .av-masonry-entry{width:100%;
    width: 45.6% !important;
    margin: 0 4% 1% 0;

    }
    }

    luleloki
    Participant

    Hello Kriesi team,
    I have the following problem: When I want to send a contact form, the following message appears:
    “Token for confirming the form has already expired.
    The form could not be submitted. Please reload the page and try again.”
    In addition, the “mailto:” command does not work on the desktop when I enter a mail address that should open a mail program, then the page of my Internet provider opens.
    Can you please help me?

    With best Regards
    Lokman

    Translated with DeepL.com (free version)

    #1484097
    awasner
    Participant

    Since we have an H1 headline on the shop category pages and a lot of text after it, we’ve moved this section below the products.

    This means we don’t have a headline at the top, as otherwise the user wouldn’t see any products for a long time without scrolling.

    Can the headline and text be separated for SEO? If so, how?

    We want to display a filter directly on mobile instead of the sorting.

    In other words, the headline should be visible first, then the filter, and then the products.
    Because currently, the user has to scroll all the way down to filter.

    Link to a category page attached in private content.

    Thanks a lot for helping me!

    #1484087
    Ryan Mitchell
    Guest

    Hi!
    I was doing some research for a uni project and found your article – https://kriesi.at/archives/how-to-stop-wasting-time-on-social-media-and-start-dominating. Just noticed the link to the social media page (https://www.pewresearch.org/internet/fact-sheets/social-networking-fact-sheet/) is broken. I found this instead – https://academized.com/blog/social-media-fact-sheet – might be useful to keep the info up-to-date for other readers like me.

    Best,
    Ryan

    Hi,
    This is because the mobile menu “av-burger-menu-ul” is not loaded until the burger menu is clicked when you use the desktop menu, it is when you use the burger menu for desktops. But mobile devices don’t have a tab key.

    Best regards,
    Mike

    #1484066
    webmanu
    Participant

    Hi
    The blog posts are displayed on the “News” page. This page is assigned as the post page in the WordPress settings. If I want to display a title and content at the top of the page, for example a note on promotions, this content is not displayed in the front end. Why is that?

    #1484044

    Hey mountaintopengraving,
    Thanks for the link to your site, but I didn’t find any pages or events that were blank in the backend, and I was able to edit the pages that I tested.
    Your page /donnys-at-core-restaurant-menu-live-music-specials/ was created with the Block Editor and not the Enfold Advanced Layout Builder, and your About, Capri Room, appetizer-add-ons, pages were created with the Advanced Layout Builder and I found no issues editing them.
    Are you using the same login that you posted for us?
    What page can you not update, and what changes are you trying to make?

    Best regards,
    Mike

    #1484039

    In reply to: Ctrl + F in html

    Hey schweg33,
    I have opened the original thread so you can ask Guenni007, please post there and we will close this one.

    Best regards,
    Mike

    #1484024
    This reply has been marked as private.
    #1484023

    Hi,
    I see that you have this custom css:

    #top .avia-smallarrow-slider:not(.av-slideshow-ui) .avia-slideshow-arrows a, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev a.prev-slide, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-next a.next-slide {
        width: 24px !important;
        opacity: 1;
    }

    this is forcing the width to 24px, you can change this css and then add the css above, or try this css instead:

    #top .avia-smallarrow-slider:not(.av-slideshow-ui) .avia-slideshow-arrows a, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev a.prev-slide, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-next a.next-slide {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    #top .avia-smallarrow-slider .avia-slideshow-arrows {
      position: relative;
      width: 120px;
      left: auto;
      height: 50px;
      right: 10px;
    }
    #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon svg:first-child, #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon img[is-svg-img="true"] {
        height: 20px;
        margin-top: 17px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    currently:
    Screen Shot 2025 05 11 at 9.06.26 AM
    with this new css:
    Screen Shot 2025 05 11 at 9.07.36 AM
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

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

    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all #header .social_bookmarks {
            display: block;
        }
        #avia2-menu #menu-item-8506,#avia2-menu #menu-item-9168,#avia2-menu #menu-item-6813 {
        	display: none;
        }
        #header_main #text-8,#main .main-title {
        	display: none;
        }
        #top #main .title_container .container {
        padding-bottom: 0;
        min-height: 25px;
        }
        #full_slider_1 *:not(.avia-caption-title, .avia-caption-content, .avia-caption-content p) {
        	min-height: 90px;
        }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    without this css:
    Screen Shot 2025 05 10 at 11.29.58 AM
    with this css:
    Screen Shot 2025 05 10 at 11.28.45 AM

    Best regards,
    Mike

    #1483988

    Hi,
    Your section with the ID #samplewebsites is hidden on small mobile devices:
    Screen Shot 2025 05 10 at 10.32.45 AM
    probably because you wanted to show the next section only on small mobile:
    Screen Shot 2025 05 10 at 10.34.06 AM
    but that section has no ID, so the mobile menu can’t link to it.
    Note that all IDs on a page must be unique and used only once, so to correct your issue, add a ID to the second color section like “mobilesamplewebsites”
    then add a second menu item under the current samplewebsites menu item, with the custom classes “av-desktop-hide av-medium-hide av-small-hide” and a link of #mobilesamplewebsites
    and then add the custom class “av-mini-hide” to the current samplewebsites menu item.

    Best regards,
    Mike

    I posted the whole thing you sent without reading the code through and it totally killed my mobile site layout.

    I quickly dialled back the change but have now lost my social media links at the top of my mobile site.

    I need specific css code (not the general outline of code you sent above) to:
    – reinstate my social media icons at the top of my mobile site
    – reduce the white space between the logo and the breadcrumbs trail at the page top on my mobile site
    – edit the menu items in the mini menu at the top of my mobile site.

    Many thanks

    • This reply was modified 10 months, 2 weeks ago by JennyGr.
    • This reply was modified 10 months, 2 weeks ago by JennyGr.
    #1483984

    In reply to: Search icon

    Hi,
    Thank you for your patience, try removing the css above and add this instead:

    #top #menu-item-search a {
    	z-index: 1;
      position: relative;
    }

    Best regards,
    Mike

    #1483979

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

    Best regards,
    Mike

    Hi,
    we can close this topic.

    The Plugin ist simple not compatible with Enfold (according the developer).

    Thank you!

    Regards
    Mat

    #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

    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

Viewing 30 results - 1,501 through 1,530 (of 142,838 total)