Click to See Complete Forum and Search --> : valid but IE issues


Sheldon
03-17-2007, 10:55 PM
I have this site design. In FF or any moz browser it displays right in most cases.

In IE 6 the mail logo apears to high and them menu li's take 100% of the toal width.

In Moz their both fine.


But in a Moz browser the dorpdown menu (under products) the menu displays wrong, and in IE 6 it is almost right ( to far left).

Can any one help me with these to issues.


http://metalimage.inboxdesign.co.nz


Ta

Sheldon

Fang
03-18-2007, 07:53 AM
Consider changing the positioning to absolute, or the headerlogo as a background image in #header and using padding to layout the other images:#headerlogo {
position: absolute;
top: 5px;
left:30px;
width: 118px;
height: 168px;
}

#headertext {
position: absolute;
top: 50px;
left:170px;
padding: 0;
margin: 0;
}

#headerrandom {
position: absolute;
top: 20px;
left:780px;
padding: 0;
margin: 0;
}

menu:<!--[if IE]>
<style type="text/css">
margin-left:45px !important; margin-left:40px;
</style>
<![endif]-->and remove this:* html #navigation a {
width: 120px;
}

Sheldon
03-18-2007, 02:24 PM
Thanks Fang, That worked for everything except in IE 6 the menus are now 100% of the screen.

Any ideas on getting those widths right?


Thanks again.

Centauri
03-18-2007, 05:17 PM
Try adding float:left to #navigation a

Cheers
Graeme

Sheldon
03-18-2007, 05:58 PM
perfect thanks!