reduce horizontal padding

reduce horizontal padding

veloopityveloopity Posts: 87Questions: 36Answers: 2

We have already used "compact". There is still a horizontal cell padding that could be reduced. Is this possible?

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,144Questions: 26Answers: 4,736
    Answer ✓

    You can inspect the table and find the padding set for the cells. Use the same selector you find and override with your own padding. Here is an example:

    table.dataTable tbody th, table.dataTable tbody td {
      padding: 0px
    }
    

    Kevin

  • veloopityveloopity Posts: 87Questions: 36Answers: 2

    thank you!

Sign In or Register to comment.