Is there a way to change the color of the text of a page name?
-
Is there a way to change the color of the text of a page name? I want to call it out on my home page from all the other pages in the menu.
The blog I need help with is: (visible only to logged in users)
-
Do you mean the color of the page title, for example on http://whole-again.org/contact/ ?
-
I’m referring to the text color of the actual hyperlinks on the home page that take you to other pages. The row of hyperlinks below the header in this case. I’m interested in changing one hyperlink, “Support Us”, to another color to call it out from the rest of the hyperlinks on the homepage.
-
I’ve added a CSS class to that menu item and added this code in your CSS editor. You can adjust the code at https://wholeagainorg.wordpress.com/wp-admin/customize.php > CSS
Please let us know if you need any further assistance!
-
I don’t know what you mean by “CSS class” and I can’t locate the code when I went to the CSS editor.
This is all I saw:
footer.entry-meta {
visibility: hidden;
}.support a {
} -
You can edit this CSS code:
.support a { }In between the { } you can add CSS code. For example to change the color:
.support a { color:#000; }You can adjust #000 to a different color code using: http://www.colorschemer.com/online.html
-
-
- The topic ‘Is there a way to change the color of the text of a page name?’ is closed to new replies.