View Full Version : HTML and Demensions?


hYperChIC4u911
07-05-2004, 02:40 AM
Ok, let's say that I making the page that goes inside my iframe ok, and I want to make it a certain size like 300 X 300. Is there somehow I can turn that into HTML so that I can put it in my HTML editor and the page will be 300 X 300? An answer would be appreciated!

-Jordan

Intuition_Lorie
07-05-2004, 02:52 AM
I'm not really sure how you would do that... I would only be able to tell you how to size your iframe.

Alcy
07-05-2004, 04:03 AM
If you make your iframe 300 pixels wide - <iframe width="300" height="300" src="PAGE.HTML"> - your page will automatically resize itself to 300px wide (provided you haven't specified otherwise). As for the height, you'll just have to make sure that you don't go over 300 pixels.

You can only resize images to exact pixels like that - <img src="IMAGE.GIF" width="300" height="300"> - not entire pages.

hYperChIC4u911
07-05-2004, 07:09 PM
OK, so if I made the page where the content fits inside 300 X 300 it should rezize itself?