Does anyone have a code where it changes the link colors to black without an underline? (I seem to have lost mine) Thanks
<style type="text/css"> <!-- a, a:hover, a:visited{ color: #000000; text-decoration:none; font-weight:bold; } --> </style> .....hope this is of some help to u.
Or just create a text file, save it with the .css extension (warning: do not put ANY HTML code inside the stylesheet) and then link to the file in your HTML like this: <link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen"> Code (markup): Be sure to preceed the closing bracket with a space and forward slash if you're using XHTML. Like so: <link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen" /> Code (markup):
Works perfectly! Just what I was looking for. Thank you everyone I wish I had reps left for this 24 hours, but will do so once I can Cheers!