Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS custom css in smoothslider Reply To: custom css in smoothslider

#170626
MBM
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>