Archived topic
How to add borders around elements with CSS?
3 replies · Started by Christian on May 3, 2020
I would like to add a solid black 1px border around the white content boxes on my site. I also am considering to add a border around the featured images of each post. I imagine there is a CSS code for this, but I'm not savvy about it sometimes. Can you show me what code I need to add in order to achieve this? Thank you.
Hi there,
Try this:
.separate-containers .inside-article, .sidebar .widget, .post-image img {
border: 1px solid #000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Awesome, yeah, thanks, that did it.
No problem :)