Can anyone please help me what code to use to create a 3 column table and 10 rows in Wordpress ? Thanks in advance.
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
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> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> </div>