Remove sidebar from mobile view

I am trying to remove the sidebar from the mobile view. What would be the appropriate CSS code to effect this in Shapely?

I’ve tried various things I have googled, but the sidebar is still displaying on mobile devices.

Can you tell me how you removed it? Nothing I have tried so far has worked.

Hi there

You can use this code to hide it:

@media (max-width: 991px){
aside#secondary {
    display: none;
}
}

Regards

Thank you, that worked!

You are welcome :slight_smile:

Have a good day

Ok, im going to close this case now, feel free to contact us again :slight_smile: