Archived topic
Modify css
1 reply · Started by Steven Dylan Spitz on March 11, 2020
Viewing posts 1–2 of 2
I'm using the following CSS to put a border around column blocks in WordPress:
.container-border {
border: 1px solid #ccc;
box-sizing: border-box;
}
It works, but I notice the image and text is too close to the border.
Is there any way to put some separation between the border and the content inside?
See several examples on the link.
Hi there,
you can add some padding to your CSS like so:
.container-border {
border: 1px solid #ccc;
box-sizing: border-box;
padding: 20px;
}
This archived topic is closed to new replies.