[solved] how to make page to fit in resolution 800 by 600 px??
[solved] how to make page to fit in resolution 800 by 600 px??
I dont want auto screen fit for my page. i want only in resolution 800 by 600 px? How to make it??
Last edited by nepsguy on Thu Feb 07, 2008 6:44 am, edited 1 time in total.
Re: how to make page to fit in resolution 800 by 600 px??
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??
In your Layout Stylesheet
or with min-height min-width or max-height max-width
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;
Re: [solved] how to make page to fit in resolution 800 by 600 px??
thank you very much for the information.