Archived topic
Create Border on Container
3 replies · Started by Damian on October 1, 2018
Viewing posts 1–4 of 4
I am trying to create 1px border around the container area of 900px
Hi there,
Try this CSS:
.site-content {
border: 1px solid #000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
hey how do I edit this CSS to only have the border show up on the sides and not on top and bottom?
Replace:
border: 1px solid #000;
with:
border-top: 1px solid #000;
border-bottom: 1px solid #000;
This archived topic is closed to new replies.