Hello people,
I don't have a clue why my CSS is not working properly in IE... The menu at the left does not fire the click even when it shows the right destination file in the status bar of the browser.
It works as expected in firefox.
Anyone knows why this happen? And how could it be solved?
The site in question is:
http://www.cahorminsas.com
Thanks in advance,
CSS does not work in IE... Works like a charm in FireFox
Firefox often "tidies" web coding errors when it thinks it understands your intention. You need to place your anchors INSIDE the table for IE.
For example, instead of this:
For example, instead of this:
Try this:<td valign="top" style="height:20px;" width="100%" colspan="2"><a href="?nosotros"><table width="140" height="22" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666"><tr><td height="22" bgcolor="#FFFFFF"> <span class="nav_table">La Institución</span></td></tr></table></a></td>
<td valign="top" style="height:20px;" width="100%" colspan="2"><table width="140" height="22" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666"><tr><td height="22" bgcolor="#FFFFFF"> <a href="?nosotros"><span class="nav_table">La Institución</span></a></td></tr></table></td>