Jump to content

question about columns


Guest dhuang90

Recommended Posts

Guest dhuang90

How do I create different columns on a website? Im looking to create something similar to www.alluc.org, where the left side is a list of links, the right side is new additions and the main text is in the center. Thanks

Link to comment
Share on other sites

How do I create different columns on a website? Im looking to create something similar to www.alluc.org, where the left side is a list of links, the right side is new additions and the main text is in the center. Thanks
<table> <tr> <td> Put your menu links here </td> </tr> <tr> <td> Put your main text here </td> </tr> <tr> <td> Put your new additions here </td> </tr></table>It may satisfy you.
Link to comment
Share on other sites

technically, the correct way to go is with css and div's.and its much easier to control than tables too.you need to use the float attribute in css, to float the left coloumn to the left, and the right column to the right.it then gets a bit tricky on whether you want a centered page, or a absolute positioned page, as you'll either need a containing div, or to specify certain widths and positions.:)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...