Hi there, I would like to add a hover underline to the code below. <a href="http://www.site.com" style="text-decoration:none; font-weight:bold;color:#0063DC; font-size:13px">Home</a> HTML: I have to add it to this code not to the CSS sheet thanks for your help
To my knowledge, you can't. I'm guessing that's for html email. It would be more user friendly to not remove it in the first place. cheers, gary
You can't really do it like that with an in-line style command, you have to make a style sheet or some style rules at the top of the page and give your anchor a class or id.
you would have to create a css style sheet when that is done you would need to make a div in the html say for example <div id="nav"> <a href="http://www.site.com" title="site">Home</a> </div> then in the css stlyes make this #nav a{ text-decoration:underline; font-weight:bold; color:#0063DC; font-size:13px; } thats what i would do, i hope this helps you
sorry i think the code should have been #nav a:hover{ text-decoration:underline; font-weight:bold; color:#0063DC; font-size:13px; }
thanks for your help. Since I already have a style sheet I just removed the "text-decoration:none" from the code and it's working fine. yes but I want to do A Hover style. just like here http://www.echoecho.com/csslinks.htm look under "The link from the above example would look like this: LOOK HERE "