Je bent niet ingelogd. registreer
Naam Wachtwoord

index
  • registreer
  • zoek
  • actieve topics (de 30 laatste reacties)
  • top 10
  • inbox
  • ledenlijst
  • FAQ
  •    
     
    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]bold textEverything between [b] and [/b] will be shown in bold letters.
    [i]text[/i][i]italic text[/i]italic textEverything between [i] and [/i] will be shown in italic letters.
    [u]text[/u][u]underlined text[/u]underlined textEverything between [u] and [/u] will be shown in underlined letters.
    [size=n]text[/size][size=4]font size[/size] font sizeReplace n with a number from 0 to 7.
    [color=#rrggbb]text[/color][color=#9933CC]font color[/color]font 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]    some brown text.
    Special Formats:
    [quote]text[/quote][quote]quoted text[/quote]
    quoted text
    A formatting, that helps to distinguish quoted elements.
    [code]text[/code][code]
    <?php
    phpinfo();
    ?>
    [/code]

    <?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]
    <!-- 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]
    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]
    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]
    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]
    centered text
    Centers the text.
    [center m]text[/center][center 100]centered text[/left]
    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]
    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]
    right-justified text
    Justifies the text to the right.
    [right m]text[/right][right 20]right-justified text[/right]
    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]
    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]
    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]
    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]
    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]
    Creates a horizontal line.
    [li]list entry[li]Item 1
  • 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]

    • 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]

    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]vbb.eniki.deCreates a clickable link to another page.
    [url='web adress']Name des Verweises[/url][url='vbb.eniki.de']versatileBulletinBoard[/url]versatileBulletinBoardAs above, but the link can be named this way.
    [mail]email adress[mail][mail][email protected][mail][email protected]Creates a clickable link to an email address.
    [mail='email adress']Name des Verweises[mail][mail='[email protected]']Mail to Holger[mail]Mail to HolgerAs above, but the link can be named this way.
    [link=n]text[/link][link=13]look at this thread[/link]look 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] forumLook at this forumCreates a link to another forum on the same board.
    [img]adress of image[/img][img]faq/images/nature.jpg[/img]Integrates an image into the message.
    [img w=x h=y]adress of image[/img][img w=76 h=50]faq/images/nature.jpg[/img]As 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 been 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.
     
       

    powered by versatileBulletinBoard v1.0.0 RC2
    ©2002-2004 Holger Tag
    pagina opgebouwd in: 0.045 seconden