Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I think we can probably include an option for this in the next release. For now try this in the extra.less template
Code:@media (max-width: @xf-responsiveMedium) { .XenBase .xb-footer { display: none; } }
perfect thanks
would disbabling sidebar widgets be the same idea or disable the full sidebar for mobile ?
@media (max-width: @xf-responsiveMedium)
{
.XenBase .xb-footer, .XenBase .p-body-sidebar
{
display: none;
}
}
You could adjust the code to this to hide the sidebar in mobile.
Code:@media (max-width: @xf-responsiveMedium) { .XenBase .xb-footer, .XenBase .p-body-sidebar { display: none; } }
Added a new option to disable the custom footer in medium responsive views, anything under 650px width will not show.
View attachment 7276