Links in Firefox

  • Thread starter Thread starter Byron Sharp
  • Start date Start date
B

Byron Sharp

My website (http://www.funkyactionman.com) has the links on the main
page not underlined.

They show as not underlined in internet explorer but in fireox they
show as underlined ???

Does anyone know how to stop this ?
 
Your style rule is applied to the <span> tag. FF is understandably confused
by this. It should be applied to the <a> tag, not the <span> tag. In other
words, not this -

<a href="contact/contact.htm"><span style="text-decoration: none">
<font color="#2020FF">
<img src="images/300.gif" _base_target="_parent" border="0" width="48"
height="48">
<br>
</font></span><font color="#2020FF">
<span style="text-decoration: none">Contact</span></font></a>

but this -

<a href="contact/contact.htm" style="text-decoration: none">
<font color="#2020FF">
<img src="images/300.gif" _base_target="_parent" border="0" width="48"
height="48">
<br>
</font><font color="#2020FF">
Contact</font></a>

This being the case, there is no reason at all for those spans, which I have
removed as you can see.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top