Author Topic: BBCode - Help  (Read 5802 times)

Offline ZoraXx

  • Peon
  • **
  • Posts: 8
    • View Profile
BBCode - Help
« on: August 12, 2021, 05:34:22 AM »
Hey guyz... how tf does tables work?  ;D
I wanted to create a table with colors... didnt work
How can i make a table  with black borders and orange cells inside?
i tried

Quote
[th bgcolor=#808080]
Quote
[tr style="background-color=#ff8c00"]

for cells background and

Quote
[table bordercolor=#000000]

and nothing worked :/

Offline iL

  • Administrator
  • Ogre Mage
  • *****
  • Posts: 1650
    • View Profile
Re: BBCode - Help
« Reply #1 on: August 12, 2021, 06:00:47 AM »
Hi!
That's bbcode, not an html, so no bgcolor or w/e should work as i understand...
Here's the sample table, should work as i understand:
Code: [Select]
[table]
[tr]
[td]1[/td][td]2[/td][td]3[/td]
[/tr][tr]
[td]4[/td][td]5[/td][td]6[/td]
[/tr]
[/table]
123
456
Need help to translate War2Combat to German, French, Italian, Polish or another language: http://forum.war2.ru/index.php/topic,4728.0.html
Please, contact me if you are interested in that.

Offline ZoraXx

  • Peon
  • **
  • Posts: 8
    • View Profile
Re: BBCode - Help
« Reply #2 on: August 12, 2021, 07:09:05 AM »
Hi!
That's bbcode, not an html, so no bgcolor or w/e should work as i understand...
Here's the sample table, should work as i understand:
Code: [Select]
[table]
[tr]
[td]1[/td][td]2[/td][td]3[/td]
[/tr][tr]
[td]4[/td][td]5[/td][td]6[/td]
[/tr]
[/table]
123
456
Yeah, but making colorful tables should be possible... i was browsing through forums and wikis... it worked on those websites, but for some reason it doesnt work here

Code: [Select]
[table style="background-color=#ff8c00"]this should work, but it doesnt
« Last Edit: August 12, 2021, 07:13:13 AM by ZoraXx »