Hi guys
To make the glassy header a little darker I have added the following CSS. This works fine on desktop, however on mobile menus I would like it to display white (#FFFFFF), not the 60,60,60 grey color.
———————————
#top .av_header_glassy.av_header_transparency #header_main {
background-color: rgba(60,60,60,0.3);
}
———————————
Is there a work around for this?
Cheers
Hey pantoni,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
Hi!
Try the following CSS to change the color on mobile only:
@media only screen and (max-width: 767px){
#top .av_header_glassy.av_header_transparency #header_main {
background-color: #FFFFFF;
}
}
Cheers!
Jordan
Thanks Jordan
That worked!
cheers
Hi!
Glad I could be of assistance!
Cheers!
Jordan