Comments Morgane Charlier started the conversationSeptember 14, 2023 at 5:11pmHello, I would like to be able to have less margin between the text and the line of the table. Here is the style code I have but when I modify the margin, nothing change. Do I need to modify or add something ? <style> table { width: 100%; border-collapse: collapse; } td { padding: 3px; border: 1px solid #000; } tr.marge-ligne { margin: 5px; } </style> 2,610PenciDesign repliedSeptember 15, 2023 at 1:32amHi,Please navigate to Appearance → Customize → Custom CSS, and then insert the following custom CSS code: .post-entry td, .post-entry th { padding: 3px;}Change 3px to the spacing size you want to show.Regards,PenciDesign.Morgane Charlier repliedSeptember 15, 2023 at 1:39pmPerfect, it's working like I wanted. Thanks a lot ! Sign in to reply ...
Hello,
I would like to be able to have less margin between the text and the line of the table. Here is the style code I have but when I modify the margin, nothing change. Do I need to modify or add something ?
<style>
table {
width: 100%;
border-collapse: collapse;
}
td {
padding: 3px;
border: 1px solid #000;
}
tr.marge-ligne {
margin: 5px;
}
</style>
Hi,
Please navigate to Appearance → Customize → Custom CSS, and then insert the following custom CSS code:
Change 3px to the spacing size you want to show.
Regards,
PenciDesign.
Perfect, it's working like I wanted. Thanks a lot !