9.27.2008As mentioned last week, we're going to be looking at some of the more obscure tags for the forum. The tagging system for the forum is actually what is referred to as BBC, or Bulletin Board Code. We just tend to call it tags because that's the name for the opening and closing bracket sets.
The first 2 tags we're going to look at do the same thing in most browsers. I've never seen them behave differently so I'm going to treat them as interchangeable. If by some odd happenstance they do work differently for you I'd be really interested in hearing about it.
abbr & acronymThe abbreviation and acronym tags allow you to give your reader some extra information about something, considering how often acronyms get used around here it's probably something that should be used on a more regular basis. Or at all for that matter.
The new Celtic Woman CD/DVD is called The Greatest Journey. That's a lot to type out and usually we wind up using the three letter abbreviation TGJ. But if someone was new to the forum and had no idea what TGJ stood for? For this we use abbr and acronym.
[abbr=The Greatest Journey]TGJ[/abbr]
[acronym=The Greatest Journey]TGJ[/acronym]
TGJTGJbrThe br (break) tag causes a forced line break in your text. In other words it has the same effect as pushing the Enter key on your keyboard.
You will find the answer when[br]You answer to[br]The Call
You will find the answer when
You answer to
The Call
As you can see from the example above there is no closing tag. Which makes sense.
email
The email tag can be used to make a link that when clicked by your reader brings up their e-mail program with your e-mail in the to line of a new message. A word of caution though, please don't post your e-mail address on the forum at large, save this tag for use in a PM so that you can know for sure who is getting your e-mail address.
This tag works the same, and looks the same, as a standard url tag. So if you want something other than your e-mail address to display you just put an =your-email-address@com.com in the opening tag like you do for a url.
[email]aislin@celticwomanforum.com[/email]
[email=aislin@celticwomanforum.com]e-mail me[/email]
aislin@celticwomanforum.come-mail meIf you wanted to take it a step further and give the e-mail a subject as well you can. But it's a little different. You have to add a ?subject=whatever to the end of the e-mail address.
Like this:
[email]aislin@celticwomanforum.com?subject=celticwomanforum.com[/email]
[email=aislin@celticwomanforum.com?subject=celticwomanforum.com]e-mail me[/email]
[email=aislin@celticwomanforum.com?subject=celticwomanforum.com]aislin@celticwomanforum.com[/email]
aislin@celticwomanforum.com?subject=celticwomanforum.come-mail meaislin@celticwomanforum.comWhy is it that way? Because that's actually how you'd do it in html.
font
Fonts can be described in 2 ways. 1) By their specific name, Times New Roman, Courier, Ariel, etc. 2) By their class, serif, sans-serif, cursive, monospace, etc.
Before you go getting all excited about thinking you can use your favorite font on the forum there's a few things to consider. If you specifically name a font and your reader doesn't have that font installed on their computer, they won't see the pretty font that you intended. So if you are going to use a specific name try to think if it's one that will be available on most computers. If you use their class that's usually a lot better. Your computer will go and grab its favorite font of that class and use it. So if you specify serif your computer will probably use Times New Roman.
[font=Times New Roman]Celtic Woman[/font]
[font=serif]Celtic Woman[/font]
[font=Verdana]Celtic Woman[/font]
[font=sans-serif]Celtic Woman[/font]
Celtic WomanCeltic WomanCeltic WomanCeltic WomanYou can specify more than one in the opening tag and let the computer go through the list until it finds one it likes. That way if your reader doesn't have the exact font you want, they'll still get the general effect.
[font=Verdana, sans-serif]Celtic Woman[/font]
Celtic Womanhr
The hr, or horizontal rule, is just that. It places a straight line across your post. It has no closing tag and you can't color it or change it's size, it just is.
[hr]
meFor those of us who frequent the chat the me tag won't be all that new. The /me command can be used in the chat if you wish to say you do something. If that makes no sense to you don't worry about it, or go into the chat someday and type "/me says hi" and see what happens.
Unlike in the chat however, you can specify someone else doing the action with the tags. You can either use the me tag or you can do it like we do in the chat, a simple /me to specify yourself. If you do do it the /me way it has to be on it's own line.
[me=aislin]says hi[/me]
[me=celticfan06]pokes aislin[/me]
/me reminds Cait that that's never a good idea
* aislin says hi
* celticfan06 pokes aislin
* aislin reminds Cait that that's never a good idea
You can insert any name into the opening tag, it doesn't run off of usernames or anything, but you do have to have a name in the opening tag, you cant just say [me]aislin[/me]. As you can see the forum doesn't like it.
Do try to think about who you are going to be speaking for if you use this tag with someone else's name. And whether or not they'd appreciate you speaking for them.
nobbcLast week in the great big list of list types I made the forum show the BBC code without having to use the code tags. This is accomplished through the nobbc tag. A word of caution, if you don't warn people you are using the nobbc tag it can get very confusing.
[move]This text should be moving.[/move]
[nobbc][move]This text should be moving.[/move][/nobbc]
[move]This text should be moving.[/move]
pre
The preformatted text tag, pre, tells the forum to display your text exactly as you've typed it. To be quite honest I can't think of many times when this tag would be useful, but as it's a button I thought I'd go ahead an let you know.
The best example I can come up with is if you wanted to add extra spaces to to front of a word and then wanted to center the text like this:
Normally, you could just put the extra spaces in front of the second word so that it would appear indented, but when you center something it removes the extra spaces at the beginning. Like this:
Celtic
Woman
[center]Celtic
Woman[/center]
Celtic
Woman
Celtic
Woman
So if you wanted to be sure that the spaces show you'd use the pre tag.
[center]
[pre]Celtic
Woman[/pre]
[/center]
And yes, it does automatically mess with the font so that everyone will know they're looking at formatted text.
size
The size button is one of the more straightforward buttons to use. But there are actually four ways to specify the size you want.
We'll start with the obvious, when you push the button you get:
[size=10pt]The High Kings[/size]
The High KingsThe pt after the 10 stands for points, this is the same measure that most word processing programs use, think 12 point font.
Your next option is pixels. Pixels are the standard unit of measurement for images on a computer. If you look back where we learned how to manipulate the size of an image in an img tag the numbers we put in for height and width were the number of pixels for that measurement. So instead of having pt after the number, we're going to use px for pixels.
[size=10px]The High Kings[/size]
The High KingsAs you can see there is a bit of a difference between 10 points and 10 pixels.
The third way is to use the relative words larger and smaller. They automatically make the text larger or smaller than the text around it.
The High Kings [size=larger]The High Kings[/size] The High Kings
The High Kings [size=smaller]The High Kings[/size] The High Kings
The High Kings
The High Kings The High Kings
The High Kings
The High Kings The High Kings
It's not a big difference but it is appreciable.
Your last option is to use size words. Your options are: x-small, small, large, x-large.
[size=x-small]The High Kings[/size]
[size=small]The High Kings[/size]
[size=large]The High Kings[/size]
[size=x-large]The High Kings[/size]
The High KingsThe High KingsThe High KingsThe High Kingstt
The last tag we're going to look at is the tt tag. The tt stands for teletype and it just make your text appear like it would off a typewriter. I have no idea why you'd use it or for what but it's a button and now you know what it does.
[tt]CelticWomanForum.com[/tt]
CelticWomanForum.comThat's it for this week. I'd like to say that it's still officially Saturday for most of the country so this is out on time. One thing I didn't cover this week is all of the table tags. I'm going to save that for next week as it's a long drawn out concept to try to explain. But after that I'm out of ideas so PLEASE, if you have an idea, and it hasn't been discussed here yet, let me know.
aislin