• Resolved jphipps

    (@jphipps)


    Am using the following for the table on this page http://www.phem.com

    .tablepress-id-2,
    .tablepress-id-2 tr,
    .tablepress-id-2 tbody td,
    .tablepress-id-2 thead th,
    .tablepress-id-2 tfoot th {
    border: none;
    }

    .tablepress-id-2 .row-1 {
    vertical-align: middle;
    }

    .tablepress-id-2 .row-2 {
    vertical-align: middle;
    }

    .tablepress-id-2 .row-3 {
    vertical-align: middle;
    }

    However, rows are not vertical aligning and there is a very faint border around all cells.

    How do I fix this?

    Thanks.

    http://wordpress.org/extend/plugins/tablepress/

Viewing 1 replies (of 1 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for the question, and sorry for the trouble.

    We just need to make the “Custom CSS” a little bit more aggressive and apply the vertical alignment to the cells directly, and not the rows:

    .tablepress-id-2,
    .tablepress-id-2 tr,
    .tablepress-id-2 tbody td,
    .tablepress-id-2 thead th,
    .tablepress-id-2 tfoot th {
      border: none !important;
    }
    
    .tablepress-id-2 tbody td {
      vertical-align: middle;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Border still showing, no vertical align in cells’ is closed to new replies.