PDA

View Full Version : And yet again.... Dreamweaver


Jethro
October 6th, 2002, 07:38 PM
Is it possible to set document size to the actual size of an IE window. Realise there's different settings for IE, but am aiming at 600x800 as default with stretching (which is almost working), and it's pretty much guess work to get it to the right size:confused:

degsy
October 6th, 2002, 08:45 PM
not sure what you mean.
If you want a Page to fit a certain size, then I usually take the Scrren Width and minus 40pixels.
So for 640x480
<table width="600">


Using a Table to contain your data will allow you to fill the screen.
<table width="100%">
providing that your content is not too wide, the table will always stretch to the size of the screen.

Jethro
October 7th, 2002, 03:25 AM
Thanks yet again degsy;)