HI all, I am teaching myself web design and I am only just getting round to the whole FF / IE css issues.
I have a menu system that works great in IE / but not FF
and I was hoping someone could point me in the right direction as to how to fix the problem.
css code for menu system
<style type="text/css">
#tabs {
float:right;
width:100%;
font-size:93%;
line-height:normal;
border-bottom:1px solid #666;
margin-bottom:1em; /*margin between menu and rest of page*/
overflow:hidden;
}
#tabs ul {
margin:0;
padding:10px 10px 0 0px;
list-style:none;
}
#tabs li {
display:inline;
margin:0;
padding:0;
}
#tabs a {
float:right;
background:url(http://localhost/www.si.com/members/images/left.png) no-repeat left top;
margin:0;
padding:0 0 0 6px;
text-decoration:none;
}
#tabs a span {
float:right;
display:block;
background:url(../images/right.png) no-repeat right top;
padding:6px 15px 4px 6px;
margin-right:2px;
color:#FFF;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span {float:none;}
/* End IE5-Mac hack */
#tabs a:hover span {
}
#tabs a:hover {
background-position:0% -42px;
}
#tabs a:hover span {
background-position:100% -42px;
}
</style>
************Here is the menu*******************
<div align="center"><table height="54" width="975px" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="bottom"class="header"><font color="#2a4c79" face="Verdana, Arial, Helvetica, sans-serif" size="3"> <b></b></font></td>
<td align="right" valign="bottom"><div id="tabs">
<ul>
<li></li>
<li><a href="#"><span>menu1</span></a></li>
<li><a href="#"><span>menu2</span></a></li>
<li><a href="#"><span>menu3</span></a></li>
<li><a href="#"><span>menu4</span></a></li>
<li><a href="#"><span>menu5</span></a></li>
<li><a href="#"><span>menu5</span></a></li>
</ul></div></td>
</tr>
</table>
</div>
When i view the menu in IE, all is great, but when viewing in FF, i get "DOTS" - like its showing me its a list order ? but Im wracking me brains on how to remove the "DOTS"
I have included both images as a preview to the problem,