Archived topic
Layout CSS Issues for No Sidebars and Sidebar/Content
1 reply · Started by Thomas on July 8, 2018
Customizing > Layout > Sidebars
Sidebar Layout: Content(no sidebars)
Blog Sidebar Layout: Sidebar / Content
Screenshot:
http://take.ms/xRKhhO
How can I apply this CSS to only the no sidebar layout? Has to be an easy way I'm missing.
I have it set site-wide so the blog section doesn't look right.
.inside-article {
padding: 50px 110px!important;
}
.comments-area {
padding: 0px 110px!important;
margin-top: 0px!important;
}
Hi there,
There would be a .no-sidebar class in the body so you can do this:
.no-sidebar .inside-article {
padding: 50px 110px!important;
}
.no-sidebar .comments-area {
padding: 0px 110px!important;
margin-top: 0px!important;
}
Let me know if this helps.