Private: Home › Forums › HTML Templates › Mixed Modern and Professional HTML Template › Changing nav menu bar › Reply To: Changing nav menu bar
January 31, 2015 at 2:53 pm
#1852
Participant
Hi,
I think i know what you want to achieve.
You want to display the normal menu instead of the dropdown one on your resolution?
If so, go to css/ and open up responsive.css.
Go to about line 1412 where the code looks like:
.navbar-nav.pi-nav{
display: none;
}
#dl-menu{
display: block;
max-width: 260px;
}
Change the code to look like the following:
.navbar-nav.pi-nav{
display: block;
}
#dl-menu{
display: none;
max-width: 260px;
}
Now go to line 1831 where it is written:
.navbar-nav.pi-nav{
display: none;
}
#dl-menu{
display: block;
max-width: 800px;
}
.collapse.navbar-collapse{
width: 100%;
margin-bottom: 20px;
}
Change that code so it looks like the following one:
.navbar-nav.pi-nav{
display: block;
}
#dl-menu{
display: none;
max-width: 800px;
}
.collapse.navbar-collapse{
width: 80%;
margin-bottom: 20px;
}
Let me know if this is what you wanted to achieve.
Robert