If you want to format a link to have no underlines you can do the following.
Code:
a , a:hover , a:visited , a:active
{
text-decoration: none;
}
If you want to format your images so they do not have borders around them you can do the following.
Code:
img
{
border: none;
}