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
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>
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.
lol ok,
If no one does this, I'll code it tomorrow!
ok thanks.
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>
Yep thats it thanks ^_^. The 5 was thick so I put it to a 2.
Thanks FreeUS