Hello,
I have created an e-shop and have the following problem:
In shop overview, I have a right sidebar which contains product filtering widgets. I need this sidebar to appear on mobile view (below product single column). I have noticed (by resizing the window) that this is default behaviour in intermediate (ie. tablet) resolutions. How can I achieve the same resulton smartphones?
IMPORTANT: At the same time, I need this sidebar to appear ONLY on shop overview. That is, when a single product is being viewed I want no sidebars present.
Thank you
Hey Aristidis!
Navigate to Dashboard > Enfold > Sidebar Settings and make sure the “Sidebar on Smartphones” option is checked. Next add this to your custom CSS.
@media screen and (max-width:400px) {
.single-product aside { display: none !important; }
}
Cheers!
Elliott