+ 1
How do you create a horizontal navigation bar?
Had an already existing side bar, which now has to become a horizontal navigation bar.
2 Respuestas
+ 11
You can do this by using the nav tag and lists.
<nav>
<ul>
<li><a href="#">Home</a></li>
.
.
</ul>
</nav>
in the css file maybe u have to make a change for to put the menu in horizontal mode. check display: inline.
+ 1
display: inline-block or inline. they have to be able to fit like that i think though.