horizontal navbar align right?
-
I want to make my horizontal navbar have the buttons align right instead of left. I’ve tried: text-align: right does nothing, putting padding in makes the bar go off the main (“wrapper”) div. Also, having the navbar somehow shrinks part of the top of the masthead div.
Here’s the CSS for the navbar:
#navlist ul
{
padding-left: 0;
margin-left: 0;
background-color: #99FF99;
color: #567EB9;
float: left;
width: 100%;
text-align: right;
}#navlist ul li
{
display: inline;
list-style-type: none;
}#navlist ul li a
{
padding: 0.2em 1em;
background-color: #99ff99;
color: #567EB9;
text-decoration: none;
float: left;
border-left: 1px solid #567EB9;
}#navlist ul li a:hover
{
color: #99ff99;
background-color: #567EB9;
}I edited one of the listamatic navbars to my liking. Here is the site: https://hackerfoundation.org/wp
- The topic ‘horizontal navbar align right?’ is closed to new replies.