Hi again. I made a post yesterday regarding a text encoding issue, in which I was able to figure out not too long after. Today I come to you all with a few IE6 issues, but I will start with the one I am having trouble figuring out on my own.
Problem: [list]The navigation that uses CSS sprites is displaying very oddly in IE6, only showing a rehash of the Home link.[/list:u]
Here's how it looks in IE6: http://www.adgrouponline.com/redesign/help/bad_ie6.png
Here's how it should look: http://www.adgrouponline.com/redesign/help/good_ff.png
Actual site: http://www.adgrouponline.com/redesign/index2.htm
I am trying to get the site up in a few hours to meet my deadline. With that said, I'm standing by patiently for anyone willing to help. Much appreciated!
I just tried a couple of the other pages in IE NetRenderer and they all come up stuck on the home tab. Off the top of my head the first thing I would suggest is to add display: inline to your list items.
I'm on a Mac here, but I'm pretty sure your problem is IE6s inability to cope with absolute positioning. After digging out this article http://www.satzansatz.de/cssd/onhavinglayout.html you could try display: inline-block or adding this to your head
Problem:
[list]The navigation that uses CSS sprites is displaying very oddly in IE6, only showing a rehash of the Home link.[/list:u]
Here's how it looks in IE6:
http://www.adgrouponline.com/redesign/help/bad_ie6.png
Here's how it should look:
http://www.adgrouponline.com/redesign/help/good_ff.png
Actual site:
http://www.adgrouponline.com/redesign/index2.htm
The CSS code
I am trying to get the site up in a few hours to meet my deadline. With that said, I'm standing by patiently for anyone willing to help. Much appreciated!
Off the top of my head the first thing I would suggest is to add display: inline to your list items.
#navigation li {display:inline;
float:left;
}
Try this: