Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #237820

    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?

    #238594

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.