Hello!
I would like to create some basic tables of this style:
<table>
<tr>
<td colspan=”2″>A</td>
</tr>
<tr>
<td>B</td>
<td>C</td>
</tr>
</table>
and I would like that they had no format at all. No borders, no colour inside the cells, nothing at all that shows that this is a table.
How can I do it?
Hey ksakkos!
I recommend to add a class to the table like:
<table class="nostyletable">
and then use this css code:
#top .nostyletable, #top .nostyletable th, #top .nostyletable td, #top .nostyletable tr{
border: none !important;
background: white !important;
}
to remove the default theme styles from this table.
Cheers!
Peter