Jump to content

  • Free consultations and support
  • Live chatClick Here for Live Chat
  • Call ico 1888-906-1888
    Phone support: Open

    Ready for your call :)

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams

    Phone support: Closed

    We are back in: 1h 20m

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams


Table Problem


  • Please log in to reply
&nsbp;

#1 Dr. Know Nothin

Dr. Know Nothin

    Apprentice Designer

  • Designer
  • 1 posts

Posted 27 February 2004 - 10:00 PM

Ok now I have a problem the page http://www.sonicfighters.com/sffans/ everything is off looking and I made everything with tables. How can I make everything aligned?

#2

  • Guests

Posted 02 March 2004 - 01:27 AM

don't quite understand the problem, everything looks kind of ok. but if you like you can experiment with <td>'s and <table>'s properties such as align and valign. If I misunderstood something ,please, correct me.

#3 Crazy Bat

Crazy Bat

    Apprentice Designer

  • Designer
  • 75 posts

Posted 07 March 2004 - 10:40 PM

As an alternative, perhaps you can try using <div> for your content instead of <table> and css to lay it out.

Example;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta />
<style type="text/css">
#container {
width: 100%;
margin: 0px;
}

#header{
margin: 0px;
}

#content {
margin-left: 200px;
margin-right: 200px;
}

#leftbar {
float: left;
width: 200px;
margin: 0;
}

#rightbar {
float: right;
width: 200px;
margin: 0;
}

#footer {
clear: both;
}
</style>
</head>
<body>
<div id="container">
<div id="header"> </div>
<div id="leftbar"> </div>
<div id="rightbar"> </div>
<div id="content"> </div>
<div id="footer"> </div>
</div>
</body>
</html>

Play with this layout a bit and you'll understand how it works. It becomes much easier to understand once you get your head around using this method.

Good luck! :D
Crazy Bat Designs
Home of the phpBB WASO
Helping You Reach The MOST People Possible




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users