Hi – I would like to add a vertical sidebar border between the content and sidebar sections. I would only like to have this border however on the blog posts pages however, not on any other pages. Is this possible? If so how would I do so? Thanks!
Hi wss310!
Can you post the link to your Enfold website? There is already a border between sidebar and content sections.
Cheers!
Yigit
Here is an example blog post:
http://noblewhy.com/2014/01/13/why-retirement-isnt-all-its-cracked-up-to-be/
Hi!
Please find following code in Quick CSS or Custom.css file
.content, #top #main .sidebar, .sidebar_left .content {
border-left-style: none!important;
border-right-style: none!important;
}
and remove !important rules then add following code to Quick CSS
.blog #main .sidebar { border-style: solid!important; }
Best regards,
Yigit
Hi, here’s what I have in my style.css (in my child theme):
.content, #top #main .sidebar, .sidebar_left .content {
border-left-style: none;
border-right-style: none;}
.blog #main .sidebar {border-style: solid!important; }
This does not show a border on the blog page. I do not have any border CSS in my quick CSS. Any other thoughts? Thanks!