Or if it is black, how do I make it darker (bolder) or thicker?
@rinivasu143 – what does that have to do with anything in this post?
@jklarich – the hex code for black is #000000; what you have is red.
Right it is but it is not displaying as red. Everything is gray which was the default color for the Hueman WordPress. I want it black and maybe a little heavier line. Tried some things but couldn’t get them to work.
I changed the code to:
Text Color
* {
color: #000000 !important;
}
and it didn’t change color. Suggestions?
It didn’t change because the individual page areas are setting the color, and it’s more specific than a global *. Even if * did work you probably wouldn’t want to use it as it would change everything, including your menus, header, etc. If you want to change the page content text you could try this:
/* change page content to black */
.page .entry {
color: #000
}