The Circus
Welcome Anonymous

Nickname
Password
(Register)
There are no events scheduled in the next 7 days.
Gloom: CLOWN Discord! check out details on CLOWN facebook !
23-Mar-2019 23:28:09
Gloom: https://www.facebo ok.com/groups/clow nguild/
23-Mar-2019 22:31:46
Gloom: Fallout 76 !!!
16-Dec-2018 01:22:10
Lavida: Any Clowns in Lords Mobile?
26-Sep-2018 07:56:39
Romano: Bring In The Clowns!!!
03-Sep-2018 21:37:47
Gloom: Rock ya
06-Aug-2018 16:45:24
Lavida: Hallo everyone long time no see ..
21-Jul-2018 06:15:33
cleo: Damn I miss you all.
16-Jun-2018 03:05:27
cleo: Ah they live!!
16-Jun-2018 03:03:00
Gloom: Here! Very Happy
09-Jun-2018 15:55:06
Shout History
Only Registered Users can Shout
Create/Login
Circus Forums › BBCode Guide
Forum Index
Introduction
What is BBCode?
BBCode is a special implementation of HTML. Whether you can actually use BBCode in your posts on the forum is determined by the administrator. In addition, you can disable BBCode on a per post basis via the posting form. BBCode itself is similar in style to HTML: tags are enclosed in square braces [ and ] rather than < and > and it offers greater control over what and how something is displayed. Depending on the template you are using you may find adding BBCode to your posts is made much easier through a clickable interface above the message area on the posting form. Even with this you may find the following guide useful. You will find that you can use BBCode all over the entire website, and some different sections may even support there own custom tags. All tags available from within the forums are also generally available from anywhere else that supports bbcode.
Text Formatting
How to create bold, italic and underlined text
BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways:
  • To make a piece of text bold enclose it in [b][/b], eg.

    [b]Hello[/b]

    will become Hello
  • For underlining use [u][/u], for example:

    [u]Good Morning[/u]

    becomes Good Morning
  • To italicise text use [i][/i], eg.

    This is [i]Great![/i]

    would give This is Great!

