Notices

BB Code
BB code is a set of tags based on the HTML language that you may already be familiar with. They allow you to add formatting to your messages in the same way as HTML does, but have a simpler syntax and will never break the layout of the pages you are viewing. The ability to use BB code is set on a forum-by-forum basis by the administrator, so you should check the forum rules when you post a new message.

Below is a list of the BB code tags you can use to format your messages.
BB Code List
[b], [i], [u] Bold / Italic / Underline
[color] Color
[size] Size
[font] Font
[highlight] Highlight
[left], [right], [center] Left / Right / Center
[indent] Indent
[email] Email Linking
[url] URL Hyperlinking
[thread] Thread Linking
[post] Post Linking
[list] Bulleted Lists / Advanced Lists
[img] Images
[code] Code
[php] PHP Code
[html] HTML Code
[quote] Quote
[noparse] Stop BB Code Parsing
[attach] Attachment
[APP] App Box
[boxL] Side Box Left
[boxR] Side Box Right
[FB] Facebook Page Box
[frame] Frame
[frame] Frame
[google] Google Video
[H1] H1
[H2] H2
[H3] H3
[HR] Horizontal Rule
[imgl] Image with Left Align
[imgr] Image with Right Align
[S] Strike Through
[Spoiler] Spoiler
[TABLE] Table
[TABLE] Table
[TD] TD
[TD] TD
[TR] TR
[TR] TR
[TW] Twitter Page Box
[vimeo] Vimeo
[youtube] YouTube
Incorrect BB Code Usage:
  • [url] www.example.com [/url] - don't put spaces between the bracketed code and the text you are applying the code to.
  • [email]myname@domain.com[email] - the end brackets must include a forward slash ([/email])

Bold / Italic / Underline
The [b], [i] and [u] tags allow you to create text that is bold, italic and underlined.
Usage [b]value[/b]
[i]value[/i]
[u]value[/u]
Example Usage [b]this text is bold[/b]
[i]this text is italic[/i]
[u]this text is underlined[/u]
Example Output this text is bold
this text is italic
this text is underlined

Color
The [color] tag allows you to change the color of your text.
Usage [color=Option]value[/color]
Example Usage [color=blue]this text is blue[/color]
Example Output this text is blue

Size
The [size] tag allows you to change the size of your text.
Usage [size=Option]value[/size]
Example Usage [size=+2]this text is two sizes larger than normal[/size]
Example Output this text is two sizes larger than normal

Font
The [font] tag allows you to change the font of your text.
Usage [font=Option]value[/font]
Example Usage [font=courier]this text is in the courier font[/font]
Example Output this text is in the courier font

Highlight
The [highlight] tag allows you to emphasize your text.
Usage [highlight]value[/highlight]
Example Usage [highlight]this text is highlighted[/highlight]
Example Output this text is highlighted

Left / Right / Center
The [left], [right] and [center] tags allow you to change the alignment of your text.
Usage [left]value[/left]
[center]value[/center]
[right]value[/right]
Example Usage [left]this text is left-aligned[/left]
[center]this text is center-aligned[/center]
[right]this text is right-aligned[/right]
Example Output
this text is left-aligned
this text is center-aligned
this text is right-aligned

Indent
The [indent] tag allows you to indent your text.
Usage [indent]value[/indent]
Example Usage [indent]this text is indented[/indent]
Example Output
this text is indented

Email Linking
The [email] tag allows you to link to an email address. You can include an optional parameter to 'name' your link.
Usage [email]value[/email]
[email=Option]value[/email]
Example Usage [email]j.doe@example.com[/email]
[email=j.doe@example.com]Click Here to Email Me[/email]
Example Output j.doe@example.com
Click Here to Email Me

