Hi,
I’m building a site and going through checking things on mobile view and noticed that the small bar above Main Menu is displayed as white. So the text I have that is in white doesn’t show but is there.
I have the pages set to a transparent header when viewed on PC.
I guess what I am after is some Quick CSS to change the color background of the small bar above Main Menu when in mobile view.
Assistance appreciated.
Cheers
John
Hey John,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.responsive #top #header_meta .social_bookmarks li a,
.responsive #top #header_meta .phone-info,
.responsive #top #header_meta .phone-info a {
color: #444;
}
.responsive #top #wrap_all #header_meta .social_bookmarks,
.responsive #top #header_meta .phone-info {
display: block;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria.
Once again spot on.
Would be nice to see this sort of customising added to the advance styling one day but then, how long is a piece of string eh :).
One question though, the social icons, can these be spaced out from one another little, some padding perhaps?
Cheers
John
Hi John,
Thanks for the update. Please try this CSS as well:
@media only screen and (max-width: 767px) {
#top .social_bookmarks li {
width: 40px;
padding: 0 5px;
}
}
Best regards,
Rikard
Thanks Rikard.
please close thread.