Star Wars Roleplay: Chaos

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Chaos coding issue

Help

I am trying to create a table in my profile as a thread tracker. i thought i used the right tags, closed tags properly but my table code isn't working.

http://starwarsrp.net/topic/100610-rashae-lovous/

If someone on staff could take a look and tell me what i did wrong or what else i need in the code to fix it?

Is there a guide on coding parameters for Chaos within the BBC genre or is it HTML or is it something else?

Thank you.
 
From what I understand you can utilize HTML coding without too much issue. The only thing I noticed was that one of the [/td] markers was missing a bracket at the end, the one by your Kuat thread I believe. Also I'm not sure why but there is a [tr] tag that shows up above the table no matter what I tried to get it to go away. The only suggestion I have is to try and utilize different coding such as HTML. How to do so is rather easy:

1. Click on the blue <> symbol, right beloww the My Media.
2.Select your preferred Coding Language from the drop down.
3.Enter the Starting Line where it prompts you to do so.
4.Copy and paste the code you wish to utilize into the space provided.
5. Click Ok.

I apologize if the above steps are things you already knew, I have a tech support background...so yea.
 
Youcreate
atable
justas
ifit
wasHTML

Code:
[table] # Opening BBC to create a table
    [tr] # Opening BBC to create a table row
        [th] # Opening BBC to create a table header
        Header 1 # Table header content
        [/th] #Closing BBC for table header

        [th]
        Header 2
        [/th]
    [/tr] #Closing BBC for table row
    [tr]
        [td] #opening BBC for table cell
        Cell 1 #Table cell content
        [/td] #Closing BBC for table cell

        [td]
        Cell 2
        [/td]
    [/tr]
[/table] #Closing BBC for table
 
Kurayami Bloodborn said:
1. Click on the blue <> symbol, right beloww the My Media. 2.Select your preferred Coding Language from the drop down. 3.Enter the Starting Line where it prompts you to do so. 4.Copy and paste the code you wish to utilize into the space provided. 5. Click Ok.

This provides a markdown for the code though like in the post I made above.
 

Users who are viewing this thread

Top Bottom