including table on blog page
-
How can I include a table in a blog page?
The blog I need help with is: (visible only to logged in users)
-
Yes you can I use it on http://crazygoblin.wordpress.com/crazy-goblin-magazine/ as some kind of front page.
But you can’t attach any CSS rules to it because WordPress will ignore and delete them.
-
But you can’t attach any CSS rules to it because WordPress will ignore and delete them.
That’s totally wrong. Table tags accept inline CSS just like any other allowed HTML tag.
-
-
A basic table with two cells across and two rows:
<table> <tr> <td>CONTENT_HERE</td> <td>CONTENT_HERE</td> </tr> <tr> <td>CONTENT_HERE</td> <td>CONTENT_HERE</td> </tr> </table>What do you want your table to look like? Borders? Colors? pictures and text? Other?
- The topic ‘including table on blog page’ is closed to new replies.