Help with CSS problem

versello

2[H]4U
Joined
Nov 19, 2003
Messages
2,061
Can anyone take a look into why FireFox displays my navigational menu fine, but not in IE?

My URL is http://www.versello.com/concept/. The problem is that the horizontal navigation menu will have buttons all the way on the very left, and buttons on the very right. The button on the very right is using float: right, but comes out screwy in IE. Thanks,
 
I looked at your CSS at it seemed overly complicated for what you're trying to do. I stripped it down [a lot] and put this together:

http://www.animeguru.com/designs/versellotest.html

Obviously, you'll need to put your images in where you want them, but using this as a simple template, you should achieve the effect you're looking for; plus it works in IE 5+

Hope that helps.
 
Also, this line is incorrect:

Code:
ul#navigation .articles a:hover, a:active {

That will define the style for all active anchor tags as well as hovering for the articles anchor.


I think you meant it to be:

Code:
ul#navigation .articles a:hover, ul#navigation .articles a:active {
 
Back
Top