Viewing 30 results - 1,441 through 1,470 (of 106,463 total)
  • Author
    Search Results
  • #1484269

    Hi,

    Thank you for the update. With entypo-fontello disabled, you won’t be able to use the default icons on the page. You will need to replace them with images or SVG icons manually. Unfortunately, it’s not possible to automatically inject SVG icons as a replacement for the icon fonts.

    Best regards,
    Ismael

    great job! Just a couple more issues if you can help with these. I might need update CSS code.

    1. on desktop the logo is not center with the buttons: screenshot: https://img.savvyify.com/image/logo-off-center.9wllh
    2. on mobile, the logo overlaps the buttons: screenshot: https://img.savvyify.com/image/overlaps-logo-on-mobile.9wyWp
    3. on desktop their is a thin line under the address: screenshot: https://img.savvyify.com/image/remove-line-on-desktop.9wsV6
    3. on desktop, can you make the top address bar sticky? It is already on mobile, but not desktop

    Thank you!

    • This reply was modified 11 months ago by bemodesign.
    #1484247

    Here you go – https://img.savvyify.com/image/IMG-4642.9w90z
    When I look at this homepage on mobile screen simulators like FireFox and Chrome – it looks fine, but on a real phone, mine is a iPhone 16 I see the missing image blue box with a ? – Please let me know what you are seeing. Can you help? I have two things working to hide the second image on mobile. Thanks again, Chris

    #1484229
    bur2000
    Participant

    Hallo,

    ich erstelle gerade eine barrierefreie Website.
    Ich habe einige WCAG-Fehlermeldung:

    Kontaktformular
    1. fieldset hat keine legend
    2. Es gibt ein verstecktes leeres Input field ohne form label

    <p class="hidden">
    Missing form label<input type="text" name="avia_6_1" class="hidden " id="avia_6_1" value="">
    </p>

    3. Team Member Element Alt-text –
    !!!Redundant alternative text – The alternative text for an image is the same as nearby or adjacent text.!!!
    Why not use the nomal Alt from the picture?

    4. Consent Banner:
    Errors Empty link A link contains no text.

    <a class="avia-privacy-reload-tooltip-link" aria-hidden="true" href="#" rel="nofollow" data-avia-privacy-reload-tooltip="<div class=&quot;av-cookie-auto-reload-container&quot;><h2>Lade die Seite neu</h2><p>Damit deine Cookie-Einstellungen umgesetzt werden, müssen wir die Seite neu laden.</p></div>"></a>

    Gibt es dafür eine Lösung oder demnächst ein Update?

    • This topic was modified 11 months ago by bur2000.
    • This topic was modified 11 months ago by bur2000.
    • This topic was modified 11 months ago by bur2000.
    • This topic was modified 11 months ago by bur2000.
    • This topic was modified 11 months ago by bur2000.
    • This topic was modified 11 months ago by bur2000.

    I have not removed that selector. I am a css novice. Should I try that, and how would the code change?

    Here are the images:
    https://postimg.cc/gallery/c3Pxc4Q

    As you can see, the fixed background images look like highly zoomed in portions of the photos. Of course on Chrome there is no issue at all. i realize there is a Safari / ios limitation, just need to figure out how to convert these to scroll if possible. I know I can’t do a fixed background.

    Many thanks,
    Rob

    #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

    #1484189

    Hey goldengate415,

    Thank you for the inquiry.

    There are elements with this option, such as the Masonry element or pagination for Blog Posts, but it is not available for an entire page. For text elements, you can use the Fold/Unfold option but it may not have any significant effect on performance. If you have a fairly large homepage, consider moving some content to subpages and reduce the use of images. If you can provide the site URL, we’ll try to check the site further.

    Best regards,
    Ismael

    I just realized that the reason I thought this was fixed is because it is fixed on Chrome on the ipad. However, on Safari, it does not fix the issue. I chatted with GPT and Gemni, and the latter came up with this which doesn’t work either:

    /**
    * Consolidated iPad Background Image Fixes – Attempt 2
    */

    /* Target iPads (both portrait and landscape) */
    @media only screen and (max-width: 1024px) {
    .avia_mobile .avia-full-stretch,
    .avia-bg-style-fixed {
    background-attachment: scroll !important;
    }
    }

    /* Specific fix for Safari on iPad in landscape mode */
    @media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    .avia-bg-style-fixed {
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important; /* Ensure it’s still scrolling */
    }
    }

    Gemni also recommended I do a solution with javascript but I’m not wanting to start adding custom js to the site.
    `<script>
    (function($) {
    $(window).on(‘orientationchange’, function() {
    if (window.innerWidth >= 768 && window.innerWidth <= 1024 && Math.abs(window.orientation) === 90) {
    // Force a repaint/reflow on iPad landscape after orientation change
    $(‘.avia-bg-style-fixed’).each(function() {
    $(this).css(‘background-image’, $(this).css(‘background-image’));
    });
    }
    });
    })(jQuery);
    </script>

    If we can’t fix it, is there a way to make Safari only show the portrait orientation (which are smaller, mobile photos) vs the landscape, while Chrome would still use the larger color sections / background photos in landscape mode?

    Sorry this one is a beast…

    Thanks
    Rob

    #1484176
    madisonstudios1
    Participant

    Good afternoon. Love the theme – purchase many licenses.
    I have a new site I am working on and have a 1/3 container with two images. One is set to hide on the two smaller screen settings in RESPONSIVE and the other the opposite – set to show on two smaller screen settings in RESPONSIVE

    I still see a box with a ? on my mobile phone – assuming it is the “missing picture”
    I tried to add some additional CSS —–

    @media only screen and (max-width: 990px) {
    #samhide { display: none !important; }}

    in the quick css and still see it on my iPhone.

    Is there something else to try to truly hide the image on the homepage?

    #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?

    #1484127

    In reply to: Lightbox settings

    Hey Pierre,

    Thank you for the inquiry.

    You can add this filter to the functions.php file to adjust the thumbnail size used in the lightbox container.

    function avf_alb_lightbox_image_size_mod($size) {
      return "full";
    }
    add_filter('avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 1);

    To disable scrolling when lightbox is active, use this code in the Quick CSS field.

    .mfp-zoom-out-cur {
        height: 100vh;
        overflow: hidden;
    }
    
    .mfp-bg {
        height: 100vh !important;
    }

    Best regards,
    Ismael

    #1484125

    In reply to: Question on Masonry

    Hey Jochen,

    Thank you for the inquiry.

    This should be possible with a custom script. Please try this code in the functions.php file:

    add_action( 'wp_footer', 'auto_click_sort_button_by_tag', 100 );
    function auto_click_sort_button_by_tag() {
        ?>
        <script>
        document.addEventListener("DOMContentLoaded", function () {
            const urlParams = new URLSearchParams(window.location.search);
            const tag = urlParams.get("tag");
    
            if (tag) {
                const buttonClass = tag + "_sort_button";
                const button = document.querySelector("." + buttonClass);
    
                if (button) {
                    button.click();
                }
            }
        });
        </script>
        <?php
    }
    

    This should automatically activate the corresponding masonry sorting button based on the value of the ?tag= parameter in the URL. For example:

    https://site.com/masonry?tag=images
    

    Best regards,
    Ismael

    Hi, sorry for the late reply but here are the images.

    #1484084

    In reply to: Menu Layout Advice

    This reply has been marked as private.
    #1484062
    spray
    Participant

    Hello,
    Is it possible to show the image description when we open the lightbox?

    Thanks!

    #1484050

    Hi
    Thank you for your reply, but I have purchased the theme twice, so I have two tokens. However, one of them works, but the other one doesn’t update the theme.

    See image attached, that’s the second token, it seems fine, but it doesn’t update the theme to the latest version. If I click on check manually, it also doesn’t appear that needs to be updated.

    Screenshot of the token

    #1484048

    In reply to: Ctrl + F in html

    Hi,
    Perhaps it has something to do with your language characters, your word Batliner has the HTML entities &shy; twice in it:
    Bat&shy;li&shy;ner
    Screen Shot 2025 05 11 at 4.50.54 PM
    and the script doesn’t seem to be able to read the HTML entities.
    I’m not sure if or how this could be fixed, hopefully Guenni007 will have a solution for it.

    Best regards,
    Mike

    #1484046

    Hi,
    Screen Shot 2025 05 11 at 4.24.39 PM
    Did you look in the text element using the “code” tab instead of the visual tab?

    Best regards,
    Mike

    #1484035

    Hi,
    Thanks, between each image in your text element, you have a line break “br” and you also have a paragraph tag “p” wrapping some of your images, if you remove these the images will line up.
    Screen Shot 2025 05 11 at 2.35.47 PM
    It would be easier for you to see these in the text element using the “code” tab instead of the visual tab.
    Screen Shot 2025 05 11 at 2.41.47 PM

    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

    #1484021

    Hey Kat,
    Thank you for your patience and the link to your site, I tested with my Android device and with Safari on Mac in Responsive Design Mode to emulate a iPhone, but the burger menu and header image worked correctly. Unfortunately, I don’t have a iPhone to test with.
    Try disabling your plugins and clear your iPhone cache and check again.
    Please note that iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    Hi,
    When I check my single post using the Default (Business) blog style, the Tags show at the bottom of the page without the filter above:
    Screen Shot 2025 05 10 at 1.07.11 PM
    To move them in line with the categories and other meta try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_tag_meta_inline_with_other_meta_on_single_posts() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        if (document.querySelector('.single-post')) {
            const blogTags = document.querySelector('.blog-tags');
            const blogCategories = document.querySelector('.blog-categories');
            
            if (blogTags && blogCategories) {
                const strongTag = blogTags.querySelector('strong');
                if (strongTag && strongTag.textContent === 'Tags:') {
                    strongTag.replaceWith(strongTag.textContent);
                }
                
                const separator = document.createElement('span');
                separator.className = 'text-sep';
                separator.textContent = '/';
                
                blogCategories.insertAdjacentElement('afterend', separator);
                separator.insertAdjacentElement('afterend', blogTags);
            }
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'move_tag_meta_inline_with_other_meta_on_single_posts', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 05 10 at 1.13.38 PM

    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

    Hey Oriano,
    Users with “edit_published_posts” permissions such as Administrators, Editors and Authors can view the site.
    Screen Shot 2025 05 10 at 9.42.27 AM
    You could edit line 304 in /enfold/includes/classes/class-avia-custom-pages.php
    but there is not a way to change this in your child theme, so you would need to update this file for each version update.
    Your best option would be to use a plugin instead.

    Best regards,
    Mike

    #1483979

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

    Best regards,
    Mike

    #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

    #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,441 through 1,470 (of 106,463 total)