Skip to content
  • Categories
  • Recent
  • Groups
  • Users
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Staff Communications
  3. Technical Support
  4. example of how to make tables in posts for those using other sources .

example of how to make tables in posts for those using other sources .

Scheduled Pinned Locked Moved Unsolved Technical Support
8 Posts 3 Posters 148 Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • pwsincdundefined Offline
    pwsincdundefined Offline
    pwsincd
    Admin
    wrote on last edited by pwsincd
    #1

    ๐Ÿ“Š Quick Guide: Adding Tables to Your Posts

    Tables are great for leaderboards, bug reports, rosters, or any info you want organized neatly.


    1๏ธโƒฃ How to Write a Table

    ๐Ÿ”น Code (what you type)

    | Name  | Platform | Rank |
    |-------|----------|------|
    | Paul  | Xbox     | Gold |
    | Jamie | PC       | Plat |
    

    ๐Ÿ”น Result (what it looks like)

    Name Platform Rank
    Paul Xbox Gold
    Jamie PC Plat

    2๏ธโƒฃ Quick Tips

    • First row = column titles
    • Second row = separator (must have ---)
    • Every row starts & ends with |
    • Use | between each column

    Minimum working table:

    | A | B |
    |---|---|
    | 1 | 2 |
    

    3๏ธโƒฃ Styling Ideas

    Users canโ€™t change colours per row, but admins can style all tables globally:

    • Alternating row colours โ†’ table tr:nth-child(even) { background-color: #2a2a2a; }
    • Header styling โ†’ table th { background-color: #111; color: #00ffcc; }
    • Hover effect โ†’ table tr:hover { background-color: #333; }

    4๏ธโƒฃ Blank Template to Copy

    | Column 1 | Column 2 | Column 3 |
    |----------|----------|----------|
    |          |          |          |
    |          |          |          |
    

    Copy the template, replace with your info, and post! ๐ŸŽฎ

    "Donโ€™t waste your words I donโ€™t need anything from you / I donโ€™t care where youโ€™ve been or what you plan to do." - Ian Brown

    1 Reply Last reply
    1
    • Andyboiundefined Offline
      Andyboiundefined Offline
      Andyboi
      Counters
      wrote on last edited by
      #2
      Name Occupation Rank
      Adrian friend group explainer tuff
      Enrique idk tuff

      Please speed i need this my mamas kinda homless i live with my dad and im just trying to help her. Out ๐ŸŒน
      https://www.roblox.com/catalog/116549853318185/Kinda-chep-spunh-bop-shirt tuffer shirt
      https://www.roblox.com/catalog/120657443974064 tuff shirt

      pwsincdundefined 1 Reply Last reply
      0
      • Andyboiundefined Andyboi
        Name Occupation Rank
        Adrian friend group explainer tuff
        Enrique idk tuff
        pwsincdundefined Offline
        pwsincdundefined Offline
        pwsincd
        Admin
        wrote on last edited by
        #3

        ๐Ÿ“Š Advanced Guide: Tables in NodeBB Posts

        Tables let you organize information neatly.
        You can also include links, emoji โ€œbuttons,โ€ and plan for styling.


        1๏ธโƒฃ Basic Table

        ๐Ÿ”น Code

        | Player | Platform | Rank |
        |--------|----------|------|
        | Paul   | Xbox     | Gold |
        | Jamie  | PC       | Plat |
        | Sam    | PS5      | Dia  |
        

        ๐Ÿ”น Result

        Player Platform Rank
        Paul Xbox Gold
        Jamie PC Plat
        Sam PS5 Dia

        2๏ธโƒฃ Table with Links

        ๐Ÿ”น Code

        | Item        | Link                         |
        |------------|------------------------------|
        | Game Guide | [View Guide](https://example.com) |
        | Patch Notes| [See Notes](https://example.com)  |
        

        ๐Ÿ”น Result

        Item Link
        Game Guide View Guide
        Patch Notes See Notes

        3๏ธโƒฃ โ€œButton-Likeโ€ Links Using Emojis

        You can make links look like buttons inside table cells:

        ๐Ÿ”น Code

        | Action       | Link                               |
        |-------------|------------------------------------|
        | ๐ŸŸฉ Start    | [Go](https://example.com/start)   |
        | ๐ŸŸฅ Stop     | [Go](https://example.com/stop)    |
        | ๐ŸŸฆ Info     | [More](https://example.com/info)  |
        

        ๐Ÿ”น Result

        Action Link
        ๐ŸŸฉ Start Go
        ๐ŸŸฅ Stop Go
        ๐ŸŸฆ Info More

        โš ๏ธ These are visual โ€œbuttonsโ€ only. You cannot run scripts or create interactive form buttons inside posts.


        4๏ธโƒฃ Blank Advanced Template

        Copy and fill in your own data:

        | Column 1      | Column 2        | Column 3        |
        |---------------|----------------|----------------|
        |               |                |                |
        |

        "Donโ€™t waste your words I donโ€™t need anything from you / I donโ€™t care where youโ€™ve been or what you plan to do." - Ian Brown

        1 Reply Last reply
        2
        • pwsincdundefined Offline
          pwsincdundefined Offline
          pwsincd
          Admin
          wrote on last edited by
          #4

          further examples

          "Donโ€™t waste your words I donโ€™t need anything from you / I donโ€™t care where youโ€™ve been or what you plan to do." - Ian Brown

          pwsincdundefined 1 Reply Last reply
          1
          • pwsincdundefined pwsincd

            further examples

            pwsincdundefined Offline
            pwsincdundefined Offline
            pwsincd
            Admin
            wrote on last edited by
            #5

            ๐Ÿš€ Advanced Tables Guide for Posts

            You can make your tables more than just rows and columns!
            Hereโ€™s how to create tables with links, emojis, checkboxes, inline code, and images.


            1๏ธโƒฃ Full Example Table

            ๐Ÿ”น Code (Copy This)

            | Player     | Status      | Action                       | Notes           | Avatar             |
            |-----------|------------|-------------------------------|----------------|------------------|
            | Paul      | ๐ŸŸข Online  | ๐ŸŸฉ [Join](https://example.com) | **Top scorer** | ![img](https://via.placeholder.com/20) |
            | Jamie     | ๐Ÿ”ด Offline | ๐ŸŸฅ [Leave](https://example.com)| *Needs help*   | ![img](https://via.placeholder.com/20) |
            | Sam       | ๐ŸŸก Busy    | ๐ŸŸฆ [Info](https://example.com) | `Testing`      | ![img](https://via.placeholder.com/20) |
            

            ๐Ÿ”น Rendered Result

            Player Status Action Notes Avatar
            Paul ๐ŸŸข Online ๐ŸŸฉ Join Top scorer img
            Jamie ๐Ÿ”ด Offline ๐ŸŸฅ Leave Needs help img
            Sam ๐ŸŸก Busy ๐ŸŸฆ Info Testing img

            2๏ธโƒฃ Features Used

            • โœ… Links inside cells
            • โœ… Emojis for status and button-like visuals
            • โœ… Bold/italic/inline code for emphasis
            • โœ… Inline images for avatars/icons
            • โœ… Checklists or other symbols (Markdown compatible)

            Example for tasks:

            | Task           | Done |
            |----------------|------|
            | Setup PC       | - [x] |
            | Test Game      | - [ ] |
            

            3๏ธโƒฃ Styling Ideas (Admin Only)

            Users cannot change row colours individually, but global CSS can make tables look amazing:

            /* Alternating rows */
            table tr:nth-child(even) { background-color: #2a2a2a; }
            
            /* Header styling */
            table th { background-color: #111; color: #0f0; }
            
            /* Hover effect for rows */
            table tr:hover { background-color: #333; }
            

            4๏ธโƒฃ Quick Blank Template

            | Column 1      | Column 2        | Column 3        | Column 4     |
            |---------------|----------------|----------------|-------------|
            |               |                |                |             |
            |               |                |                |             |
            |               |                |                |             |
            

            Copy this template and fill it with your info.
            Combine links, emojis, code, and images to make your posts stand out! ๐ŸŽฎ


            ๐Ÿ“Œ Tip: Keep tables readable, use consistent headers, and donโ€™t overcrowd cells.

            "Donโ€™t waste your words I donโ€™t need anything from you / I donโ€™t care where youโ€™ve been or what you plan to do." - Ian Brown

            1 Reply Last reply
            2
            • Yanderemenheraundefined Offline
              Yanderemenheraundefined Offline
              Yanderemenhera
              Public Relations Senior Staff canida ๐Ÿฅ€ ๐Ÿ˜ญ๐Ÿ™
              wrote on last edited by
              #6

              ok

              wilford bremly, sep, 27th 1934 to Aug, 1st, 2020
              hit me up on discord, my username is wilfordbremly and I will talk to you 'bout daibetus
              my new grounds account is called phroggered
              look at dat to see ''exclusive'' content or whatever. YouTube is far too toxic for me tbh.

              1 Reply Last reply
              0
              • Yanderemenheraundefined Offline
                Yanderemenheraundefined Offline
                Yanderemenhera
                Public Relations Senior Staff canida ๐Ÿฅ€ ๐Ÿ˜ญ๐Ÿ™
                wrote on last edited by
                #7

                i might put this in my bio

                wilford bremly, sep, 27th 1934 to Aug, 1st, 2020
                hit me up on discord, my username is wilfordbremly and I will talk to you 'bout daibetus
                my new grounds account is called phroggered
                look at dat to see ''exclusive'' content or whatever. YouTube is far too toxic for me tbh.

                1 Reply Last reply
                0
                • pwsincdundefined Offline
                  pwsincdundefined Offline
                  pwsincd
                  Admin
                  wrote on last edited by pwsincd
                  #8

                  i made a simple table creator for you guys.. https://wiiubru.com/table.html hope it helps

                  simply copy and paste your markdown to a post.

                  "Donโ€™t waste your words I donโ€™t need anything from you / I donโ€™t care where youโ€™ve been or what you plan to do." - Ian Brown

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Groups
                  • Users
                  • Tags
                  • Popular