LiveWire Network Peer Answers Peer Support Teen Forums Tech Forums College Forums 591 users online 225156 members 1205 active today Advertise Here Sign In
TeenCollegeTechPhotos | Quizzes | LiveSecret | Memberlist | Dictionary | News | FAQ
Member Spotlight
Velico112
Interests: Wrestling, music, movies, video gam...
Mood: Pleased
You have 1 new message.
Emergency Help
Until you sign up you can't do much. Yes, it's free.

Sign Up Now
Membername:
Password:
Already have an account?
Invite Friends
Active Members
Groups
Contests
Moderators
7 online / 22 MPM
Fresh Topics
  LiveWire / Technical Forums / Web Design & Search Engine Optimization / Adding Reply

Adding Reply
Archived Topic: It will not be bumped to the top of the forum.
Topic Anyone good at html, or know an html site?
Membername   Not a member? Sign Up Free (takes 20 seconds)
Password   Forgotten your password?
Post

Font:   Size:   Color:

FAQ Keyword Search:
Post Options
Favorites Manager
Notify me of new replies to this topic by email
Notify me of new replies to this topic by private message
Original Post
Kamalli Posted at 3:06 pm on May 10, 2008
I am wanting to make a 3 columned table for one of my websites. I want it to look similar to this one below. IF anyone can give me a link to a site or if you can help directly it would be great.

http://img.photobucket.com/albums/v655/Kigertaru/More pictures/Tablesftw.jpg

Replies
JeremyM Posted at 6:15 am on May 12, 2008
Quote: from rand0mguy at 12:18 am on May 11, 2008

tables? wtf??? http://www.w3schools.com/ Learn css + HTML etc

That's the most correct thing I've ever seen you post!

rand0mguy Posted at 9:24 pm on May 10, 2008
oh an btw if u want a 3 col layout try this
Code:
<div id="wrap">
<div id="left_column" style="float:left;">
<p>text goes here</p>
</div>
<div style="float:right;">
<div id="middle_column" style="float:left;">
<p>text here</p>
</div>
<div id="right_column" style="float:right;">
<p>text....</p>
</div>
</div>
</div><!-- end of #wrap-->
rand0mguy Posted at 9:18 pm on May 10, 2008
tables? wtf??? http://www.w3schools.com/ Learn css + HTML etc
allsmiles Posted at 3:59 pm on May 10, 2008
Let me actually give it correctly.
Code:

<table cellspacing=2 style="border: solid 1px #000000;">
<tr>

<td bgcolor="palishblue?whateveryouwant" style="height: 20px;!important width: 15%;">Text blanked out</td>

<td rowspan=2 valign=top>BIG TEXT!</td>

<td style="border: none;!important"> </td>

</tr>

<tr>

<td valign=top> Medium Text!</td>

<td valign=top> small text!</td>

</tr>

</table>


Any discrepancies I blame on the fact that I'm drunk right now.

hateitandloveit Posted at 3:10 pm on May 10, 2008
Ready?

<table width="100%">
<tr>
<td valign="top" width="20%">
Left side.
</td>
<td valign="top" width="60%">
Middle.
</td>
<td valign="top" width="20%">
Right side.
</td>
</tr>
</table>

Enjoy.

All 5 previous replies displayed.