I have a menu that is currently functioning well, but I would like to add a new sublevel onto it. However, if I directly add the new options, they end up hiding the existing ones on the menu.
Here's an image for reference:
I want the new options to appear next to the selected one and not below it. Thank you!
Below are my CSS and HTML:
#menu-bar {
Display: Inline-block;
}
html[xmlns] #menu-bar {
Display: Block;
}
* html #menu-bar {
Height: 1%;
}
...
<ul id="menu-bar">
<li class="active"><a href="http://40kpm.blogspot.com.es/">POTRUS MAXIMUS</a></li>
<li><a href="/p/codex.html">CODEX & DATASLATES</a></li>
...