Controlling the size of a page

liunx

Guest
can i control the size of a page that I am constructing?<br />
what I want to do is make a linked page smaller than the full screen size of standard pages - a bit like the smaller pop up pages that you sometimes get - I dont want to have to use scripts if possible.<br />
Can I simply specify the size of the page as an attribute within the Body tag and if so how is this done?<br />
Thanks<!--content-->You can use a table, like this;<br />
<br />
<br />
<table width=100% cellspacing=0 border=0 cellpadding=0><br />
<tr><br />
<td align=center><br />
<br />
<table width=50% cellspacing=0 border=0 cellpadding=0><br />
<tr><br />
<td> Your text here </td><br />
</tr><br />
</table><br />
<br />
</td><br />
</tr><br />
</table><!--content-->
 
Back
Top