stlracing
Member
Posted 2 years ago #
If using a dark theme and "a" links are white, the links for DIRECTIONS and so on also show up as white.
I'm no css guru, but if I add a custom css file in the mappress setup area, it changes the color of all links on the page it loads. Is there a more specific css breakdown for the mappress links?
chrisvrichardson
Member
Plugin Author
Posted 2 years ago #
Hi,
In mappress.css, I have some comments for the various CSS classes. The one you want is ".mapp-overlay". You can get black links like this:
1. Create a custom CSS file somewhere on your server
2. Enter the URL to it in the MapPress options screen
3. Put this in your CSS file:
.mapp-overlay a {
color: black;
}
I hope that helps!