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

    I am padding cells in a table and when I try “table cellpadding:3px” it looks ok in the editor but not n the page, so I have had to do “<td style:padding:3px> for every TD. Is here a way to style every TD to be the same in a table without tagging every TD

    #286573

    Hey Denis!

    Thank you for using our theme.

    If the table has a unique id or class (e.g. <table id=”mytable” class=”mytblclass”>) you can use the following CSS (e.g. in custom.css):

    
    #mytable td{
    padding: 3px;
    {
    
    or
    
    .mytblclass td{
    padding: 3px;
    }
    

    Regards,
    Günter

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