PDA

View Full Version : Window size


jhereford
07-06-2006, 12:12 PM
Can anyone tell me how to create a fixed window size in Dreamweaver?

Thanks
JH

synthetic
07-06-2006, 05:38 PM
do mean a fixed window for the web page once its published or just within Dreamweaver while you working?

if its the first... I do think you may have to use some javascript for that and not sure if Dreamweaver has coding built in for that option.

you can try this for instance....
<script>
self.resizeTo(100,200);
</script>

first thing in the head of the html... 100 is width and 200 is height... adjust as needed

Basefo
08-03-2006, 05:36 PM
Great information