Advanced BBCode Box 3 by mssti

Advanced BBCode Box 3 :: Help Page

Description : Font size

BBCode usage format:
[size=150]large text[/size]

Note: The value will be interpreted as a percentage
Example :
[size=150]The quick brown fox jumps over the lazy dog[/size]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Quote text

BBCode usage format:
[quote]text[/quote] or [quote=“member”]text[/quote]

Example :
[quote]The quick brown fox jumps over the lazy dog[/quote] or [quote="member"]The quick brown fox jumps over the lazy dog[/quote]

Result :
The quick brown fox jumps over the lazy dog
or
member wrote:The quick brown fox jumps over the lazy dog

Top

Description : List

BBCode usage format:
[list]text[/list]

Note: Use [*] for each list item
Example :
[list][*]Item 1[*]Item 2[*]Item 3[/list] or [list][*]Item 1[list][*]sub-item 1[list][*]sub-sub-item1[/list][/list][/list]

Result :
  • Item 1
  • Item 2
  • Item 3
or
  • Item 1
    • sub-item 1
      • sub-sub-item1

Top

Description : Ordered list

BBCode usage format:
[list=1|a|A|i|I]text[/list]

Note: Use [*] for each list item
Example :
[list=1][*]Item 1[*]Item2[*]Item3[/list] or [list=a][*]Item a[*]Item b[*]Item c[/list] or [list=A][*]Item A[*]Item B[*]Item C[/list] or [list=i][*]Item i[*]Item ii[*]Item iii[/list] or [list=I][*]Item I[*]Item II[*]Item III[/list]

Result :
  1. Item 1
  2. Item2
  3. Item3
or
  1. Item a
  2. Item b
  3. Item c
or
  1. Item A
  2. Item B
  3. Item C
or
  1. Item i
  2. Item ii
  3. Item iii
or
  1. Item I
  2. Item II
  3. Item III

Top

Description : Horizontal line

BBCode usage format:
[hr]

Note: Creates a horizontal line to seperate text
Example :
The quick brown fox jumps over the lazy dog[hr]The quick brown fox jumps over the lazy dog

Result :
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
Top

Description : Bold text

BBCode usage format:
[b]text[/b]

Example :
[b]The quick brown fox jumps over the lazy dog[/b]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Italic text

BBCode usage format:
[i]text[/i]

Example :
[i]The quick brown fox jumps over the lazy dog[/i]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Underline text

BBCode usage format:
[u]text[/u]

Example :
[u]The quick brown fox jumps over the lazy dog[/u]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Strikethrough text

BBCode usage format:
[s]text[/s]

Example :
[s]The quick brown fox jumps over the lazy dog[/s]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Justify align text

BBCode usage format:
[align=justify]text[/align]

Example :
[align=justify]The quick brown fox jumps over the lazy dog[/align]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Left align text

BBCode usage format:
[align=left]text[/align]

Example :
[align=left]The quick brown fox jumps over the lazy dog[/align]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Center align text

BBCode usage format:
[align=center]text[/align]

Example :
[align=center]The quick brown fox jumps over the lazy dog[/align]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Right align text

BBCode usage format:
[align=right]text[/align]

Example :
[align=right]The quick brown fox jumps over the lazy dog[/align]

Result :
The quick brown fox jumps over the lazy dog
Top

Description : Preformatted text

BBCode usage format:
[pre]text[/pre]

Example :
[pre]The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog[/pre]

Result :
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog

Top

Description : Code display

BBCode usage format:
[code]code[/code]

Example :
[code]The quick brown fox jumps over the lazy dog[/code] or [code=php]The quick brown fox jumps over the lazy dog[/code]

Result :
Code: Select all
The quick brown fox jumps over the lazy dog
or
Code: Select all
The quick brown fox jumps over the lazy dog

Top

Description : Insert a table

BBCode usage format:
[table=(CSS style)][tr=(CSS style)][td=(CSS style)]text[/td][/tr][/table]

Example :
[table=width:50%;border:1px solid #cccccc][tr=text-align:center][td=border:1px solid #cccccc]The quick brown fox jumps over the lazy dog[/td][/tr][/table]

Result :
The quick brown fox jumps over the lazy dog

Top

Description : Insert anchor

BBCode usage format:
[anchor=(this anchor name) goto=(target anchor name)]text[/anchor]

Example :
[anchor=help_0 goto=help_1]Go to link 1[/anchor]
or [anchor=help_1]this is link 1[/anchor]

Result :
 Go to link 1 
or  this is link 1 
Top

Description : Insert URL

BBCode usage format:
[url]http://url[/url] or [url=http://url]URL text[/url]

Example :
[url=http://www.phpbb.com]Visit phpBB![/url]

Result :
Visit phpBB!
Top

Description : Insert image

BBCode usage format:
[img]http://image_url[/img] or [img=left|center|right|float-left|float-right]http://image_url[/img]

Example :
[img]http://www.google.com/intl/en_com/images/logo_plain.png[/img]

Result :
Image
Top

Description : Insert web video

BBCode usage format:
[BBvideo width,height]Video URL[/BBvideo]

Example :
[BBvideo 560,340]http://www.youtube.com/watch?v=sP4NMoJcFd4[/BBvideo]

Result :
Watch on youtube.com

Top