I use Frontpage for my website design, and when I create a hyperlink and remove the underline text decoration, it looks fine in IE, but in Firefox, it still shows the link underlined. I've checked the code and it says Text Decoration=none. Any way to get rid of that underline for Firefox browsers?
By default, FrontPage will create this code below. Despite specifying your text-decoration:none, the underline will still appear on Firefox. <a href="link.html"><span style="text-decoration: none">YOUR LINK</span></a> Code (markup): To fix that, you will need to modify the code into something like this: <a style="text-decoration: none" href="link.html">YOUR LINK </a> Code (markup):