Friday, August 15, 2008

Stylize your Blog Links Using CSS

You can stylize your Blog Link Using CSS to make the Link Text More clear and attractive.For this you have to replace your blog Link Code by any of the following Codes.

Bottom-Border Dotted
a:link {
color:#0000FF;
text-decoration:none;
border-bottom:1px dotted #0000FF;
}


Bold
a:link {
color:#0000FF;
text-decoration:none;
font-weight:bold;
}


Italic
a:link {
color:#0000FF;
text-decoration:none;
font-style:italic;
}

Underline
a:link {
color:#0000FF;
text-decoration:underline;
}

No comments:

Post a Comment