1

Topic: Website General Resolution

Hey all..

Is there a way to make the entire website look bigger.. exactly as if we zoomed the page to 110% in Internet explorer or any browser.

Is it in a CSS file ? is it a one place edit.. or too much work ? Please can someone point me in the right direction..

Thank you all.

2

Re: Website General Resolution

You would have to edit the the homepage and content css files located in your media folder. Change the width to 100% and it will expand or collapse with the viewers browser. However you will have to change everyone so that the site will work the same for all images and content areas.

3

Re: Website General Resolution

thanks kwatts22, so as i was figuring it out, it's too much work to edit all css and start modifying %s and sizes and width..
but i found a quick and easy way, is to create a zoom.css file and put it with the others under media folder of the template, that has in it only this small code:
body {
zoom: 110%;
}

then in content.css add this @import url("zoom.css"); after all the imports.

zoom value can be put to whatever u would like to zoom, and it was great under Chrome, but not in IE as it's showing a horizontal scrollbar also sad

4

Re: Website General Resolution

no problem...happy to see that you got it working and thanks for posting the follow up. I didn't think about adding a zoom page like that.