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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with aligning to the TOP of the screen

Status
Not open for further replies.
Make sure the BODY border, padding and margin are all set to 0 as well.


Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
For example, you can use this style sheet style:
Code:
BODY {
   border-top: 0px;
   margin-top: 0px;
   padding-top: opx;
}

I only set the top parts in case you want the others to retain their values.


Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Hi Tracey.. I have those set but there is atill the gap.

Anyone else?

Thanks!!
 
You have a freaky <br /> just hanging in there in between table tags. Not knowing what to do with that, browsers render it before the table...
Code:
    <td height="100" valign="top"><img src="../images/header.jpg" width="710" height="100" border=0 usemap="#Map2"></td>
  </tr>
  [red][s]<br>[/s][/red]
</table>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top