Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 10-12-2010, 11:24 PM Tables Help Please
Banned

Posts: 408
Name: mushget
Trades: 0
im new to using tables and what im trying to do is have 1 large row with 1 large colomn under it on the left and 2 small rows on the right of it... any1 know how to do this? i honestly cant figure it out
mushget is offline
Reply With Quote
View Public Profile Visit mushget's homepage!
 
 
Register now for full access!
Old 10-12-2010, 11:43 PM Re: Tables Help Please
blue-dreamer's Avatar
King Spam Talker

Posts: 1,222
Location: Middle England
Trades: 0
Here's a basic 3 column table structure...

Code:
<table summary="summary of table contents">
<tr>
<th class="col1">Column 1 title</th>
<th class="col2">Column 2 title</th>
<th class="col3">Column 3 title</th>
</tr>
<tr>
<td>Column 1 content</td>
<td>Column 2 content</td>
<td>Column 3 content</td>
</tr>
</table>
Use the CSS classes to define your widths:

Code:
.col1 { width: 400px; }
.col2 { width: 100px; }
.col3 { width: 100px; }
__________________

Please login or register to view this content. Registration is FREE
blue-dreamer is offline
Reply With Quote
View Public Profile
 
Old 10-13-2010, 03:29 AM Re: Tables Help Please
Banned

Posts: 408
Name: mushget
Trades: 0
Thanks first ,I will have a try...
mushget is offline
Reply With Quote
View Public Profile Visit mushget's homepage!
 
Old 10-17-2010, 04:49 PM Re: Tables Help Please
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
Originally Posted by mushget View Post
im new to using tables and what im trying to do is have 1 large row with 1 large colomn under it on the left and 2 small rows on the right of it... any1 know how to do this? i honestly cant figure it out
and what exactly is a "large row" or a "large column"?
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 10-18-2010, 06:17 AM Re: Tables Help Please
Kelpie's Avatar
Skilled Talker

Posts: 82
Name: Andrew
Location: SW Scotland
Trades: 0
From the question, it sounds like you might mean something like this?

If so, the code used to create this is
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<style>
table {
    width: 600px;
    border-collapse: collapse;
}
#largeRow {
    background-color: #fcc;
}
#column {
    width: 400px;
    background-color: #cfc;
}
#smallRow1 {
    background-color: #ccf;
}
#smallRow2 {
    background-color: #ff9;
}
</style>
</head>

<body>
<table>
    <tr>
        <th colspan="2" id="largeRow">This is the large row</th>
    </tr>
    <tr>
        <td rowspan="2" id="column">This is the large column</td>
        <td id="smallRow1">This is the first small row</td>
    </tr>
    <tr>
        <td id="smallRow2">This is the second small row</td>
    </tr>
</table>
</body>
</html>
Kelpie is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Tables Help Please
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.34304 seconds with 12 queries