Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Problem with Nav in IE 7 + IE8 – I’m on aMac so can’t test it, can you help?


@mercime
Participant

@mercime

@rossagrant you can see how your site is rendered in different IE versions via http://ipinfo.info/netrenderer/

[ edit ] Some future-proof tricks to use with IE

1. Add `width` to any float, e.g.

`.navwrap {
float: right;
width: 475px;
}`

2. Relative and Absolute Positioning, e.g.

`#header { position: relative; }

.navwrap {
position: absolute;
top: 5px;
left: 8px; // edit – ooops. should be –>> right:8px;
}`
[ /edit ]

Skip to toolbar