Hi again
I’m trying to remove the vertical line that separates my sidebar on all the blog posts.
Ive tried using the below code in the quick css without success.
.blog .sidebar, .blog .content { border: none !important; }
Thanks in advance
Hey Arran!
Thank you for using our theme.
Try the following:
.single .content {
border-right-style: none;
border-right-width: 0px;
}
.single .sidebar {
border-left-style: none;
border-left-width: 0px;
}
The link you gave me was to a single post, but you can replace .single with .blog.
Best regards,
Günter
Hi again
That didn’t work with either of the two methods.
Hi!
Please add !important rule as following
.single .sidebar, .single .content {
border: none!important;
}
Best regards,
Yigit
Yigit, you are the man…
Any chance you can help with this open question?
https://kriesi.at/support/topic/layout-issue-3/
Cheers