Hi there,
My site is crosscountryfs.ca
The logo on the home page looks great on the desktop, however when it switches to mobile view, the logo reverts to it’s normal colour, but I wish for it to continue to be white.
Along with that, I wish for the phone number to also be white.
Thank you.
Hey threemarketinginc,
Please try this in Quick CSS:
@media only screen and (max-width: 767px) {
.home span.logo img {
opacity: 0;
}
.home span.logo a {
background-image: url('white logo URL goes here');
background-repeat: no-repeat;
background-size: contain;
}
}
Remember to add the URL of your white logo in the code.
Best regards,
Rikard