PDA

View Full Version : Dashed Links How to?


mobillica
08-02-2005, 11:25 AM
Hi I'm only after one thing. How do you change the links on your forum from a solid underline to a dashed link underline?

:ermm:

b6gm6n
08-02-2005, 11:49 AM
<style type="text/css">
<!--
a:link {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #00CC99;
border-top-style: none;
border-right-style: none;
border-bottom-style: dashed;
border-left-style: none;
text-decoration: none;
}
a:visited {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #999999;
font-weight: normal;
}
a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #9999CC;
border-top-style: none;
border-right-style: none;
border-bottom-style: dotted;
border-left-style: none;
}
a:active {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #CCCCCC;
}
-->
</style>

Boofo
08-02-2005, 12:56 PM
And this would go where? ;)