Home › Forums › CSS › custom css in smoothslider › Reply To: custom css in smoothslider
May 19, 2014 at 5:25 pm
#170626
Participant
I think you want to target individual link elements? Use a class :
a.bar:link {color:#333333;}
a.bar:visited {color:#000000;}
a.bar:hover {color:#ffff00;}
a.bar:active {color:#eeeeee;}
Then in your HTML :
<a class="bar" href="index.html">Home</a>