Changing link colour(s)
-
My site: https://brasandbodyimage.com/ (bra pics, potentially NSFW depending on workplace).
Hi all. I’d like to change some of the link colours in Able if possible, but I haven’t been able to find the best way to do it. So far I’ve messed around a bit and used a child CSS sheet to change the navigation bar at the top to be black when not selected (from light grey), and the text to be grey (from black), which also changed the older posts link colour to be grey.
Pretty much all of the other hyperlinks are navy blue, and the post titles are navy blue on hovering. I would like to change all of the navy blue links to a dark pink (something like #df144d). What would be the best way of doing this? Thanks in advance.
In case the added CSS changes are important:
Changing navigation bar text/page navigation links grey:
.site-navigation a { color: rgb(110,110,110); color: rgba(110,110,110,1); }
Changing navigation bar background black:
.main-navigation, .menu-toggle { background-color: rgb(0,0,0); background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0))); background-image: -webkit-linear-gradient(rgba(240,240,240,0.8),rgba(210,210,210,0.8)); background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)); }
- The topic ‘Changing link colour(s)’ is closed to new replies.