cinderheart218 wrote:Could you maybe go into a little more detail about how to make a table? I would like to see how that would look.
And would it be possible to add 'you own this pet' On it?
Thx for the help!
-Cinderheart218~♥
Sure! (You can't create a table on CS at the moment though, just on MA and some other sites) But I don't think you'd be able to add 'you own this pet' on it. Maybe if you can code in Php or something...I can't. Preview of a table at the end
1First of all, you need to write the table tags:
[table][/table]
2You can add an enter inbetween them for easier use...
[table]
[/table]
3Now to start making a table. For every row, you write the tr tags. (tr=table row)
[table]
[tr][/tr]
[/table]
4To add a 'cell' into a row, you use the td tags ([td][/td])! You need to insert them between the row tags (tr). For every cell you want in the row, you use those tags. Also, add what text/image/links you want to show in the table inside those td tags.
[table]
[tr][td]stuff-you-want-here[/td][/tr]
[/table]
5In my table I'll have 3 cells, so I'll use 3 td tags.
[table]
[tr][td]box 1[/td][td]box 2[/td][td]box 3[/td][/tr]
[/table]
You can try this on your site and see what it looks like. (I'm too bored to upload my picture, look in the attachments) you'll have to delete all the enters for it to work though.
6Repeat steps 3 and 4 until you have enough rows/columns/cells. My code looks like this. It's a table for showing some pets and their stats.
[table]
[tr][td]Pet ID[/td][td]Owner[/td][td]Name[/td][/tr]
[tr][td]10[/td][td]ARandomUser[/td][td]Fluffy[/td][/tr]
[tr][td]23[/td][td]RandomUserNo2[/td][td]Drago[/td][/tr]
[/table]
7Delete all the enters and you're finished!

[table][tr][td]Pet ID[/td][td]Owner[/td][td]Name[/td][/tr][tr][td]10[/td][td]ARandomUser[/td][td]Fluffy[/td][/tr][tr][td]23[/td][td]RandomUserNo2[/td][td]Drago[/td][/tr][/table]
Look at the attachments for pics! Hope this helped! Sorry about the long post also.