Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    To be honest, you shouldn’t really need tables for this. Tables should only be used for presenting tabular data, but not for such layout purposes. Some regular CSS in your theme should be fine for that.

    Now, for you particular issues: You’ll probably have to set the column widths of the table, e.g. with

    .tablepress-id-28 {
    	width: auto !important;;
    }
    .tablepress-id-28 td {
      width: 200px;
    }

    Removing the border is not working at the moment, as your theme is also adding one. We’ll therefore have to raise the priority of the “Custom CSS”. For that, just change the line

    border: none;

    to

    border: none !important;

    Regards,
    Tobias

    Thread Starter underdog_32

    (@underdog_32)

    Thanks!

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂 Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Cellpadding’ is closed to new replies.