How to change the text colour or size
To alter the color or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system:
  • Changing the colour of text is achieved by wrapping it in [color=][/color]. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:

    [color=red]Hello![/color]

    or

    [color=#FF0000]Hello![/color]

    will both output Hello!
  • Changing the text size is achieved in a similar way using [size=][/size]. This tag is dependent on the template you are using but the recommended format is a numerical value representing the text size in pixels, starting at 1 (so tiny you will not see it) through to 29 (very large). For example:

    [size=9]SMALL[/size]

    will generally be SMALL

    whereas:

    [size=24]HUGE![/size]

    will be HUGE!

Can I combine formatting tags?
Yes, of course you can; for example to get someones attention you may write:

[size=18][color=red][b]LOOK AT ME![/b][/color][/size]

this would output LOOK AT ME!

We don't recommend you output lots of text that looks like this, though! Remember that it is up to you, the poster, to ensure that tags are closed correctly. For example, the following is incorrect:

[b][u]This is wrong[/b][/u]
How do i create those cool scrolling boxes?
Why, with the [scrollbox] BBCode tag of course. You use it like so:
[scrollbox=320]Yay! Now you will need to read all of this stuff before you get to see my secret image. Blah blah blah etc... [img]http://www.mysite.tld/scret_image.ext[/img][/scrollbox]
The above example will create a scrollbox that is 320 pixels wide. Scrollbars will only be put in place if it is needed (if it all fits in without needing scrollbars then they won't be used).
Quoting and outputting fixed-width text
Quoting text in replies
There are two ways you can quote text: with a reference or without.
  • When you utilise the Quote function to reply to a post on the board you should notice that the post text is added to the message window enclosed in a [quote=""][/quote] block. This method allows you to quote with a reference to a person or whatever else you choose to put. For example, to quote a piece of text Mr. Blobby wrote, you would enter:

    [quote="Mr. Blobby"]The text Mr. Blobby wrote would go here[/quote]

    The resulting output will automatically add: Mr. Blobby wrote: before the actual text. Remember that you must include the quotation marks "" around the name you are quoting -- they are not optional.
  • The second method allows you to blindly quote something. To utilise this enclose the text in [quote][/quote] tags. When you view the message it will simply show: Quote: before the text itself.

Outputting code or fixed width data
If you want to output a piece of code or in fact anything that requires a fixed width with a Courier-type font, you should enclose the text in [code][/code] tags, eg.

[code]echo "This is some code";[/code]

All formatting used within [code][/code] tags is retained when you later view it.
Generating lists
Creating an Un-ordered list
BBCode supports two types of lists, unordered and ordered. They are essentially the same as their HTML equivalents. An unordered list ouputs each item in your list sequentially one after the other indenting each with a bullet character. To create an unordered list you use [list][/list] and define each item within the list using [*]. For example, to list your favorite colours you could use:

[list]
[*]Red
[*]Blue
[*]Yellow
[/list]

This would generate the following list:
  • Red
  • Blue
  • Yellow

Creating an Ordered list
The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use [list=1][/list] to create a numbered list or alternatively [list=a][/list] for an alphabetical list. As with the unordered list items are specified using [*]. For example:

[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]

will generate the following:
  1. Go to the shops
  2. Buy a new computer
  3. Swear at computer when it crashes
Whereas for an alphabetical list you would use:

[list=a]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]

giving
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer

Creating Links
Linking to another site
BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.
  • The first of these uses the [url=][/url] tag; whatever you type after the = sign will cause the contents of that tag to act as a URL. For example, to link to myndworx.com you could use:

    [url=http://www.myndworx.com/]Visit Myndworx Asylum![/url]

    This would generate the following link, Visit Myndworx Asylum! You will notice the link opens in a new window so the user can continue browsing the forums if they wish.
  • If you want the URL itself displayed as the link you can do this by simply using:

    [url]http://www.myndworx.com/[/url]

    This would generate the following link: http://www.myndworx.com/
  • Additionally ForumsPro features something called Magic Linkswhich will turn any syntatically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.myndworx.com into your message will automatically lead to www.myndworx.com being output when you view the message.
  • The same thing applies equally to email addresses; you can either specify an address explicitly, like:

    [email][email protected][/email]

    which will output [email protected] or you can just type [email protected] into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), [b][/b], etc. As with the formatting tags it is up to you to ensure the correct open and close order is following. For example:

[url=http://www.myndworx.com/][img]http://www.myndworx.com/themes/sovereignBlue/images/head_left.jpg[/url][/img]

is not correct which may lead to your post being deleted so take care.
Showing images in posts
Adding an image to a post
BBCode incorporates a tag for including images in your posts. Two very important things to remember when using this tag are: many users do not appreciate lots of images being shown in posts and second, the image you display must already be available on the Internet (it cannot exist only on your computer, for example, unless you run a webserver!). There is currently no way of storing images locally with ForumsPro. To display an image, you must surround the URL pointing to the image with [img][/img] tags. For example:

[img]http://http://www.myndworx.com/themes/sovereignBlue/images/head_left.jpg[/img]

As noted in the URL section above you can wrap an image in a [url][/url] tag if you wish, eg.

[url=http://www.myndworx.com/][img]http://www.myndworx.com/themes/sovereignBlue/images/head_left.jpg[/img][/url]

would generate:



Other matters
What's all this PHP nonsense!?
The PHP BBCode is similar to the Code BBCode, except that it should only be used for PHP code. Why? Because it highlights certain sections of the PHP code, making it easier to read.

Speak to the hand, cause the face ain't listening (Plague)

Hello been a long time... Hello been a long time...
Last post by Adenas in forum Clown Hall on Mon Mar 25, 2019 07:44 PM
1 Replies, 14931 Views

Slinver and Morrianna ... Slinver and Morrianna ...
Last post by Lightrunner in forum Clown Hall on Thu Nov 02, 2017 11:15 AM
6 Replies, 19755 Views

Albion Online Albion Online
Last post by Gloom in forum Clown Hall on Sun Dec 11, 2016 12:33 PM
1 Replies, 11440 Views

No man's sky No man's sky
Last post by Gloom in forum Clown Hall on Tue Aug 16, 2016 07:08 AM
2 Replies, 13757 Views

Overwatch Overwatch
Last post by Gloom in forum Clown Hall on Thu Jun 09, 2016 11:33 AM
0 Replies, 12439 Views

MERRY CHRISTMAS!! MERRY CHRISTMAS!!
Last post by Lightrunner in forum Clown Hall on Tue Jan 19, 2016 11:54 AM
2 Replies, 13559 Views

Re: Wildstar online Re: Wildstar online
Last post by Gloom in forum Clown Hall on Sun Jan 17, 2016 09:33 PM
4 Replies, 18315 Views

Steam group Steam group
Last post by Haegl in forum Clown Hall on Fri Jan 01, 2016 04:07 AM
12 Replies, 28790 Views

Miss you guys! Miss you guys!
Last post by Gloom in forum Clown Hall on Thu Mar 26, 2015 06:13 AM
4 Replies, 18672 Views

Anyone playing Elite:D... Anyone playing Elite:D...
Last post by Baratus in forum Clown Hall on Sat Jan 10, 2015 07:31 AM
0 Replies, 14791 Views

 Bots:
1: Mojeek > Home
2: Google > CLOWN Calendar
 Visitors:
001: CLOWN Calendar
002: Circus Pictures
003: Circus Pictures
004: CLOWN Calendar
005: CLOWN Calendar
006: Circus Pictures
007: CLOWN Calendar
008: CLOWN Calendar
009: CLOWN Calendar
010: CLOWN Calendar
011: Circus Pictures
012: Circus Pictures
013: Circus Pictures
014: CLOWN Calendar
015: Circus Forums
016: Circus Pictures
017: CLOWN Calendar
018: CLOWN Calendar
019: CLOWN Calendar
020: CLOWN Calendar
021: CLOWN Calendar
022: CLOWN Calendar
023: Circus Pictures
024: Circus Pictures
025: CLOWN Calendar
026: CLOWN Calendar
027: CLOWN Calendar
028: CLOWN Calendar
029: CLOWN Calendar
030: Circus Pictures
031: Circus Pictures
032: Circus Pictures
033: CLOWN Calendar
034: Circus Pictures
035: Circus Forums
036: CLOWN Calendar
037: Circus Pictures
038: Circus Forums
039: Circus Pictures
040: Home
041: CLOWN Calendar
042: Circus Pictures
043: CLOWN Calendar
044: CLOWN Calendar
045: CLOWN Calendar
046: Circus Pictures
047: CLOWN Calendar
048: Home
049: CLOWN Calendar
050: Account Details
051: Circus Pictures
052: Circus Pictures
053: CLOWN Calendar
054: Account Details
055: CLOWN Calendar
056: CLOWN Calendar
057: CLOWN Calendar
058: CLOWN Calendar
059: Circus Forums
060: Circus Forums
061: Circus Pictures
062: CLOWN Calendar
063: Circus Pictures
064: CLOWN Calendar
065: CLOWN Calendar
066: CLOWN Calendar
067: Home
068: CLOWN Calendar
069: Circus Pictures
070: CLOWN Calendar
071: Home
072: CLOWN Calendar
073: CLOWN Calendar
074: CLOWN Calendar
075: CLOWN Calendar
076: CLOWN Calendar
077: CLOWN Calendar
078: CLOWN Calendar
079: CLOWN Calendar
080: CLOWN Calendar
081: CLOWN Calendar
082: CLOWN Calendar
083: CLOWN Calendar
084: CLOWN Calendar
085: CLOWN Calendar
086: CLOWN Calendar
087: CLOWN Calendar
088: Home
089: CLOWN Calendar
090: CLOWN Calendar
091: CLOWN Calendar
092: CLOWN Calendar
093: CLOWN Calendar
094: Circus Pictures
095: CLOWN Calendar
096: CLOWN Calendar
097: Home
098: CLOWN Calendar
99: CLOWN Calendar
100: CLOWN Calendar
101: Home
102: CLOWN Calendar
103: CLOWN Calendar
104: Home
105: CLOWN Calendar
106: CLOWN Calendar
107: CLOWN Calendar
108: CLOWN Calendar
109: CLOWN Calendar
110: Circus Pictures
111: CLOWN Calendar
112: Circus Pictures
113: Circus Pictures
114: CLOWN Calendar
115: CLOWN Calendar
116: Circus Pictures
117: Circus Forums
118: CLOWN Calendar
119: CLOWN Calendar
120: Circus Pictures
121: CLOWN Calendar
122: Circus Pictures
123: CLOWN Calendar
124: CLOWN Calendar
125: CLOWN Calendar
126: CLOWN Calendar
127: CLOWN Calendar
128: CLOWN Calendar
129: CLOWN Calendar
130: CLOWN Calendar
131: CLOWN Calendar
132: Circus Pictures
133: Circus Pictures
134: CLOWN Calendar
135: CLOWN Calendar
136: CLOWN Calendar
137: Circus Forums
138: CLOWN Calendar
139: CLOWN Calendar
140: Circus Forums
141: Home
142: CLOWN Calendar
143: Circus Pictures
144: Circus Pictures
145: CLOWN Calendar
146: CLOWN Calendar
147: CLOWN Calendar
148: CLOWN Calendar
149: CLOWN Calendar
150: CLOWN Calendar
151: Home
152: CLOWN Calendar
153: CLOWN Calendar
154: CLOWN Calendar
155: CLOWN Calendar
156: CLOWN Calendar
157: CLOWN Calendar
158: CLOWN Calendar
159: CLOWN Calendar
160: CLOWN Calendar
161: CLOWN Calendar
162: CLOWN Calendar
163: CLOWN Calendar
164: CLOWN Calendar
165: CLOWN Calendar
166: Home
167: Home
168: CLOWN Calendar
169: CLOWN Calendar
170: CLOWN Calendar
171: CLOWN Calendar
172: CLOWN Calendar
173: CLOWN Calendar
174: CLOWN Calendar
175: Home
176: CLOWN Calendar
177: CLOWN Calendar
178: CLOWN Calendar
179: CLOWN Calendar
180: CLOWN Calendar
181: CLOWN Calendar
182: CLOWN Calendar
183: CLOWN Calendar
184: CLOWN Calendar
185: CLOWN Calendar
186: CLOWN Calendar
187: CLOWN Calendar
188: CLOWN Calendar
189: CLOWN Calendar
190: CLOWN Calendar
191: Circus Pictures
192: CLOWN Calendar
193: CLOWN Calendar
194: Circus Pictures
195: CLOWN Calendar
196: CLOWN Calendar
197: Circus Pictures
198: CLOWN Calendar
199: Circus Forums
200: Circus Pictures
201: CLOWN Calendar
202: Home
203: Circus Pictures
204: CLOWN Calendar
205: CLOWN Calendar
206: CLOWN Calendar
207: CLOWN Calendar
208: CLOWN Calendar
209: CLOWN Calendar
210: CLOWN Calendar
211: CLOWN Calendar
212: CLOWN Calendar
213: CLOWN Calendar
214: CLOWN Calendar
215: CLOWN Calendar
216: CLOWN Calendar
217: CLOWN Calendar
218: CLOWN Calendar
219: CLOWN Calendar
220: Circus Pictures
221: Home
222: CLOWN Calendar
223: Circus Forums
224: CLOWN Calendar
225: CLOWN Calendar
226: CLOWN Calendar
227: CLOWN Calendar
228: Home
229: CLOWN Calendar
230: Circus Pictures
231: CLOWN Calendar
232: CLOWN Calendar
233: CLOWN Calendar
234: Circus Pictures
235: CLOWN Calendar
236: CLOWN Calendar
237: Home
238: CLOWN Calendar
239: Content
240: Circus Forums
241: Circus Forums
242: CLOWN Calendar
243: CLOWN Calendar
244: CLOWN Calendar
245: CLOWN Calendar
246: CLOWN Calendar
247: CLOWN Calendar
248: CLOWN Calendar
249: CLOWN Calendar
250: Home
251: Circus Pictures
252: Home
253: CLOWN Calendar
254: CLOWN Calendar
255: CLOWN Calendar
256: Home
257: CLOWN Calendar
258: CLOWN Calendar
259: CLOWN Calendar
260: Home
261: Home
262: CLOWN Calendar
263: CLOWN Calendar
264: CLOWN Calendar
265: CLOWN Calendar
266: CLOWN Calendar
267: Circus Pictures
268: Circus Forums
269: News Archive
270: Circus Forums
271: Circus Pictures
272: Circus Pictures
273: CLOWN Calendar
274: CLOWN Calendar
275: CLOWN Calendar
276: CLOWN Calendar
277: CLOWN Calendar
278: CLOWN Calendar
279: CLOWN Calendar
280: CLOWN Calendar
281: Home
282: CLOWN Calendar
283: CLOWN Calendar
284: Home
285: CLOWN Calendar
286: CLOWN Calendar
287: CLOWN Calendar
288: CLOWN Calendar
289: CLOWN Calendar
290: Home
291: CLOWN Calendar
292: CLOWN Calendar
293: CLOWN Calendar
294: CLOWN Calendar
295: CLOWN Calendar
296: Home
297: Home
298: Home
299: Home
300: CLOWN Calendar
301: CLOWN Calendar
302: CLOWN Calendar
303: CLOWN Calendar
304: Circus Pictures
Who are you playing with atm?

Yourself
85 %85 %85 %
Others
14 %14 %14 %
Results :: Polls

Votes: 34

Bring in the CLOWNs!
Interactive software released under GNU GPL, Code Credits, Privacy Policy
CLOWN: Based on Azul-Carbon theme and related images designed by Jamin