Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Different results for nav in mozilla and IE

Status
Not open for further replies.

multichild

Programmer
Jan 28, 2006
76
GB
Hi,

I am trying to sort out a difference in appearence to my nav in IE and Mozilla.

Can somebody take a look and advise me?


Also the news on the left column works perfectly in IE but doesnt again in Firefox, this one is a lot more difficult, and if anybody can help I would be graetful.

Let me know what code you require if at all.

cheers

Lee

Accend Web Solutions

 
Wow, this was easy...
Code:
li a
{
text-decoration: none;
background-color: #590F2C;
color: #FFF;
padding: 0.3em 0.6em;
_padding: 1em;
border-left: 1px solid #fff;
}
Your second padding declaration is a hack that only IE can see. So IE applies big padding on the links, making the buttons big and other browsers apply small 0.3em top/bottom and 0.6 left/right padding to make them small. Either make normal padding 1em or stick to the little padding -- which ever you prefer.

As for your ticker question, you have a javascript error in FF, so you should be asking the guys in the forum216.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top