Hi,
I am trying to hide sidebar only on one post category. To be exact - this category is handled by WP Event Manager plugin, but I guess this does not make any difference in the approach to the solution.
The issue is that I am able to hide the sidebar and also make the rest of the content full width, but only on Cornerstone preview mode. Once I switch to the front-end view (as typical user), the content is still full width (as it should be), but the sidebar is located UNDER the content despite being hidden via CSS.
I use this code:
/*hide sidebar on 1 category only*/
.single-event_listing .x-sidebar {
display: none !important;
}
.single-event_listing .x-main.left {
width: 100%;
}
Do you have any idea why is this happening?
Thanks
After thorough inspection and chat with two IT guys I was told, that the cache is not causing the issue.
