I am having this problem as well. Is there anyone that can help me to change the font color from black to white? Just the NAME MAIL and WEBSITE in the comment section?
This has ALSO been stated innumerable times .. do NOT post your entire code in the forum. Just state what your problem is, what you want to do, and then INCLUDE A LINK to your site so it can be examined.
Font colors – indeed ANY styling – is controlled by the style sheet styles.css. You can control any color by editing the appropriate tag in the CSS. For example, your body text color is black, controlled by this piece of the code:
body {
background: #006600;
/* background-image: url('images/background.gif'); */
margin: 0;
padding: 0;
font: 75%/1.2 "Trebuchet MS", Verdana, Arial, Sans-Serif;
color: #000;
text-align: center;
}
Notice it says color: #000? That is shorthand for #000000, or black. Any other selector showing a color can be changed similarly, by changing the hex numbers for that section. Nobody can tell you what to change anything too because you only said the color is not right – not what you want it to be. If, for example, you want that text to be white, the hex color to change it to would be #FFF (or #FFFFFF), etc.
I understand that.
I did not post my code.
I noticed that when I changed the font color it changed for all of the areas. It did not just change that specific area. Meaning FONTS are controlled by the same color throughout and I cannot get them to change.
I wanted the font in the blog itself to change to white, and the font on the comment section to change to be black but only the areas that people have to type in. The description areas NAME EMAIL (to tell them what to put in) was automatically changed to black as well. I wanted that to be white since my theme is black.
(@bcinelli)
18 years, 3 months ago
For some reason the fields aren’t showing up when you look at the comments section to post a comment.
The NAME field, E-mail, and Website are not showing in the right color whatsoever.
Any help would be amazing! I really need this to start working.