Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | [F] Table Problem (21st Feb 08 at 10:12pm UTC) | | Forum: http://freunion.vforums.co.uk
Description: I need help with this Table, I cant seem to get the boxes around the text, It is supposed to be a table in table, you know what I mean if you go to my forum and on the side it says (Staff Legend)
Code: - <table cellpadding="2" cellspacing="1">
- <tr>
- <td>
- <b>Staff</b>
- </td>
- <td>
- <b>Color</b>
- </td>
- </tr>
- <tr>
- <td>
- Founder/Admin
- </td>
- <td>
- <font color=white>White</color>
- </td>
- </tr>
- <tr>
- <td>
- Admin
- </td>
- <td>
- <font color=Grey>Grey</color>
- </td>
- </tr>
- <tr>
- <td>
- Global Moderator
- </td>
- <td>
- <font color=Green>Green</color>
- </td>
- </tr>
- <tr>
- <td>
- Moderator
- </td>
- <td>
- <font color=Blue>Blue</color>
- </td>
- </tr>
- </table></center>
-
Thanks, Darkmage | |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Table Problem (21st Feb 08 at 10:57pm UTC) | | I think this is what you want....
Code: - <table cellpadding="2" cellspacing="1" class="border">
- <tr>
- <td>
- <b>Staff</b>
- </td>
- <td>
- <b>Color</b>
- </td>
- </tr>
- <tr>
- <td>
- Founder/Admin
- </td>
- <td>
- <font color=white>White</color>
- </td>
- </tr>
- <tr>
- <td>
- Admin
- </td>
- <td>
- <font color=Grey>Grey</color>
- </td>
- </tr>
- <tr>
- <td>
- Global Moderator
- </td>
- <td>
- <font color=Green>Green</color>
- </td>
- </tr>
- <tr>
- <td>
- Moderator
- </td>
- <td>
- <font color=Blue>Blue</color>
- </td>
- </tr>
- </table></center>
-
| |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Table Problem (22nd Feb 08 at 12:43am UTC) | | Nope it turnes the background of it to blue, I want the background to be black and I want boarders around the text like this would be:
Staff |
Color |
Founder/Admin |
White |
Admin |
Grey |
Global Moderator |
Green |
Moderator |
Blue |
Thats how with the boarders around them.
EDIT: but without that big huge space in the Staff column. | |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Table Problem (22nd Feb 08 at 12:50am UTC) | | lol ok,
If no one does this, I'll code it tomorrow! | |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Table Problem (22nd Feb 08 at 12:54am UTC) | | ok thanks. | |
|
FreeUS New Member
Posts: 14 Status: Offline Gender: Male Location: California Joined:
pm | Re: Table Problem (23rd Feb 08 at 2:37am UTC) | | Is this what you want?
Code: - <table border="5" cellpadding="2" cellspacing="1" bgcolor=black >
- <tr>
- <td>
- <b>Staff</b>
- </td>
- <td>
- <b>Color</b>
- </td>
- </tr>
- <tr>
- <td>
- Founder/Admin
- </td>
- <td>
- <font color=white>White</color>
- </td>
- </tr>
- <tr>
- <td>
- Admin
- </td>
- <td>
- <font color=Grey>Grey</color>
- </td>
- </tr>
- <tr>
- <td>
- Global Moderator
- </td>
- <td>
- <font color=Green>Green</color>
- </td>
- </tr>
- <tr>
- <td>
- Moderator
- </td>
- <td>
- <font color=Blue>Blue</color>
- </td>
- </tr>
- </table></center>
-
-
| |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Table Problem (23rd Feb 08 at 10:06pm UTC) | | Yep thats it thanks ^_^. The 5 was thick so I put it to a 2. | |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: [F] Table Problem (23rd Feb 08 at 11:32pm UTC) | | Thanks FreeUS | |
|