Currently my hyperlinks are orange on a black backgorund, however I want to change 1 hyperlink to blue, when ever I change it using front page, ALL links change to blue. SO can anyone tell me how to change the colour of 1 hyperlink that will not effect the other links?
you are trying to change in CSS style, if you want to make changes only in 1 link, you have to change colour code within the speciafic hyperlink code e.g. <a href=http://.... >
yes your are right but in future if u need some more link like this then u cannot give color to link , easy way to do is to make the css class.
I'd go with htmlmaster's solution. Make a new class as in <a class="odd" href="http://...">link text</a> and then style the a.odd class in CSS with a.odd {color:green} or a.odd:link {color:green} of you want the link to look like the rest on hover and once visited. That way he can reuse a.odd on another link or on another page and change it quite easily if he wants a different color.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> a:link { color:#f00; } #footerlink { color:#000; } </style> </head> <body> <ul> <li><a href="#">link 1</a></li> <li><a href="#">link 2</a></li> <li><a href="http://www.example.com" id="footerlink">Google Link</a></li> <li><a href="#">link 3</a></li> </ul> </body> </html> HTML: I think this should work. You can change the id of it...