The navigation bar at top contains width: 100% height: 50px and is fixed positioned to the top.
However, the UL tag inside is always keeps positioning itself to the left side. It should be centered.
I tried so many things, like making a secondary div and giving it margin: 0 auto, giving
UL margin: 0 auto, making left %30 and right %30, float: center etc.
Am I missing something? What’s the reason I can’t position it to the center?
On ‘#navlist’ change text-align: left to be text-align: center
On ‘#navlist ul’ add the property display: inline-block;