Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 178

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 183

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 184

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 220

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 223

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 235

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 250

Deprecated: Function create_function() is deprecated in /var/www/html/jellyro.com/archive/forums/Sources/Load.php on line 268
Print Page - Tabling

Old aRO Forums

The 'Other' Section => AnesisRO Archive => Archive => General Questions => Topic started by: AnnOrz on March 05, 2010, 07:04:45 am

Title: Tabling
Post by: AnnOrz on March 05, 2010, 07:04:45 am
I know how to me a 3x3 table using bbcode, but I'm having trouble making a 1+2x3

Is it possible to code something to make it look like

(http://i45.tinypic.com/2885g03.jpg) ???

Title: Re: Tabling
Post by: Razer on March 05, 2010, 08:03:52 am
Maybe if nesting is possible,  make a table with with 2 columns and then inside the second column - make another table (nest another table with 3 rows and 2 columns) I thinks its possible - Look below :-

Made using nested tables - slight alignment disorder seems to exist
A1
B1 B2
B3 B4
B5 B6

Code: [Select]

[table]
[tr]
[td]
A1
[/td]
[td][table][tr][td]B1 [/td][td]B2 [/td][/tr]
[tr][td]B3 [/td][td]B4 [/td][/tr]
[tr][td]B5 [/td][td]B6 [/td][/tr]

[/table]
[/td]
[/tr][/table]
Title: Re: Tabling
Post by: DeePee on March 05, 2010, 08:04:40 am
I doubt the forum supports colspan and rowspan, so here:

Code: [Select]
[table]
[tr]
[td]
Column 1
[/td]

[td]
[table]
[tr][td]Column 2 Row 1[/td][/tr]
[tr][td]Column 2 Row 2[/td][/tr]
[tr][td]Column 2 Row 3[/td][/tr]
[/table]
[/td]

[td]
[table]
[tr][td]Column 3 Row 1[/td][/tr]
[tr][td]Column 3 Row 2[/td][/tr]
[tr][td]Column 3 Row 3[/td][/tr]
[/table]
[/td]
[/tr]
[/table]
Title: Re: Tabling
Post by: Razer on March 05, 2010, 08:13:12 am
Isnt my code shorter ?

Title: Re: Tabling
Post by: DeePee on March 05, 2010, 08:16:30 am
Depends how she wants to arrange it, I guess.
Title: Re: Tabling
Post by: Johnsu on March 05, 2010, 12:02:00 pm
Digi Gave this to me, Suppose youll need it more now.

http://www.teamopolis.com/tools/bbcode-table-generator.aspx
Title: Re: Tabling
Post by: AnnOrz on March 05, 2010, 04:09:44 pm
@Razer&DeePee
Thanks guys. Just how I wanted it

@Johnsu
They make generators?! @_@
I'll have to remember that so I don't have to manually do everything ;~;;
Title: Re: Tabling
Post by: Johnsu on March 05, 2010, 05:02:53 pm
My thoughts exactly :P
Title: Re: Tabling
Post by: BWS on March 06, 2010, 03:29:20 am
@Razer&DeePee
Thanks guys. Just how I wanted it

@Johnsu
They make generators?! @_@
I'll have to remember that so I don't have to manually do everything ;~;;


generators are nice, but don't hesitate to learn it, just incase genny ever goes poof you can do it yourself.
Title: Re: Tabling
Post by: Johnsu on March 07, 2010, 06:42:02 pm
Yeah, the generators only good for basic learning. Like, the one I have now wasn't used by the gen because well, It doesn't do complex tabling.
Title: Re: Tabling
Post by: GoddessDigi on March 07, 2010, 09:09:02 pm
Well, after you get the basic part figured out through the generator, you can usually tweak it to make it how you want it.