This menu was constructed by me:
JSBIN EDIT ; JSBIN DEMO
Upon closer inspection, it appears that the menu is not centered in the middle of the bar; rather, it is centered higher up. My goal is to have it positioned lower, right in the middle.
I had the idea to use margin-top: 26px
since the bar's height is 53 pixels, but unfortunately, this did not produce any change. I also attempted using margin: 0 auto
and text-align:center
.
After reading a post on STACKOVERFLOW, I learned that the issue could be related to floating elements, but I am looking for a solution that will position the menu lower without floating it.
Thank you!