Remove right sidebar on mobile
hax0r
Registered Users Posts: 11 Big grins
I cannot find this anywhere, anyone know how to make the right sidebar not visible on mobile?
www.timothydenehy.com
Thanks
www.timothydenehy.com
Thanks
0
Comments
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
.sm-page-layout-region-right {
display: none;
}
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Please add this code to your THEME - > ADVANCED - > CSS section:
@media only screen and (max-width: 600px) {
.sm-page-layout>.sm-page-layout-region>.sm-page-layout-region-right {
display: none !important;
}
}