Hey guys,
Can I get your help with some CSS please?
When you run an AJAX search, Enfold has a little spinner icon and behind it is the theme colour (in my case red).
Client wants to remove the red background and only show the spinner, but due to the way this is injected I’m having a hard time isolating the CSS needed to do this.
Could you please assist?
Thanks
Tim
Hey Tim,
Sorry for the late reply.
Please check enfold\css\layout.css
Around line 2076 you find:
.ajax_load_inner{
background: url("../images/layout/loading.gif") no-repeat scroll center center #fff;
opacity: 0.5;
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
}
I think this is what you need.
To override it you can use selector:
#searchform .ajax_load .ajax_load_inner{
}
Hope this helps you.
Best regards,
Günter