Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fit screen question

Status
Not open for further replies.

killbuzz

Technical User
Mar 21, 2001
103
US
I was wondering how i can get HTML page to fit screen like this web site It fits the left if you view it 1024 by 768. When using flash with DW it has an option that allows you to fit screen but with HTML it doesnt give me that option. Can someone help..


Thanks
 
Not sure what you mean here, do you just want your site to be fitting the page at 1024 * 768? Or do you want it to be able to resize to fit other resolutions?

 
yeah i would like that, But you see how the left side of the site goes all the way to the left.. It doesnt have any space..
 

<TABLE WIDTH=782 BORDER=0 align=&quot;center&quot;CELLPADDING=0 CELLSPACING=0>

> need more info?
:: don't click HERE ::
 
Not following you. Maybe you need to re-word the question?

But he has a margin of 0 on his pages, like this:

<style type=&quot;text/css&quot;>
<!--
body { margin:0;}
-->
</style>
 
&quot;I was wondering how i can get HTML page to fit screen like this web site It fits the left if you view it 1024 by 768 &quot;

---this is NOT how u want to design your page...the link u provided is NOT centered nor it stretches across the the screen....it is only compatible with one reslution!
perhps will fit your needs better!
All the best!

> need more info?
:: don't click HERE ::
 
try adding this in your body tag

LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 RIGHTMARGIN=0

fully flushed to the top left

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
ooOOOOoaaaaa :)

Modify-->Page Properties [Margins] @ zero

(which is exactly what deecee suggested)
....if this is what you want....!
All the best!

> need more info?
:: don't click HERE ::
 
Acutally:

LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 RIGHTMARGIN=0


is deprecated ( w3c.org ). Use CSS when making page margins.

Put them in your head tag:
Code:
<head>
<title></title>
<style type=&quot;text/css&quot;>
<!--
body { margin:0;}
-->
</style>
</head>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top