please remove your css code on that – because to many spans are selected – it is kept too general.
on opened burger there is a new class on html : av-burger-overlay-active
/**** color of the bars***/
html.av-burger-overlay-active #top #wrap_all .av-hamburger-inner,
html.av-burger-overlay-active #top #wrap_all .av-hamburger-inner::before,
html.av-burger-overlay-active #top #wrap_all .av-hamburger-inner::after {
background-color: red !important
}
/**** background color behind the bars***/
html.av-burger-overlay-active #top #wrap_all .av-hamburger {
background-color: lime !important
}
and if you like :
/**** to get rid of those borders left/right ***/
#top #wrap_all .av-main-nav > li.av-burger-menu-main a,
#top #wrap_all .av-main-nav > li.av-burger-menu-main:hover a {
border: none !important;
background-color: transparent !important
}
/*How differentiate between background of hamburger on flyout and background of hamburger on header with no flyout*/
.responsive .av-burger-menu-main span{
background:yellow!important;}
Example: If do above, both closed and open burger are background of yellow.
If closed (actually see box with 3 hamburger lines)…is yellow.
If open (when click on hamburger box, then menu flies out and shows X) — also has yellow background.
I would like flyout menu to be different color…say, lime (so I can see the change).
Another topic shows me how to change COLOR of the X, but I also want to change the BACKGROUND of the square that contains that X.
Is there a way?.
I’m playing with mobile menu on: https://calvarybaptistdunnellon.com/
You can see change in symbol color…but haven’t yet changed background color…cuz doesn’t work for me!
Hi,
Thank you for the info.
We’ve set the Layout > Height > Content height to the second option, allowing the section to adjust its height automatically based on the content. You can also modify the items within the Tab Section and adjust the Styling > Alignment > Vertical align settings to Top instead of the default Middle.
Best regards,
Ismael
Ok, on the page in the private box, the fallback image is 56kb. The original image size was 1151×1200, and then the optimizer created scaled images, which I would assume are smaller than the original.
I am having the same issue where this fallback image is the Largest Contentful Paint element. Load and Render delays seem to be the biggest time eaters.
The other time eater listed is Main Thread Work, with Script Evaluation taking up the largest amount of time by itself (though the other 6 times in there add up to more than that).
I must be missing something. I completely re-uploaded all of my images to bring down some file sizes just as a precaution (some were 5MB before compression). Now even the largest are only kb’s.
This is still only on mobile devices. What am I missing about mobile load times? Is there a mobile setting somewhere that I can tweak? I’ve looked through and just don’t see anything that would directly relate to the mobile images served up.
With Enfold > Performance > Compression/merging features turned on, the mobile performance score hovers around 65 (desktop stays around 95). I tried turning them off, then turning on those features in WPFC, the score seems to go down for mobile.
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
Thanks Rikard. you can closte the topic.
Hi,
Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
i don’t want to change the background color.
I want to change to an image, instead of an icon. How to?
Can I make one item “open”, so that the text will be displayed by default?
The icon circle is huge on desktop, but I can’t find a way to get it smaller
-
This reply was modified 1 year, 11 months ago by
northorie.
We are experiencing exactly the same issues – two #JS_errors show up since #Enfold_v5.7. They stop a proper rendering of the pages and cause multiple issues.
Rikard, Your advice does not fix it – so neither deactivation of compression nor deletion of old CSS/JS fixes the problem.
@Kriesi Support People: Please provide a proper fix ASAP – PLEASE do not wait another 14 days – the errors broke our site and probably others, too.
Thank you,
Thomas
Hi,
Is it possible to hide the search icon from main menu on laptops, but keep it when ever the burger menu is activated?
Hi,
the sam problem we solved in this thread https://kriesi.at/support/topic/events-calendar-plugin-german-version-h1-typo/#post-1117859
has come up again.
Can you please fix this or tell me how to fix this permamently?
Thanks and best regards
Hey divinecurio,
Try following this solution.
Best regards,
Mike
PS :
repeat(5, 1fr) – is a short form of 1fr 1fr 1fr 1fr 1fr
if you need for one column a bit more place you can do that: 1fr 1fr 1fr 1.3fr 1fr ;)
_______
i used on that installation the nice snippet from Ismael ( link ) to place the post-thumbnails besides the menu-items.
function avf_wp_nav_menu_objects($sorted_menu_objects, $args) {
// check menu name
if ($args->menu->name != 'hauptmenue') return $sorted_menu_objects;
foreach ($sorted_menu_objects as $menu_object) {
if ( in_array($menu_object->object, array('post', 'page', 'portfolio')) ) {
$menu_object->title = has_post_thumbnail($menu_object->object_id) ? $menu_object->title . get_the_post_thumbnail($menu_object->object_id, 'thumbnail') : $menu_object->title;
}
}
return $sorted_menu_objects;
}
add_filter('wp_nav_menu_objects', 'avf_wp_nav_menu_objects', 10, 2);
a bit of css is needed then for dimension and placement.
You do not need to decide it on dashboard – menu how the mega div will look like.
(“this column should start a new row”)
You can handle the mega div to show as grid layout.
if you have to decide it for different mega-divs you had to differ via the parent menu item id ( e.g.: #menu-item-123 or a count number set on avia_mega_div e.g: .avia_mega_div.avia_mega1 )
i got on my test page a mega menu with 5 columns – so i set it to:
#top .avia_mega_div > .sub-menu {
display: grid !important;
margin:0;
gap: 20px 0px;
grid-auto-flow:row;
grid-template-columns: repeat(5, 1fr); /*** that means 5 grid-cells with each 1 fraction (same size) ***/
}
#top #header .avia_mega_div > .sub-menu > li {
display: block !important;
width: unset;
position: relative;
}
#top #header .avia_mega_div {
max-width: 100vw; /*** if it is neccessary ***/
}
now for responsive behavior set some media queries:
@media only screen and (min-width: 990px) and (max-width: 1199px) {
#top #header .avia_mega_div > .sub-menu {
grid-template-columns:repeat(3, 1fr); /*** now 3 grid-cells - grid-auto-flow: row will make a new row ***/
}
/*** i want to center the second row - so i shift 4th, and 5th column***/
#top #header .avia_mega_div > .sub-menu > li:nth-of-type(n+4) {
display: block;
position: relative;
left: 50%; /**** if you have a column-gap between the cells - then your had to calculate a correction - half the gap-size ****/
}
#header .avia_mega_div {
overflow-y: scroll; /*** needed - if your mega-div height is too large for your device ***/
max-height: calc(100vh - 200px); /*** depends on your header height ***/
}
}
result –
on top 5 columns besides each other
on bottom between 990px and 1199px

Hi,
I’m encountering a layout issue on mobile devices. On desktop view, the pages are designed with alternating text blocks and images side by side, which works as intended. However, when the site is accessed on a mobile device, the two image blocks stack directly on top of each other instead of alternating with the text blocks.
Is there a CSS solution or a theme-specific setting that I can apply to correct this issue on mobile devices? The goal is to maintain the alternating text-image pattern across all device sizes for consistency and user experience.
Thank you for your assistance.
Hi,
Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
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
Hello.
Easy to state the problem: the link to a bookmark on a particular website page is not working correctly. When one clicks on the “Here’s how to find them.” link in the “Go Ahead And Sample” paragraph towards the top of the page, the page does not move all the way down to the contact form at the bottom of the page that is tagged with the “fom” bookmark. Instead, it only moves a tiny but lower on the page. This happens on larger screens, laptop screens and smartphones.
I have included the address for the problem webpage in the private content section, together with Admin signin information that you can use to examine the site and the page.
Many thanks,
Cliff
Hi,
Try this example CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to make the background color red, font white, and remove the border radius:
#top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
background-color: red;
color: white;
border-radius: 0;
}
adjust to suit.
To make the button background color blue on hover add this css:
#top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button:hover {
background-color: blue;
color: white;
border-radius: 0;
}
you can also change the font color and border radius on hover.
Best regards,
Mike
Top of the homepage there should be an image below the text ‘Zorg voor iedereen’. I just cant see it on all of my devices and browser.
Hi,
I’m not sure how you added that, maybe you added code like this?
Best regards,
Rikard
hi guys. i have a challenge and this is that when I use ALB for posts, images instead of feature image not located in rankmath sitemap. i asked this problem from rankmath team and they said it is related to theme compatibility.
https://wordpress.org/support/topic/enfold-and-the-images-missing-problem-in-sitemap/
Hi,
I would like to exchange the icons to a normal picture or plain Text, just the way that I aksed for the symbol box:
But it doesn’t seem to work.
I also want to make the space for the icon much bigger and whole circle is way tooo big and can’t find the option to change the overall size.
Link on private data
Thanks in advance
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.caption_fullwidth {
top: 25px;
}
}
Best regards,
Rikard
Hi,
I have found the solution. The anchor links are working when using a fixed header.
I dont know why this is the case. But you can close the topic, if you like.
Thanks.
Best regards
How can I remove that top blue bar on the website, without messing things up?
Hey xfacta,
Please try this CSS as well:
.avia-icon-list .iconlist-timeline {
top: 35px;
left: 46px;
}
Best regards,
Rikard
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
Hi there
I have added some custom CSS to change the size of the icons but now I’ve noticed the dotted line that usually runs down the center of the icons is showing to the right – can you please help me get the line centered again: https://www.skills4lifepsychology.com/anxiety/
here is the custom css:
/* Icon list icon size */
.avia-icon-list .iconlist_icon {
height: 30px;
width: 30px;
line-height: 30px;
font-size: 18px;
}
#top .avia-icon-list .iconlist_icon {
top: 15px;
}
Cheers
Natasha
Unfortunately this CSS did not work to load the main image. I’m sending you some private links to show screenshots of what works in Chrome and what doesn’t work in Safari and Firefox. Again, the problem only occurs on mobile browsing. Desktop setup is great. Any other ideas after reviewing the links?
Thank you Ismael