No offense, but there is no bug that I know of that isn't covered by the solutions at Position Is Everything. IE supports XHTML 1.0 as well as the others, I code in XHTML 1.0 Strict every day with no problems in IE. However I don't know that any of the current crop of browsers has support for XHTML 2.0 as yet - for now 2.0 is vapor.
What do you want to use the <object> for anyway ?
In IE 6 your upper right nav is way off the page, so whatever solution you used isn't working. Chris gave you a solution.
I don't quite understand the logic of putting an image inside a header tag.
Rather than using images for the dots in your upper right menu, use the proper ascii character - · works. This eliminates the image completely.
On the image you placed in the H1 tags, part of the problem is that you didn't include the images dimensions in your HTML, which you should ALWAYS do. Otherwise, the browser will size for you !
Your "navigation icon' could be better used as a background on the <a>, adjust position with margins and padding.
I took out your 'dot' images and replaced them with the ·. I also changed your CSS a bit:
Quote:
div#page_header ul {
float: right;
display: inline;
margin: 25px 50px 0px 0px;
}
div#page_header ul li {
/*float: left;*/
display: inline;
padding: 0;
margin: 0;
}
|
There's no reason to float the UL AND the list. The menu sits where it should.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|