On https://debraandsheri.com, when I highlight text or select a menu on mobile, I get a background that’s the same color (dark green) as the text, so I can’t see anything clearly.
Can you help me correct this?
Hey launchmoxie,
Do you mean the colour when you hover or select an item? if so you can try this in Quick CSS:
#mobile-advanced li > a:active {
background-color:#ddd !important;
}
Best regards,
Rikard
Thanks, that helps for mobile, awesome!
I also need help when text is highlighted on desktop versions. Can you help with that as well?
Hi,
To solve the highlighted text color, try this code in the General Styling > Quick CSS field:
::-moz-selection {background: #fff!important; color: #2a8a47!important; }
::selection {background: #fff!important; color: #2a8a47!important; }
Best regards,
Mike
Thank you, that helps.
You’re a terrific team, much appreciated!