Private: Home › Forums › HTML Templates › Mixed Modern and Professional HTML Template › navigation at iPad › Reply To: navigation at iPad
February 11, 2015 at 4:10 pm
#2045
Participant
Hello,
To display logo on the left and menu on the right on lower resolutions, insert the following CSS code at the end of responsive.css file (screenshot attached to this post):
@media (min-width: 768px) and (max-width: 1199px) {
.navbar-header {
display: inline-block;
float: left !important;
}
.collapse.navbar-collapse {
display: inline-block !important;
width: auto;
float: right;
}
}
Robert