View Full Version : size of a page


elias
12-05-2004, 04:02 PM
how do i mame my page a certain width?

MaGiCSuN
12-05-2004, 04:04 PM
what do you mean ?
are you talking about pop-ups ?

Love,
Mirna

elias
12-05-2004, 07:06 PM
nope not a popup i have a iframe where im sticking pages into and i need to make the page width a certain size so that it wont have a horizontal scrollbar how do i do that? thanks

pb&j
12-05-2004, 07:34 PM
a webpage is only as big as (or as small as) the contents being shown on it.

perhaps put the contents into a div of fixed width?

<div style="width:100px;">
contents here
</div>

change the 100 value to your desired effect.

elias
12-06-2004, 01:19 AM
thanks i will have to try that