openchannel
Member
Posted 2 years ago #
Hi - I just created my wordpress site using VINA. The font colour for the links inside of text are almost the same colour of the text. I'd like to change this. I went to the style guide, but couldn't figure out which colour to actually change... or to what.
Any help appreciated. Thanks!
JCataln
Member
Posted 2 years ago #
Open style.css.
The relevant code is:
a:link, a:visited {
color: #0000;
text-decoration: none;
To change the color, change the hex number.
openchannel
Member
Posted 2 years ago #
danikadinsmore.com is the site url.
thanks, JCatln. I'll try that. I don't really know what number to change it to... guess I'll just experiment!
JCataln
Member
Posted 2 years ago #
A very light blue doesn't look bad. This hex code is: #236B8E
See here: http://www.economicthought.net/?p=23
A tried dark blue at first and it came out terrible. This doesn't look bad, and you can actually see the links. I think subtle variations of any color will look good. The less is contrasts, the better.
guedonk
Member
Posted 2 years ago #
You can try edit on style.css like this :
a:link, a:visited {
color: #958A59;
text-decoration: none;
}
a:hover {
color: #236B8E;
text-decoration: none;
}
See here : guedonk.my-php.net