Forums
Home / Theme: Storefront / Remove padding from columns
(@luke1232112321)
1 year, 5 months ago
Can anyone tell me where to edit column padding/margins??
(@aguinaldodarla)
Hi @luke1232112321
Column padding and margins are typically controlled by your WordPress theme’s CSS. You can use a CSS rule like:
.my-column { padding: 10px; }
Similarly, to adjust the margin, you can use:
.my-column { margin: 10px; }
Please replace .my-column with your actual CSS class. You can inspect it by pressing CTRL+SHIFT+I if it doesn’t work.
.my-column