ab Jun 20, 2022 · 11:58 am #16907
Hi,
How do I change the themes default padding in tables?
Kind regards,
Asger
Hi,
How do I change the themes default padding in tables?
Kind regards,
Asger
Hi Asger
Thanks for reaching out.
Please, try adding the following to Appearance > Custom CSS or Customize > Additional CSS or any similar Custom CSS location:
table th,
table td {
padding: 0.75em;
}
@media (max-width: 480px) {
.resp table th,
.resp table td {
padding: 2%;
}
}Please, try adjusting the values above and let me know how it goes.