vote up 0 vote down star

I am building a website for a client who wants their page to zoom perfectly in IE7. I have finally managed to get around most of the bugs, but one.

When you zoom in on the page, it centers fine, but then when you go to another page, the page renders and displays the top left of the page. I need to make it render centered. I know it is possible (the client keeps comparing it to bbc.co.uk which has this feature).

Does anyone know of a fix I can add to my body tag or something?! Let me know if you need to see any code.

flag

2 Answers

vote up 1 vote down

Wrapping your site in a container div;

<div id="wrapper">
...
</div>

and the css;

#wrapper {
margin: 0 auto;
width: XXXpx;
}

applied to it has the desired effect.

(Where width represents the width of the layout).

Zooms centered, and when moving through pages in the zoomed state stays centered. Tested in ie7 on VMware XP.

link|flag
vote up 0 vote down

I love comment text

## Heading ##

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.