Archived topic
Adding borders to boxes
5 replies · Started by Dan on January 27, 2021
On this site https://frontstretch.dev/ I want to add red borders to all the white boxes. Is there a Customizer setting for this or a CSS class I can target?
Thanks for your time.
Hi Dan,
Try this CSS:
.main-navigation .inside-navigation, .inside-article, .sidebar .widget, .paging-navigation {
border: 2px solid #ff0000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thanks Leo, that's exactly what I was looking for. Is the a CSS class/ID reference list for GeneratePress somewhere or is it just a matter of using browser dev tools and picking out each element that you need?
is it just a matter of using browser dev tools and picking out each element that you need?
That's what we do. There are simply too many classes in GP to list them out.
We are always happy to help with simple CSS like this though :)
Got it. True, that list would really add up. Thanks again.
No problem :)