www.marilenabeltramini.itwww.marilenabeltramini.it messageborad
You are not logged in. register
Name Password

index
  • register
  • search
  • latest posts
  • top 10
  • inbox
  • memberslist
  • FAQ
  •   Previous TopicIndexNext Topic  
     
    How can I use formatted Text?
    There are two options for using formatted text: HTML and vBB-code.
    Both require to be allowed by the administrator or supermoderator for the respective forum.
    While HTML won't be allowed in much forums for security reasons, vBB-code being much more restricted than HTML should be commonly available.
    In order to check the availability of HTML and vBB-code, go to any message in the respective forum and have a look at the bottom of the page.
    At the left you'll find something like HTML is off VBB Code is on.
    In this case you could make use of vBB-code. In the next answer you can read about how to use it.
    If both options are "off", you can't use formatted text in that forum.
     
     
    What is vBB-code?
    vBB-Code allows you to use formatted text in your messages.
    See below for a list of currently available tags and their use.
     
    Syntax:Example:Comment:
    General Formats:
    [b]text[/b][b]bold text[b]becomesbold textEverything between [b] and [/b] will be shown in bold letters.
    [i]text[/i][i]italic text[/i]becomesitalic textEverything between [i] and [/i] will be shown in italic letters.
    [u]text[/u][u]underlined text[/u]becomesunderlined textEverything between [u] and [/u] will be shown in underlined letters.
    [size=n]text[/size][size=4]font size[/size]becomes font sizeReplace n with a number from 0 to 7.
    [color=#rrggbb]text[/color][color=#9933CC]font color[/color]becomesfont color Replace rr, gg, and bb with hexadecimal values for the portions of red green and blue for the desired font color. Alternatively, you can use the names of the "named colors".
    Example:
    [color=saddlebrown]some brown text[/color]  becomes  some brown text.
    Special Formats:
    [quote]text[/quote][quote]quoted text[/quote]becomes
    quoted text
    A formatting, that helps to distinguish quoted elements.
    [code]text[/code][code]
    <?php
    phpinfo();
    ?>
    [/code]
    becomes

    <?php
    phpinfo();
    ?>
    A formatting that should faciliate reading code segments:
    Spaces are preserved an a non-proportional (monospaced) font is used.
    [html]text[/html][html]
    <!-- short table code -->
    <table
       width="100%"
       cellspacing="0"
       cellpadding="0"
    >
      <tr>
        <td class="content">
           short table code
        </td>
      </tr>
    </table>
    [/html]
    becomes
    <!-- short table code -->

    <table
       width="100%"
       cellspacing="0"
       cellpadding="0"
    >

    <tr>
    <td class="content">
          short table code
        </td>
    </tr>
    </table>
    Works like the [code]-tag, but uses a colored highlighting of HTML-tags, their attributes, normal texts and comments
    Positioning Formats:
    [left]text[/left][left]left-justified text[/left]becomes
    left-justified text
    Justifies the text to the left. Might be of use in right-to-left written languages.
    [left m]text[/left][left 20]left-justified text[/left]becomes
    left-justified text
    As above, but with a margin to both sides. Replace n by a number to set the margin.
    [left l r]text[/left][left 50 120]left-justified text[/left]becomes
    left-justified text
    As above, but with a margin to both sides. Replace l and r by numbers to set the left and right margin.
    [center]text[/center][center]centered text[/center]becomes
    centered text
    Centers the text.
    [center m]text[/center][center 100]centered text[/left]becomes
    centered text
    As above, but with a margin to both sides. Replace n by a number to set the margin.
    [center l r]text[/center][center 20 100]centered text[/left]becomes
    centered text
    As above, but with a margin to both sides. Replace l and r by numbers to set the left and right margin.
    [right]text[/right][right]right-justified text[/right]becomes
    right-justified text
    Justifies the text to the right.
    [right m]text[/right][right 20]right-justified text[/right]becomes
    right-justified text
    As above, but with a margin to both sides. Replace n by a number to set the margin.
    [right l r]text[/right][right 120 50]right-justified text[/right]becomes
    right-justified text
    As above, but with a margin to both sides. Replace l and r by numbers to set the left and right margin.
    [justify]text[/justify][justify]Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.[/justify]becomes
    Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.
    Justifies the text.
    [justify m]text[/justify][justify 20]Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.[/justify]becomes
    Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.
    As above, but with a margin to both sides. Replace n by a number to set the margin.
    [justify l r]text[/justify][justify 40 20]Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.[/justify]becomes
    Some more text will be needed to show the effect of this tag. The width of spaces is altered in order to create lines of the same length.
    As above, but with a margin to both sides. Replace l and r by numbers to set the left and right margin.
    Structural Formats:
    [hr][hr]becomes
    Creates a horizontal line.
    [li]list entry[li]Item 1becomes
  • Item 1
  • Defines a lit entry. Should be placed within [ul] and [/ul] or [ol] and [/ol].
    [ul]list entries[/ul][ul]
    [li]Item 1
    [li]Item 2
    [li]Item 3
    [/ul]
    becomes

    • Item 1
    • Item 2
    • Item 3
    Defines an unsorted list. The corresponding entries are defined by [li]-tags.
    [ol]list entries[/ol][ol]
    [li]Item 1
    [li]Item 2
    [li]Item 3
    [/ol]
    becomes

    1. Item 1
    2. Item 2
    3. Item 3
    Defines an unsorted list. The corresponding entries are defined by [li]-tags.
    Links:
    [url]web adress[/url][url]vbb.eniki.de[/url]becomesvbb.eniki.deCreates a clickable link to another page.
    [url='web adress']Name des Verweises[/url][url='vbb.eniki.de']versatileBulletinBoard[/url]becomesversatileBulletinBoardAs above, but the link can be named this way.
    [mail]email adress[mail][mail]vbb@eniki.de[mail]becomesvbb@eniki.deCreates a clickable link to an email address.
    [mail='email adress']Name des Verweises[mail][mail='vbb@eniki.de']Mail to Holger[mail]becomesMail to HolgerAs above, but the link can be named this way.
    [link=n]text[/link][link=13]look at this thread[/link]becomeslook at this threadCreates a link to another message on the same board. Replace n with the message's ID.
    [forum=n]text[/forum]Look at [forum=1]this[/forum] forumbecomesLook at this forumCreates a link to another forum on the same board.
    [img]adress of image[/img][img]faq/images/nature.jpg[/img]becomesIntegrates an image into the message.
    [img w=x h=y]adress of image[/img][img w=76 h=50]faq/images/nature.jpg[/img]becomesAs above, but with the image's width and height defined by w and h.
    Replace x and y by numbers representing the desired width and height.
     
    Why do some messages have a red dot and others a green one?
    These "Lights" indicate, if the respective message is new.
    Has the message ben written after your last login, the "light" will be green, otherwise it will be red.
     
     
    What do the different folder icons mean?
     A normal thread
     A thread with more than 15 replies
     This thread has been closed: Answering to that thread is not possible, anymore.
     This thread has been fixated: It won't be pushed down by other threads.
     
    Can I delete my posted message?
    No, unless you are a moderator.
    You can, however, edit your post (and thus delete all text it contains), but you'll leave an empty post behind.
    Introducing editing: Please mark you changes when editing posts. Make use of the [edit]-tag, if you can, or otherwise mark your changes with asterisks or brackets or the like.
    This will make it much easier to follow a discussion for others.
     
      Previous TopicIndexNext Topic  

    powered by versatileBulletinBoard v0.9.8
    ©2002 Holger Tag