r7-labs / R7.Epsilon

Highly customizable, multiportal, responsive skin for DNN Platform based on Bootstrap 4
GNU Affero General Public License v3.0
5 stars 2 forks source link

Side banners are still visible in mobile browsers #237

Closed roman-yagodin closed 3 years ago

roman-yagodin commented 3 years ago

Quickfix: add the following code to the portal.css

.skin-sidebanner-panes {
    display: none;
}
@media only screen and (min-width: 1510px) {
    .skin-sidebanner-panes {
        display: block;
    }
}