Backlink colours


Author Message
Clare

Posted: 5/5/2009
Quote message 

My back link isn't showing up very well due to the contrast between the text and the background. But I'm please with the rest of the design, so I guess I need to manually change the CSS file, unless I have missed a trick somewhere.
 
bluehead

Posted: 5/5/2009
Quote message 

here is the part of style.css to tweak

a
{
font-family: Arial, Helvetica, Sans-Serif;
font-style: normal;
font-weight: bold;
text-decoration: none;
color: #224422;
}

/* Adds special style to an unvisited link. */
a:link
{
font-family: Arial, Helvetica, Sans-Serif;
font-style: normal;
font-weight: bold;
text-decoration: none;
color: #224422;
}

/* Adds special style to a visited link. */
a:visited, a.visited
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
color: #224422;
}

/* :hover - adds special style to an element when you mouse over it. */
a:hover, a.hover
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
color: #557920;
}

Play with the colours in numbers, use any colour picker to define it.