Brown_Eyed_Girl
06-06-2003, 01:37 AM
Okay..another question..If you want each individual link to be a different color when you hover over them, what tag do you put before the link?
|
View Full Version : Separate Link Hovers Brown_Eyed_Girl 06-06-2003, 01:37 AM Okay..another question..If you want each individual link to be a different color when you hover over them, what tag do you put before the link? zangerbanger 06-06-2003, 02:40 AM It's actually part of the link: <a href="URL" style="color:#000000"> You can change the colour to whatever you want for your individual links. pb&j 06-06-2003, 06:32 AM you can use some css coding. example... <style type="text/css"> a.part1:hover{styles here;} a.part2:hover{styles here;} a.part3:hover{styles here;} </style> then in your link coding... <a href="page1.html" class="part1"> click </a> <a href="page2.html" class="part2"> click </a> <a href="page3.html" class="part3"> click </a> get the idea? |