CSS- Lesson 5 - Dynamic links
Do you HATE the standard links, yes? Good because this will help...
You can create links which are good colors, have borders and change when you hover over them change colour or style or something interesting like that. This code is the basic: ( work the rest out, its not beyond you).
a
{
color:blue;
text-decoration:none;
}
a:hover
{
color:red;
padding-left:10px;
text-decoration:none;
}
The best results will come with experimentation.
Lesson 4- Putting together styles