Reputation: 11
How do I make my top-menu vertical and only displaying one item per line when resized to mobile-devices?
Right now it looks like this(Prestashop 1.6 mobile top-menu-fail):
In advance thanks for the advice!
Upvotes: 1
Views: 821
Reputation: 8695
You can add display:block;
to li
.
@media (max-width: 767px)
{
.sf-menu > li {
float: none;
position: relative;
border-right: none;
display: block;
}
}
Upvotes: 1