Page 1 of 1
[solved] how to make page to fit in resolution 800 by 600 px??
Posted: Thu Jan 31, 2008 8:26 am
by nepsguy
I dont want auto screen fit for my page. i want only in resolution 800 by 600 px? How to make it??
Re: how to make page to fit in resolution 800 by 600 px??
Posted: Thu Jan 31, 2008 6:50 pm
by hexdj
You only need to give it a fixed width, the height I wouldn't recommend to fix it because lots of people install toolbars and all kinds of crap so the height varies from browser to browser and user to user, but basically all you need to have it fixed for 800 is give it a width of 770px. That's all.
Re: how to make page to fit in resolution 800 by 600 px??
Posted: Sun Feb 03, 2008 10:56 am
by hinti
In your Layout Stylesheet
Code: Select all
/* center wrapper, min max width */
div#pagewrapper {
border: 0px solid black;
margin: 0 auto; /* this centers wrapper */
width: 800px;
height: 600px;
padding-top: 15px;
or with min-height min-width or max-height max-width
Re: [solved] how to make page to fit in resolution 800 by 600 px??
Posted: Thu Feb 07, 2008 6:52 am
by nepsguy
thank you very much for the information.