• Resolved TheBristolMan

    (@thebristolman)


    I have a row where the background of each cell is the same color. I would like to put a color border (or white line) between the cells so each cell look like a button unto itself. What CSS can be used to make a border between cells in a row? If it is not breaking to bank, can the CSS decall out which side of the cell the border will be on?

    https://wordpress.org/plugins/tablepress/

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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Some CSS like this should work:

    .tablepress-id-123 td {
      border: 1px solid #FFFFFF;
    }

    To only have borders on some side, you can change the CSS to e.g.

    .tablepress-id-123 td {
      border-left: 1px solid #FFFFFF;
      border-right: 1px solid #FFFFFF;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘Borders’ is closed to new replies.