Well, first of all, the image is jumping so far to the left because of the <a href="http://www.positioniseverything.net/explorer/doubled- margin.html">a floating bug present in IE6</a>. Your left margin on #logo is doubled in IE6 because the #logo is also floated left.
Next, there is no reason to have the #logo floated at all because it is absolute positioned. When something is absolute positioned, floating does not apply to it. All you need to do is remove the following lines from #logo and you should be set. <pre> position: none; float:leftl </pre> Hope this helps! On Dec 29, 1:03 am, kksm19820117 <[email protected]> wrote: > Greetings all. > > I've got a serious problem with this site I'm working on:www.footyguru.com/ > . > > When viewed in IE6 at 1024x768, the logo jumps from the topleft to the > top center of the page. This doesn't happen in IE7 or FF. > > Could anyone point out what I'm doing wrong? --~--~---------~--~----~------------~-------~--~----~ -- You received this because you are subscribed to the "Design the Web with CSS" at Google groups. To post: [email protected] To unsubscribe: [email protected] -~----------~----~----~----~------~----~------~--~---