URL Hyperlinking
The [url] tag allows you to link to other websites and files. You can include an optional parameter to 'name' your link.
Usage [url]value[/url]
[url=Option]value[/url]
Example Usage [url]https://www.thedibb.co.uk/forums[/url]
[url=https://www.thedibb.co.uk/forums]theDIBB[/url]
Example Output https://www.thedibb.co.uk/forums
theDIBB

Thread Linking
The [thread] tag allows you to link to threads by specifying the thread id. You can include an optional parameter to 'name' your link.
Usage [thread]threadid[/thread]
[thread=threadid]value[/thread]
Example Usage [thread]42918[/thread]
[thread=42918]Click Me![/thread]
(Note: The threadid/postid is just an example and may not link to a valid thread/post.)
Example Output https://www.thedibb.co.uk/forums/showthread.php?t=42918
Click Me!

Post Linking
The [post] tag allows you to link to posts by specifying the post id. You can include an optional parameter to 'name' your link.
Usage [post]postid[/post]
[post=postid]value[/post]
Example Usage [post]269302[/post]
[post=269302]Click Me![/post]
(Note: The threadid/postid is just an example and may not link to a valid thread/post.)
Example Output https://www.thedibb.co.uk/forums/showthread.php?p=269302#post269302
Click Me!

Bulleted Lists
The [list] tag allows you to create simple, bulleted lists without specifying an option. Within the value portion, each bullet is denoted by the [*] tag.
Usage [list]value[/list]
Example Usage [list]
[*]list item 1
[*]list item 2
[/list]
Example Output
  • list item 1
  • list item 2

Advanced Lists
The [list] tag allows you to create advanced lists by specifying an option. The option should have a value of 1 (for a numbered list) or A (for an alphabetic with capital letters list) or a (for an alphabetic with lowercase letters list) or I (for a numbered with capital Roman numeral list) or i (for a numbered with small Roman numeral list).
Usage [list=Option]value[/list]
Example Usage [list=1]
[*]list item 1
[*]list item 2
[/list]

[list=a]
[*]list item 1
[*]list item 2
[/list]
Example Output
  1. list item 1
  2. list item 2
  1. list item 1
  2. list item 2

Images
The [img] tag allows you to embed images within your posts. You can also combine this tag with the [url] tag to make images become links.
Usage [img]value[/img]
Example Usage [img]https://www.thedibb.co.uk/forums/images/statusicon/forum_new.gif[/img] (Not linked)

[url=http://www.example.com] [img]https://www.thedibb.co.uk/forums/images/statusicon/forum_new.gif[/img] [/url] (Linked)
Example Output (Not linked)

(Linked)

Code
The [code] tag switches to a fixed-width (monospace) font and preserves all spacing.
Usage [code]value[/code]
Example Usage [code]
<script type="text/javascript">
<!--
    alert("Hello world!");
//-->
</script>
[/code]
Example Output
Code:
<script type="text/javascript">
<!--
	alert("Hello world!");
//-->
</script>

PHP Code
The [php] tag performs the same function as the [code] tag, but also adds syntax highlighting for PHP code. Although it is designed for PHP, it may correctly highlight some other C-like languages.
Usage [php]value[/php]
Example Usage [php]
$myvar = 'Hello World!';
for ($i = 0; $i < 10; $i++)
{
    echo $myvar . "\n";
}
[/php]
Example Output
PHP Code:
$myvar 'Hello World!';
for (
$i 0$i 10$i++)
{
    echo 
$myvar "\n";


HTML Code
The [html] tag allows you to perform syntax highlighting for HTML code.
Usage [html]value[/html]
Example Usage [html]
<img src="image.gif" alt="image" />
<a href="testing.html" target="_blank">Testing</a>
[/html]
Example Output
HTML Code:
<img src="image.gif" alt="image" />
<a href="testing.html" target="_blank">Testing</a>

Quote
The [quote] tag allows you to attribute text to someone else.
Usage [quote]Quote[/quote]
[quote=User Name]value[/quote]
Example Usage [quote]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe;16146440]Lorem ipsum dolor sit amet[/quote]
Example Output
Lorem ipsum dolor sit amet
Originally Posted by John Doe
Lorem ipsum dolor sit amet
Originally Posted by John Doe View Post
Lorem ipsum dolor sit amet

Stop BB Code Parsing
The [noparse] tag allows you to stop the parsing of BB code.
Usage [noparse][b]value[/b][/noparse]
Example Usage [noparse][b]Lorem ipsum dolor sit amet[/b][/noparse]
Example Output [b]Lorem ipsum dolor sit amet[/b]

Attachment
The [attach] tag allows you to display an attachment in your post rather than at the bottom. It will only display attachments that belong to the post in which it is utilized.
Usage [attach]attachmentid[/attach]
Example Usage [attach]12345[/attach]
Example Output

App Box
Adds a frame round images posted from the app.
Usage [APP]value[/APP]
Example Usage [APP]http://www.thedibb.co.uk/postImages/372/df8bdd51b56d8a.jpg[/APP]
Example Output [APP]http://www.thedibb.co.uk/postImages/372/df8bdd51b56d8a.jpg[/APP]

Side Box Left
Inserts a box on the left.
Usage [boxL]value[/boxL]
Example Usage [boxL]Some Text[/boxL]
Example Output [boxL]Some Text[/boxL]

Side Box Right
Inserts a box on the right.
Usage [boxR]value[/boxR]
Example Usage [boxR]Some Text[/boxR]
Example Output [boxR]Some Text[/boxR]

Facebook Page Box
Adds a Background to the social quote.
Usage [FB]value[/FB]
Example Usage [FB]Facebook Box[/FB]
Example Output [FB]Facebook Box[/FB]

Frame
Wraps text into a quote-like frame.
Usage [frame]value[/frame]
Example Usage [frame]text[/frame]
Example Output
text

Frame
Wraps text into a quote-like frame.
Usage [frame=Option]value[/frame]
Example Usage [frame=Title]text[/frame]
Example Output
Titletext

Google Video
Use the movie code from the google URL in your browser. For example, http://video.google.com/videoplay?docid=-8873170370992951280
Usage [google]value[/google]
Example Usage [google]8873170370992951280[/google]
Example Output

H1
Inserts an H1 Style Tag.
Usage [H1]value[/H1]
Example Usage [H1]Title[/H1]
Example Output [H1]Title[/H1]

H2
Inserts an H2 Style Tag.
Usage [H2]value[/H2]
Example Usage [H2]Title[/H2]
Example Output [H2]Title[/H2]

H3
Inserts an H3 Style Tag.
Usage [H3]value[/H3]
Example Usage [H3]Title[/H3]
Example Output [H3]Title[/H3]

Horizontal Rule
Adds a page divider.
Usage [HR]value[/HR]
Example Usage [HR][/HR]
Example Output [HR][/HR]

Image with Left Align
Usage [imgl]value[/imgl]
Example Usage Testing Text, Testing Text [imgl]http://www.thedibb.co.uk/forums/images/statusicon/forum_new.gif[/imgl]
Example Output Testing Text, Testing Text inline image

Image with Right Align
Usage [imgr]value[/imgr]
Example Usage Testing Text, Testing Text[imgr]http://www.thedibb.co.uk/forums/images/statusicon/forum_new.gif[/imgr]
Example Output Testing Text, Testing Textinline image

Strike Through
Strikes through text.
Usage [S]value[/S]
Example Usage [S]Strike Through[/S]
Example Output [S]Strike Through[/S]

Spoiler
Tag hides text and shows a reveal button
Usage [Spoiler]value[/Spoiler]
Example Usage [spoiler] text [/spoiler]
Example Output [spoiler] text [/spoiler]

Table
This sets a table without parameters.
Usage [TABLE]value[/TABLE]
Example Usage [TABLE][/TABLE]
Example Output [TABLE][/TABLE]

Table
Creates the table and sets the parameters
Usage [TABLE=Option]value[/TABLE]
Example Usage [TABLE=align='center' width='75%' cellpadding='5' cellspacing='0' border='1'][TR=bgcolor='#993344'][TD=align='center']This is a center aligned cell[/TD][TD=]This is a left cell[/TD][/TR][/TABLE]
Example Output [TABLE=align='center' width='75%' cellpadding='5' cellspacing='0' border='1'][TR=bgcolor='#993344'][TD=align='center']This is a center aligned cell[/TD][TD=]This is a left cell[/TD][/TR][/TABLE]

TD
Sets Table Cell without Options.
Usage [TD]value[/TD]
Example Usage [TD]Cell[/TD]
Example Output [TD]Cell[/TD]

TD
Sets the Table Cell With Options.
Usage [TD=Option]value[/TD]
Example Usage [TD=align='center']Cell[/TD]
Example Output [TD=align='center']Cell[/TD]

TR
Sets Table TR without Options
Usage [TR]value[/TR]
Example Usage [TR][/TR]
Example Output [TR][/TR]

TR
Sets the table row
Usage [TR=Option]value[/TR]
Example Usage [TR=][/TR]
Example Output [TR=][/TR]

Twitter Page Box
Adds a Background to the social quote.
Usage [TW]value[/TW]
Example Usage [TW]Twitter Box[/TW]
Example Output [TW]Twitter Box[/TW]

Vimeo
Use the movie code from the VIMEO URL in your browser. For example, http://vimeo.com/19845534
Usage [vimeo]value[/vimeo]
Example Usage [VIMEO]19845534[/VIMEO]
Example Output

YouTube
Use the movie code from the YouTube URL in your browser. For example, http://youtube.com/watch?v=JFkCCL0Vh6U
Usage [youtube]value[/youtube]
Example Usage [youtube]JFkCCL0Vh6U[/youtube]
Example Output


All times are GMT +1. The time now is 05:10 AM.


Powered by vBulletin - Copyright © 2000 - 2024, Jelsoft Enterprises Ltd.
DIBB Savings
AttractionTickets.com

Get £10 off each Disney Ticket with the code ATDIBB10

Get up to £50 off per room at Disney or Universal with the code DIBBHOTELS


theDIBB Blog
Guests can book their 2025 Hotel and Ticket package early to enjoy Free Dining &... Read More »
The iconic 1900 Park Fare restaurant is opening its doors once again at Disney’s Grand... Read More »
One of the the five worlds found in Epic Universe, How to Train Your Dragon... Read More »


theDIBB Menu


Exchange Rates
US Dollar Rates
ASDA  $1.2156
CaxtonFX  $1.2024
Covent Garden FX  $1.2164
FAIRFX  $1.2181
John Lewis  $1.2194
M&S  $1.1983
Post Office  $1.1961
Sainsburys  $1.2125
TESCO  $1.2196
Travelex  $1.2155
Updated: 05:00 20/04/2024
Euro Rates
ASDA  €1.1406
CaxtonFX  €1.1274
Covent Garden FX  €1.1522
FAIRFX  €1.1434
John Lewis  €1.1458
M&S  €1.1267
Post Office  €1.1248
Sainsburys  €1.1382
TESCO  €1.1429
Travelex  €1.1427
Updated: 05:00 20/04/2024

DIBB Premium Membership
Did you know you can help support theDIBB with Premium Membership?

Check out this link for more information and benefits, such as...

"No adverts on theDIBB Forums"

Upgrade Now



X