I’ve searched around for quite a bit of time but couldn’t find a satisfactory answer for this. I’m trying to disable the right sidebar in individual answer pages: http://3dworkbench.co/question/test/
How should I proceed?
1 Answers
I checked your site and saw that sidebar is already removed from the single question page. I think you’ve figured it out, haven’t you?
Please see this: http://3dworkbench.co/question/local-pickup/
The sidebar is still there.
You can add the following code to the style.css file:
@media (min-width: 981px) {
.single-dwqa-question #main-content .container:before {
background-color: transparent;
}
}
Thank you!
Please login or Register to submit your answer