-
AuthorSearch Results
-
May 15, 2025 at 6:23 am #1484269
In reply to: Advanced Builder Gray Screen
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,
IsmaelMay 15, 2025 at 2:37 am #1484264great 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 desktopThank you!
-
This reply was modified 11 months ago by
bemodesign.
May 14, 2025 at 5:19 pm #1484247In reply to: Hiding Image on Mobile not working
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, ChrisMay 14, 2025 at 2:07 pm #1484229Topic: Contact form – fieldset no legend
in forum Enfoldbur2000
ParticipantHallo,
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="av-cookie-auto-reload-container"><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?
May 14, 2025 at 8:16 am #1484214I 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/c3Pxc4QAs 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,
RobMay 14, 2025 at 6:53 am #1484196In reply to: Media files duplicating
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,
IsmaelMay 14, 2025 at 6:10 am #1484189In reply to: “Load more” on a page possible?
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,
IsmaelMay 13, 2025 at 10:45 pm #1484177I 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
RobMay 13, 2025 at 10:29 pm #1484176Topic: Hiding Image on Mobile not working
in forum Enfoldmadisonstudios1
ParticipantGood 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 RESPONSIVEI 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?
May 13, 2025 at 12:54 pm #1484149Topic: Mobile Performance Issue: Slow LCP
in forum EnfoldMAlmhofer
ParticipantI’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?
May 13, 2025 at 5:44 am #1484127In 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,
IsmaelMay 13, 2025 at 5:18 am #1484125In 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=imagesBest regards,
IsmaelMay 12, 2025 at 3:14 pm #1484096Hi, sorry for the late reply but here are the images.
May 12, 2025 at 12:18 pm #1484084In reply to: Menu Layout Advice
This reply has been marked as private.May 12, 2025 at 7:34 am #1484062Topic: Show image descritption on lightbox
in forum Enfoldspray
ParticipantHello,
Is it possible to show the image description when we open the lightbox?Thanks!
May 12, 2025 at 12:33 am #1484050In reply to: Envato private Token for multiple websites
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.
May 11, 2025 at 10:56 pm #1484048In reply to: Ctrl + F in html
Hi,
Perhaps it has something to do with your language characters, your word Batliner has the HTML entities­twice in it:
Bat­li­ner

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,
MikeMay 11, 2025 at 10:27 pm #1484046In reply to: social media symbols/icons centered in textfield
May 11, 2025 at 8:43 pm #1484035In reply to: social media symbols/icons centered in textfield
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.

It would be easier for you to see these in the text element using the “code” tab instead of the visual tab.

Best regards,
MikeMay 11, 2025 at 4:02 pm #1484024In reply to: social media symbols/icons centered in textfield
This reply has been marked as private.May 11, 2025 at 3:08 pm #1484023In reply to: Problem of transition with content slider
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:

with this new css:

After applying the css, please clear your browser cache and check.Best regards,
MikeMay 11, 2025 at 2:37 pm #1484021In reply to: Dropdown menu and header image not working on iPhone
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,
MikeMay 10, 2025 at 7:15 pm #1483999Hi,
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:

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.

Best regards,
MikeMay 10, 2025 at 5:30 pm #1483990Hi,
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:

with this css:

Best regards,
MikeMay 10, 2025 at 4:46 pm #1483988In reply to: Anchor links not working correctly in mobile menu
Hi,
Your section with the ID #samplewebsites is hidden on small mobile devices:

probably because you wanted to show the next section only on small mobile:

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,
MikeMay 10, 2025 at 3:47 pm #1483981Hey Oriano,
Users with “edit_published_posts” permissions such as Administrators, Editors and Authors can view the site.

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,
MikeMay 10, 2025 at 3:23 pm #1483979In reply to: Problem of transition with content slider
Hi,
It looks like you had a duplicate thread for the overlay icon, check here.Best regards,
MikeMay 10, 2025 at 1:58 pm #1483973In reply to: Change settings on hover on slider images
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,
MikeMay 10, 2025 at 12:29 pm #1483967In reply to: Accessibility with Tab – making it more visible
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:

and then if you hit the enter key it will open:

Best regards,
MikeMay 10, 2025 at 11:36 am #1483965Hi,
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; }
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 -
This reply was modified 11 months ago by
-
AuthorSearch Results
-
Search Results
-
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="av-cookie-auto-reload-container"><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?
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?
Hello,
Is it possible to show the image description when we open the lightbox?Thanks!

