Inserting a table without borders
-
I’m new to wp, but I have worked in html for years.
I’m trying to add a simple table without borders:
<table border=”0″><tr><td>Cell 1</td><td>Cell 2</td></tr></table>
But the border always appears.
I’ve also tried it using the “style” comment:
<table style=”border-width: 0;”><tr><td>Cell 1</td><td>Cell 2</td></tr></table>
But there’s always a border.
Any ideas on how to do this?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
A fellow forum volunteer has written a post which may be of interest
-
Ah! Thanks, justjennifer. I didn’t realize I needed the style=”border:none;” within each <td> tag…
-
Arg. I purchased the CSS update and added this to the CSS:
table {
border:none;
}td {
border:none;
}And the borders still appear.
Ideas?
Thanks!
-
-
-
- The topic ‘Inserting a table without borders’ is closed to new replies.