Have you thought about the page width being a percentage?
you would probably need to nest the website inside a frame and set the width of the frame.
ie. (can go in head or body)
HTML Code:
<frameset cols="100%">
<frame name="main" id="main" src="website.htm" />
</frameset>
then you would need to use css in the head section to size the frame
with something like
HTML Code:
<style type="text/css">
#main{
width:100%;
}
</style>
i hope this works
Last edited by goldingh99; 11-13-2005 at 04:27 PM..
|