Maffyx wrote:
Shakrah wrote:
Hey all.
Just a quick question for the forums section of our site.
We would like to use the item features of BBC [item]Greathelm of the Unbreakable[/item] but place these mouse over items inside tables. So we are able to see several items beside, on top and below each other.
Does BBC have [table] tags? Or something like it? If so could you point me to some examples with the programming to check out?
I don't think this is possible at the moment, you would need a script to tell the link that your mouse is over it, which I don't think can be done in BBCode.
You can't do it just with BBCode, but you can try combining the BBCode [item] tags with HTML. It's pretty easy (unfortunately) to generate broken HTML when doing this, such that things misbehave strangely, but you may get lucky.
Like, you can try something ala:
Code:
<table>
<tr>
<td>[item]Carrot on a Stick[/item]</td>
<td>[item]Arcanite Reaper[/item]</td>
</tr>
<tr>
<td>[item]Fury[/item]</td>
<td>[item]Black Coffee[/item]</td>
</tr>
</table>
making sure you set content-type to HTML. It works for me in a news post.