[css-d] Navigation being hidden in IE

2007-04-18 Thread Phil Turner
Hi Everyone
Site validates ok but having a positioning problem in IE

The image boxes should be below the navigation in IE they are lying  
over the top

ALSO need some help to push the footer below everything I've read a  
few tutorials on this but no success
I've found putting spacers or returns in the main content pushes it  
down but this doesnt seem the right solution
if I move the div outside the wrapper that fails also can someone  
give me a few pointers thanks

SITE IS HEREhttp://www.philturner-uk.com/kruger/






Phil Turner
FREELANCE DESIGNER
TEL: 0161 439 1669
Chartered Graphic Designer MCSD  BA Hons
[EMAIL PROTECTED]
http://www.philturner-uk.com
V I S I T  M Y  D E S I G N  B L O G
http://www.philturnerdesigner.blogspot.com/

NEW BOOK - YOUR PLANET NEEDS YOU
http://www.yourplanetneedsyou.org


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Navigation being hidden in IE

2007-04-18 Thread Gunlaug Sørtun
Phil Turner wrote:
 The image boxes should be below the navigation in IE they are lying 
 over the top

An old IE 'float won't clear float' bug.
Add...

* html #leftimageboxone{
float: none;
}

...after existing #leftimageboxone declarations.

To cure header-problems in IE6, add...

#header img {
display: block;
}
#topimaged {
margin-right: -3px;
}

 ALSO need some help to push the footer below everything I've read a 
 few tutorials on this but no success

Delete the height on rightcolumn, or change it to...

#rightcolumn {
height: auto;
}

...as good browsers won't let a container grow beyond declared height.

 http://www.philturner-uk.com/kruger/

Maybe a good idea *not* to use pixels for font-size and line-height, and
*not* fix size on all containers..?

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Navigation being hidden in IE

2007-04-18 Thread Phil Turner
Thanks for the help Gunlaug
The float is still not clearing shouldnt the navigation div push the  
image divs down?

although the footer clears now :-)  Thanks

 http://www.philturner-uk.com/kruger/





Phil Turner
FREELANCE DESIGNER
TEL: 0161 439 1669
Chartered Graphic Designer MCSD  BA Hons
[EMAIL PROTECTED]
http://www.philturner-uk.com
V I S I T  M Y  D E S I G N  B L O G
http://www.philturnerdesigner.blogspot.com/

NEW BOOK - YOUR PLANET NEEDS YOU
http://www.yourplanetneedsyou.org


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/