Hi there!
Tried to find a solution in the forum but couldn't find any. I have the following problem.
I changed the background color and text color of my comment field, I have now the following CSS in the comment form style are:
margin: 25px 0;
padding: 25px;
background: #222222;
color: #ffffff;
-moz-border-radius: 8px;
-khtml-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
Everything looks fine except the links are still in black the way I set it up for the rest of the theme, how can I change the link color of the comment area only? I tried adding something like this here:
a:link {color:#FF0000;}
a:visited {color:#00FF00;}
a:hover {color:#FF00FF;}
a:active {color:#0000FF;}
but assume it's the wrong way of doing that. Does anyone know how to do that right?
Thanks in advance! :-)