How to do the Member box thing

  • TheTempest
    13th Apr 2011 Member 0 Permalink
    Can someone show me how to do the box thing that groups are using to list members and occupations? Please and thank you.
  • vanquish349
    13th Apr 2011 Member 0 Permalink
    a tabble like this,
    testtest2
    test3test4
  • TheTempest
    13th Apr 2011 Member 0 Permalink
    Yes
  • vanquish349
    13th Apr 2011 Member 0 Permalink
    @TheTempest (View Post)
    ok
    to start it < table border = 1 >
    < tr > to sart a new row
    < td > to started a new coloum
    example
    < table border = 1>
    < tr > < td > first row first coloum < /td > < td > first row second coloum < /td > < /tr >
    < tr > < td > second row first coloum < /td > < td > second row second coloum < /td > < /tr >
    < /table >
    (remove the spaces)
    that above will look like
    first row first coloum first row second coloum
    second row first coloum second row second coloum


  • TheTempest
    13th Apr 2011 Member 0 Permalink
    Hmm.... One sec let me try to do this...
  • vanquish349
    13th Apr 2011 Member 0 Permalink
    show me your code that you just wrote
    use paste bin
  • TheTempest
    13th Apr 2011 Member 0 Permalink
    Test One Test Space Two

    edit: Idk how to do paste bin
  • vanquish349
    13th Apr 2011 Member 0 Permalink


    < table border=3 > < tr >< td >Test One < /td > < td > Test Space Two < /td > < /tr >



    sorry i didnt mean remove the space between table and border


    Test One Test Space Two
  • TheTempest
    13th Apr 2011 Member 0 Permalink
    So Test Space Two
    Test One
  • vanquish349
    13th Apr 2011 Member 0 Permalink

    almost, tr means new line so you dont need to close it after the first td, also you need to open another td after yo close the first one


    TheTempest:

    So < table border=1 >< tr >< td >Test One < /tr >< /td > Test Space Two < /table >

    that is what you wrote, you should have wroten < table border=1 > < tr > < td >test one< /td > < td > test space two< /td > < /tr >