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

    (@tobiasbg)

    Hi Janet,

    thanks for your question, and sorry for the trouble.

    Centering those cells on the page is not possible, unfortunately, due to how the Reponsive Tables CSS works.
    Removing the borders should therefore be the best option. For that, please change the CSS

    .tablepress-id-1 {
    	width: auto;
    	margin: 0 auto 1em;
    	border-color: #ff214e solid #1px;
    }

    to

    .tablepress-id-1 {
    	width: auto;
    	margin: 0 auto 1em;
    	border: none !important;
    }

    and add this below it:

    .tablepress-id-1 td {
    	border: none !important;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Cell Not Centered in Responsive View’ is closed to new replies.