Hi,
I’ve changed the background and text colour of the top menu using advanced styling but for some reason it only kicks in when shrinking the browser window. I’m using firefox.
Cheers.
Hi mazerti!
That is because you have wrapper your code inside media queries as following.
@media only screen and (max-width: 990px) {
#top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul {
background-color: #000000;
}}
@media only screen and (max-width: 990px) {
#top #header_meta a, #top #header_meta ul, #top #header_meta li, #top #header_meta .phone-info {
color: #ffffff;
border-color: #888888;
}}
Please change it to following
#top #header_meta a, #top #header_meta ul, #top #header_meta li, #top #header_meta .phone-info { color: #ffffff; border-color: #888888; }
#top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul { background-color: #000000; }
Regards,
Yigit