• I’d like to slightly pad the beginning of the cells so the text doesn’t start right against the border but don’t want to effect the spacing in the rest of the table, is this possible? If not I guess I’ll have to add a nbsp before the text in each cell

    Also is it possible to increase or highlight part of a cell border? Say I won’t the right side of a column with a thicker border without effecting the other sides? What I’ve done in the past is add a real skinny column between two columns to make a separator between the columns and had a small graphic or change the cell background of it.

    You can see what I’m talking about here:

    https://planet.vsphere-land.com/

    Thanks!

Viewing 1 replies (of 1 total)
  • Hi,

    yes, that is possible.
    (In fact you moved the text right against the border with a “padding: 0px!important;” command).
    Try either changing that to “padding: 0px 0px 0px 3px!important;”
    or add

    .wp-table-reloaded-id-3 td {
    padding-left: 3px!important;
    }

    after that other CSS.

    To add a thicker border, I suggest trying

    .wp-table-reloaded-id-3 .column-3 {
    border-right: 3px solid red;
    }

    Best wishes,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-Table Reloaded] cell padding/border lines’ is closed to new replies.