Using BBCodes

Please post questions or comments about the site or the forum here.
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Using BBCodes Unread post

I've added some custom BBCodes for your use.

Code: Select all

[left]Align Left[/left]
Align Left

Code: Select all

[center]Align Center[/center]
Align Center

Code: Select all

[right]Align Right[/right]
Align Right

Code: Select all

[hr]red[/hr]


Code: Select all

[background=yellow]Text[/background]
Text

or use hex code

Code: Select all

[background=#ffff00]More text[/background]
More text
Hawk
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Re: New BBCodes Unread post

Another new BBCode.

Code: Select all

[marq=left][b][color=#BF0000]Right to left Marquee[/color][/b][/marq]
Right to left Marquee

Code: Select all

[marq=right]Left to right Marquee[/marq]
Left to right Marquee

Code: Select all

[marq=up][background=yellow]Bottom to top Marquee[/background][/marq]
Bottom to top Marquee

Code: Select all

[marq=down]Top to bottom Marquee[/marq]
Top to bottom Marquee

Here's the button to use.
button.jpg
button.jpg (1.53 KiB) Viewed 12407 times
Hawk
User avatar
AZ Rail Rat
Dispatcher
Posts: 302
Joined: Sat Nov 11, 2006 7:56 pm
Location: Arizona
Contact:

Re: New BBCodes Unread post

Hope you did not create a monster there Dawg - - -
!*00*!

Guess it does not work with smilies?
Oh, you have to put something around it . . .
You !*00*!DAWG
Ferroequines UNITE!!!

http://azrailrat.com/
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Re: New BBCodes Unread post

I'm kinda' hoping folks will use a just a bit of restraint. :mrgreen:

I may have to do away with the up and down marquee though. We'll see how it goes.
Hawk
User avatar
Canadian Viking
Brakeman
Posts: 171
Joined: Thu May 17, 2007 11:46 am
Location: Alberta, Canada

Re: New BBCodes Unread post

What Goes UpMust Come Down
!**yaaa
Now, how about a spinning wheel, Hawk?!! Very cool 8-)
Moderation, CV, moderation.
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Re: New BBCodes Unread post

Canadian Viking wrote:Now, how about a spinning wheel, Hawk?!! Very cool 8-)
I haven't seen a BBCode for that or else I might add it. :mrgreen:
Hawk
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Re: New BBCodes Unread post

BBCode supports two types of lists, unordered and ordered. An unordered list outputs each item in your list sequentially one after the other, indenting each with or without a bullet character.

To create an unordered list without bullet characters, use this code:

Code: Select all

[list]First item[/list]
[list]Second item[/list]
[list]Third item[/list]
This would generate the following list.
  • First item
  • Second item
  • Third item
To create a list with bullet characters, use this code:

Code: Select all

[list]
[*]First item
[*]Second item
[*]Third item[/list]
This would generate the following list:
  • First item
  • Second item
  • Third item
You can also create a series of lists with sub-lists, as shown here:

Code: Select all

[list][*]First item
[list][*]First item A
[*]First item B[/list]
[*]Second item
[list][*]Second item A
[list][*]Second item AB[/list]
[*]Second item B[/list]
[*]Third item[/list]
This would generate the following list:
  • First item
    • First item A
    • First item B
  • Second item
    • Second item A
      • Second item AB
    • Second item B
  • Third item
The second type of list, an ordered list, gives you control over what is output before each item. To create an ordered numbered list you use

Code: Select all

[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
Which gives you 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:

Code: Select all

[list=A]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]
Which gives you this:
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer
You can also use a combination of numbered and alphabetical lists for sub-lists:

Code: Select all

[list=1]
[*]Go to the shops
[list=A][*]Micro Center
[list=1][*]Georgia
[*]Alabama[/list]
[*]Best Buy[/list]
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
Which gives you this:
  1. Go to the shops
    1. Micro Center
      1. Georgia
      2. Alabama
    2. Best Buy
  2. Buy a new computer
  3. Swear at computer when it crashes
You can also use lower case letters instead of upper case.

You can also use Roman Numerals.

Code: Select all

[list=I]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
Which gives you this:
  1. Go to the shops
  2. Buy a new computer
  3. Swear at computer when it crashes
And a combination of all 3.

Code: Select all

[list=1]
[*]Go to the shops
[list=A][*]Micro Center
[list=I][*]Georgia
[*]Alabama[/list]
[*]Best Buy[/list]
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
Which gives you this:
  1. Go to the shops
    1. Micro Center
      1. Georgia
      2. Alabama
    2. Best Buy
  2. Buy a new computer
  3. Swear at computer when it crashes
Want to get really crazy with lists?

Code: Select all

[list=1]
[*]Go to the shops
[list=A][*]Micro Center
[list=I][*]Georgia
[*]Alabama[/list]
[*]Best Buy[/list]
[*]Buy a new computer
[list=A][*]Dell
[list=I][*]Laptop
[list][*]Win 8.1
[list=a][*]Home
[*]Professional[/list]
[*]Win 10[/list]
[*]Desktop[/list]
[*]HP[/list]
[*]Swear at computer when it crashes[/list]
Which gives you this:
  1. Go to the shops
    1. Micro Center
      1. Georgia
      2. Alabama
    2. Best Buy
  2. Buy a new computer
    1. Dell
      1. Laptop
        • Win 8.1
          1. Home
          2. Professional
        • Win 10
      2. Desktop
    2. HP
  3. Swear at computer when it crashes
As you can see you can use any number of combinations of unordered and ordered (numbered, alphabetical, Roman Numerals) list to create as deep a set of lists as you need.
Hawk
User avatar
Hawk
The Big Dawg
Posts: 6503
Joined: Fri Nov 10, 2006 10:28 am
Location: North Georgia - USA

Re: Using BBCodes Unread post

I've added a couple new BBCodes. Would these be useful to folks?

First one is acronym. When you click the button it places this in your post.

Code: Select all

[acronym][/acronym]
Here's how to use it.

Code: Select all

It was so funny I was [acronym]LOL, Laughing Out Loud[/acronym] at his joke.
It comes out like this.
It was so funny I was LOL at his joke.

Hovering your mouse over the underlined text gives you this.
Acronym.jpg
Acronym.jpg (12.65 KiB) Viewed 9951 times

The other code is the character code. When you click the button it places this in your post.

Code: Select all

[char]code[/char]
There's several characters that can be utilized with this code. Here's some examples.
BBCode.jpg
Currency.jpg
Currency.jpg (16.72 KiB) Viewed 9951 times
Here's how to use it.

Code: Select all

I wonder if this is copyright[char]copy[/char], registred[char]reg[/char], or Trademarked[char]trade[/char]?
I wonder if this is copyright©, registred®, or Trademarked™?

Code: Select all

I paid 50[char]cent[/char] (0.44624[char]euro[/char], 0.32970[char]pound[/char], 59.95[char]yen[/char]) for that candy bar.
I paid 50¢ (0.44624€, 0.32970£, 59.95¥) for that candy bar.

Code: Select all

5[char]times[/char]3=15
5×3=15 - using the char code
5x3=15 - using a lower case x
5X3=15 - using an upper case X

Code: Select all

15[char]minus[/char]5=10
15−5=10 - using the char code
15-5=10 - using the minus sign on the keyboard

Code: Select all

15[char]div[/char]3=5
15÷3=5
15/3=5
Hawk
Post Reply