code for table

Discussion in 'WordPress' started by mpak11, Nov 18, 2008.

  1. #1
    Can anyone please help me what code to use to create a 3 column table and 10 rows in Wordpress ? Thanks in advance.
     
    mpak11, Nov 18, 2008 IP
  2. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #2
    There is a table creator plugin ;)
     
    MeetHere, Nov 18, 2008 IP
  3. mpak11

    mpak11 Guest

    Messages:
    234
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    oh ill check that out...I do prefer a code...
     
    mpak11, Nov 18, 2008 IP
  4. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #4
    Ive seen two but both are not updated anymore, is there another one?
     
    pipes, Nov 18, 2008 IP
  5. sai6606

    sai6606 Peon

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    search google .. you will get the code generation tool or application on webpage
     
    sai6606, Nov 18, 2008 IP
  6. geekpriyan

    geekpriyan Peon

    Messages:
    126
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    My suggestion is to try TINY MCE Advanced plugin. So that you can easily insert Tables and format them like how you do in MS Word
     
    geekpriyan, Nov 18, 2008 IP
  7. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #7
    Looks like people have issues with it, anyone still using it?
     
    pipes, Dec 4, 2008 IP
  8. Bridgesan

    Bridgesan Peon

    Messages:
    194
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Here is a code for the tables... If you need to put the code in the posting section, you will have to modify your page.php page and place the code between the page code section under <div class="content"> or were ever you like...
    Hope this was usefull...

    <div>

    <table style="width: 100%" cellspacing="0" cellpadding="0">
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    </table>

    </div>
     
    Bridgesan, Dec 5, 2008 IP