On the page there is a menu:
<body> ... <div class="row"> <div class="col-lg-12"> <ul> ... </ul> </div> </div> How can I move this menu right after the body tag for mobile devices (xs)?
On the page there is a menu:
<body> ... <div class="row"> <div class="col-lg-12"> <ul> ... </ul> </div> </div> How can I move this menu right after the body tag for mobile devices (xs)?
The Responsive Utilities section describes classes that help show certain blocks on certain permissions.
For example, the class .visible-xs-* will only be visible on small screens (<768px).
Classe Extra small devices Phones (<768px)
.visible-xs- * | Visible
.hidden-xs | Hidden
Source: https://ru.stackoverflow.com/questions/486290/
All Articles