Page screws up

admin

Administrator
Staff member
I've put together a basic page at <!-- m --><a class="postlink" href="http://www.freewebz.com/revert/itc_home.htm">http://www.freewebz.com/revert/itc_home.htm</a><!-- m --> for reference. In the white space where i add content, if this space stretches due to inserting too much text, all my graphics leave gaps behind either vertically or horizontally. Can anyone show me some coding or offer a few pointers on the correct way to avoid this? Thanks for any help.<!--content-->ive just opened your page and looked at the source and your main td is stretchable, ive putten a table around it so it wont stretch up.<br />
<br />
here's the code:<br />
<br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<LINK REL=STYLESHEET TYPE="text/css" HREF=http://www.htmlforums.com/archive/index.php/"itc-style.css"><br />
</head><br />
<br />
<body bgcolor="#FFFFFF" text="#000000"><br />
<table width="760" border="0" cellpadding="0" cellspacing="0"><br />
<tr> <br />
<td colspan="4" height="95" valign="top"> <br />
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="logo.jpg"><br />
<tr> <br />
<td width="281" height="5"></td><br />
<td width="404"></td><br />
<td width="66"></td><br />
<td width="9"></td><br />
</tr><br />
<tr> <br />
<td height="62"></td><br />
<td valign="top" colspan="2"><img src=http://www.htmlforums.com/archive/index.php/"tplus-banner.gif" width="468" height="60"></td><br />
<td></td><br />
</tr><br />
<tr> <br />
<td height="9"></td><br />
<td></td><br />
<td></td><br />
<td></td><br />
</tr><br />
<tr> <br />
<td height="19"></td><br />
<td valign="top"><font color="#FFFFFF">Home <font size="1">?lt;/font>About <br />
us <font size="1">?lt;/font> Advertise <font size="1">?lt;/font> Contact <br />
Us <font size="1">?lt;/font> Disclaimer<font size="1"> ?lt;/font> Links</font></td><br />
<td></td><br />
<td></td><br />
</tr><br />
</table><br />
</td><br />
</tr><br />
<tr> <br />
<td width="150" rowspan="4" valign="top"> <br />
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="navbar.jpg" bgcolor="6079A5"><br />
<tr> <br />
<td width="150" height="455"></td><br />
</tr><br />
</table><br />
</td><br />
<td width="20" height="22" valign="top"><img src=http://www.htmlforums.com/archive/index.php/"topcorner.jpg" width="16" height="15"></td><br />
<td width="569" rowspan="3" valign="top"> <br />
<table width="100%" border="0" cellpadding="0" cellspacing="0"><br />
<tr> <br />
<td width="569" height="456" valign="top"><br><br />
<br><br />
We are updating our site! Join now and visit often! <br />
<p>We can stream your audition/demo tape. View aSample video.(Requires <br />
QuickTime Player)</p><br />
<p>We are a new movie resource, with a growing database for film makers, <br />
producers, production companies, actors, cast and crew and people <br />
who want to get involved in making movies. </p><br />
<p>We offer a service that allows actors and crew to post personal <br />
information, resumes, photographs and demo tapes for movie producers <br />
to search our database to locate their cast and crew needs. You <br />
can search for the latest movie auditions and casting calls or browse <br />
the classifieds for movie related equipment </p><br />
<p>The CHAT ROOM is now open. Talk to people with the same interests <br />
as you... getting InTheCredits. Get in now while the room is new <br />
to receive the most efficient networking possible.</p><br />
<p></p><br />
<p></p><br />
<p></p><br />
<p></p><br />
<p></p><br />
<p><br><br />
<br><br />
<br><br />
<br><br />
</p><br />
</td><br />
</tr><br />
</table><br />
</td><br />
<td width="21"></td><br />
</tr><br />
<tr> <br />
<td valign="top" height="400">&nbsp;</td><br />
<td></td><br />
</tr><br />
<tr> <br />
<td height="34" valign="top"><img src=http://www.htmlforums.com/archive/index.php/"bottomcorner.jpg" width="16" height="15"></td><br />
<td></td><br />
</tr><br />
<tr> <br />
<td valign="top" height="18" colspan="3"> <br />
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="lwrbar.jpg"><br />
<tr> <br />
<td width="610" height="18"></td><br />
</tr><br />
</table><br />
</td><br />
</tr><br />
</table><br />
</body><br />
</html><!--content-->Thanks for your help. What parts of the code did you change? I don't really see. I need to take a look as it didin't quite work right, through my bottle table out of place. Thanks.<!--content-->open in dw and you see a green edge around yer center td, thats what they call a table<!--content-->yeah, i just pasted some text in there to test it and it just stretched like before?<!--content-->so set the tablewidth to a number instead of a percentage.<br />
<br />
by the way, if your doing html why dont you go learn it first.<br />
there a like a zillion ways to learn html in like 4 hours ( if you read on :) )<br />
its just the only sensible advise i can give you, simply drawing a layout in dw4 wont do after a while anymore.<br />
I remember myself in your situation, i was dropping a post for every f** piece of code i changed.<br />
<br />
If you learn the basics about html ( tables ) your halfway there, in the end most pages print html even hyper php sites and other serverside script driven sites.<br />
<br />
ok listen 1 tiny advise.<br />
<br />
Like you have a page:<br />
<html><br />
<head><br />
<title>blahy</title><br />
</head><br />
<body><br />
<br />
and now your going to want some tables in it to have a nice layout.<br />
<br />
lets start off with starting a table<br />
<br />
a table starting tag is <table> and you can define the propertys of the tables in that same tag.<br />
<br />
Like take the width:<br />
<table width="300"><br />
<br />
this will make the table 300 pix width<br />
<br />
if you work with % it works like this:<br />
<table width="100%"><br />
<br />
this makes the table width grow to a 100% of the whole page, so if your resolution is 1024 x 768 or something it will be that width.<br />
<br />
This any good?<!--content-->Thanks, i do have it like i want now. I actually do have some html experience though i haven't been designing for over a year now and to be honest i've forgotton a lot of it.<!--content-->
 
Back
Top