More BB Code
Overline
Just as there is strike through and underlined text, this allows for overlined text in posts.
Tag:
overline
Replacement:
Code:
<span class="overline">{param}</span>
In CSS add:
.overline {text-decoration: overline; }
Example:
Code:
[overline]This text is overlined[/overline]
Description:
Use this to overline text, whatever that is.
Lower Case Text
This turns all text within tags to lower case.
Tag:
lowercase
Replacement:
Code:
<span class="lower">{param}</span>
Put this in your CSS stylesheets:
Code:
.lower {text-transform: lowercase; }
Example:
Code:
[lowercase]THIS IS TEXT![/lowercase]
Make all text uppercase:
Makes all selected text fully upper case. Does not stay upper case when copied to Notepad or any other text editor.
Tag:
allcaps
Replacement:
Code:
<span class="Capital">{param}</span>
Put this in CSS:
Code:
.Capital {text-transform: uppercase; }
Example:
Code:
[allcaps]This is some capital text[/allcaps]
Description:
Use to capitalise all text selected.
Small Capital Letters
Tag:
smallcaps
Replacement:
Code:
<span class="smallcaps">{param}</span>
Add in CSS:
Code:
.smallcaps {font-variant: small-caps; }
Example:
Code:
[smallcaps]This is in small caps[/smallcaps]
Description:
This turns all lower case text between the tags into small upper case letters. Weird but cool.