Colour of hyperlinks
-
Hi there,
I want the my headers always to be black. Now they start of blue and turn black when clicked on.
How do I css this?The blog I need help with is: (visible only to logged in users)
-
Hi there, you currently have this in your custom CSS which is making all the links in your site blue, including post titles.
To change all post titles to black, add the following to your custom CSS.
.entry-title, .entry-title a, .entry-title a:visited { color: #000; }If there are additional things you wish to have black, just let me know.
-
Thanks for your quick respons!
Now the last tiny thing I want, is the active link in the menu to be blue (#0087D8). Now it is greenish, the default Truly Minimal colour.
-
Add the following and you can edit the color as desired. It is always good practice to differentiate the current page the user is on from the other pages, but you can set it to the same color as the others if you wish, which is #0087d8.
.navigation-main li.current_page_item a, .navigation-main li.current-menu-item a { color: #cc0000; } -
Thanks. Now it is exactly the way I want it.
I added:
.navigation-main li.current_page_item a, .navigation-main li.current-menu-item a {
color: #0087D8;So now the page the user is on, is different from the others.
Kind regards -
- The topic ‘Colour of hyperlinks’ is closed to new replies.