Forum Replies Created
-
AuthorPosts
-
Hi,
Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.Best regards,
MikeHi,
When I check it looks like you removed the background image from the socket.Best regards,
MikeHey reqonsult,
The shop is created with the woocommerce plugin
See our documentation here.Best regards,
MikeHey Tilman,
You have a CORS error:Access to font at 'https://auto-wulf.de/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello/entypo-fontello.woff' from origin 'https://www.auto-wulf.de' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.This is a www vs non-www mismatch issue. Even though it feels like the “same domain,” browsers treat auto-wulf.de and http://www.auto-wulf.de as two completely different origins.
Option 1 — Add CORS headers in .htaccess (easiest for Apache/WordPress)
Add this to your .htaccess file in the root of your site:<FilesMatch "\.(woff|woff2|ttf|otf|eot|svg)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch>Option 2 — Redirect all non-www to www (recommended anyway)
This fixes the root cause by making sure all assets are always loaded from the same origin. Add to .htaccess:RewriteEngine On RewriteCond %{HTTP_HOST} ^auto-wulf\.de [NC] RewriteRule ^(.*)$ https://www.auto-wulf.de/$1 [R=301,L]You can edit .htaccess via FTP/SFTP or through your hosting control panel’s file manager.
Best regards,
MikeHi,
Glad that Guenni007 could help, thanks Guenni007, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.Best regards,
MikeMarch 24, 2026 at 10:38 am in reply to: Easy slider full width keep the same text all slider #1496285Hey schweg33,
Try this css:#socket > .container, .title_container > .container { max-height: 58px; height: 58px; }Best regards,
MikeHey mjrielly,
Typically the solution is to apply css height so all of the testimony slides will have the same height, and also calculate the needed height for each screen size. The following javascript will do this automatically for you. Add the following code to your child theme functions.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:

then add the following code and save.function equalise_testimonial_heights() { ?> <script> (function () { function equaliseTestimonialHeights() { const row = document.querySelector('.avia-testimonial-row'); if (!row) return; const slides = row.querySelectorAll('.avia-testimonial'); if (!slides.length) return; slides.forEach(function (slide) { slide.style.height = ''; }); let maxHeight = 0; slides.forEach(function (slide) { const h = slide.offsetHeight; if (h > maxHeight) maxHeight = h; }); slides.forEach(function (slide) { slide.style.height = maxHeight + 'px'; }); } function debounce(fn, delay) { let timer; return function () { clearTimeout(timer); timer = setTimeout(fn, delay); }; } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', equaliseTestimonialHeights); } else { equaliseTestimonialHeights(); } window.addEventListener('resize', debounce(equaliseTestimonialHeights, 150)); })(); </script> <?php } add_action( 'wp_footer', 'equalise_testimonial_heights', 99 );Best regards,
MikeHi,
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,
MikeHey newmediologo,
Try this css:#menu-item-search a { z-index: 110; position: relative; }Best regards,
MikeMarch 23, 2026 at 8:17 pm in reply to: Accessibility: Compliance of forms and tab elements in the Enfold theme #1496271Hi,
These were added to the theme 2 years ago. Ensure that you are using the latest theme version 7.1.4
If you are still having an issue then it must be a different issue. Please open a new thread and detail your issue carefully so we can duplicate and explain to the Dev Team, or you can post yourself to the Dev Team here and follow along as they review.Best regards,
MikeHey Tim,
Thanks for your patience, but the Dev Team doesn’t check here often, so I opened a feature request for you here:
https://github.com/KriesiMedia/Enfold-Feature-Requests/issues/152
Please feel free to add to it if you like, and check there for updates as it is reviewed. Otherwise the Dev Team may also reply here.Best regards,
MikeHi,
When I check on my test site adding this to the top of my child theme, or parent right after if( ! defined( ‘ABSPATH’ ) ) { exit; } prevents entypo-fontello-enfold.woff2 from loading:function avf_custom_font_display( $font_display, $font_name ) { if( 'entypo-fontello' == $font_name ) { return 'swap'; } return $font_display; } add_filter( 'avf_font_display', 'avf_custom_font_display', 10, 2 );If you still have some css calling the entypo-fontello font, such as the submenu-indicator, you will need to override the css like this:
.html_av-submenu-hidden .av-submenu-indicator:before { content: ">"; font-family: svg_entypo-fontello; }Best regards,
MikeHi,
Ok thanks @Guenni007, so @wesleyborgman note that with Guenni007’s example you will need to disable the Equal Height option in your columns.Best regards,
MikeHi,
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,
MikeHi,
What I ment was that when the columns are set to equal height the dev structure changes and display:table; is used on the flex_columnBest regards,
MikeHi,
These two pages have different IDs, so use this css for all four pages:#top.page-id-19041 #main > .avia-section, #top.page-id-19042 #main > .avia-section, #top.page-id-3288 #main > .avia-section, #top.page-id-10730 #main > .avia-section { z-index: 2; position: relative; } .html_entry_id_19041, .html_entry_id_19042, .html_entry_id_3288, .html_entry_id_10730 { z-index: -1; position: relative; }Best regards,
MikeHi,
Thanks for the login, but is not a Admin account so we can’t see any theme setting or page elements. Please update the login to Admin.Best regards,
MikeHi,
@Guenni007 nice solution with flex, but @wesleyborgman is using Equal Height columns which changes the layout.Best regards,
MikeHi,
Try this css:#top.page-id-19041 #main > .avia-section, #top.page-id-19042 #main > .avia-section { z-index: 2; position: relative; } .html_entry_id_19041, .html_entry_id_19042 { z-index: -1; position: relative; }Then clear your cache.
Best regards,
MikeHi,
Sorry I was looking at the submenu dropdown. Try this css:#top #av-custom-submenu-1.av-subnav-menu>li { width: 33%; }Best regards,
MikeHey Michael F,
Try adding this css to your Quick CSS field:#menu-item-2686 img { padding-top: 19px; }Then clear your cache.
Best regards,
MikeHi,
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,
MikeMarch 21, 2026 at 11:50 am in reply to: Media CSS for custom header widgets – responsiveness issues #1496218Hey GWS,
#text-20 is a search field, it has the class av-mini-hide so it will not show on small mobile devices.
Try adding this css to show it:@media only screen and (max-width: 479px) { .responsive.av-no-preview #top #wrap_all #text-20 .av-mini-hide { display: block; } }But you should review your css for the widgets as it is too general and places both of them in the same place:
@media screen and (max-width: 1024px) { #header .widget { left: 20%; position: absolute; top: 50px; transform: translate(-20%); z-index: 999; } }Try making two css rules for each widget so they will not overlap
#header #text-19.widget
#header #text-20.widget
On the other hand I don’t see the point of showing the search field on mobile when the search icon is already showing.
Instead of in the header it might be better just above the Latest Articles title.Best regards,
MikeHey Madison,
Your Milestone Content has a lot of strange classes, css styles, spans, & divs
Please view the Milestone Content using the Code tab

This looks excessive for the simple text in the field, I assume that you copied the text from somewhere and the page code was added when you pasted. You may have unclosed tags breaking the milestone layout.
Try building again with only plain text, if you want to copy the text from the frontend of your page, first paste into a plain text editor like notepad, notepad++, or vscode then copy the plain text again and paste into the milestone content field.Best regards,
MikeHi,
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,
MikeHi,
Thanks Guenni007 for helping. If you have further questions please open a new thread and we will try to help. Thanks for using Enfold.Best regards,
Mike -
AuthorPosts



