When I add menu items like "Contact" it makes a second row. How do I adjust the width of the menu bar in the CSS. So all buttons are on one row. I assume the css code part is below in app.
nav
{
position: relative;
top:20%;
}
ul.navMenu
{
list-style-type: none;
margin: auto;
position: relative;
top:20%;
display: inline-table;
}
I tried adding width:100% but it didn't work out.
Go to the complete details ...