Archived topic
Borders ONLY on Blog
3 replies · Started by robmac on May 22, 2019
Hi,
Currently I'm using the CSS below to apply borders to all my site content. However, can I tweak this CSS so it ONLY puts borders, as they now are, on my blog posts and sidebar? ie, the rest of the site does NOT have borders around containers. Thank you.
ie,
blog - container borders
rest of site - no container borders
CSS I'm using currently:
.separate-containers .inside-article,
.sidebar .widget {
border: 2px solid #000;
}
Hi there,
try this CSS, it will only apply where the columns are active that are required for the blog:
.generate-columns-activated.separate-containers .inside-article,
.generate-columns-activated .sidebar .widget {
border: 2px solid #000;
}
Awesome....thank you!
You're welcome