Is there a way to center the menu? For instance, with 5 items, it’s centered, but if I add a sixth, it’s still anchored in the middle of the screen? Also, on one of the pages, the menu breaks due to the amount of links in it. How do I fix this?
Try this custom code:
@media (min-width:768px){ header#header #navigation { width: auto !important; position: absolute; left: 50%; transform: translateX(-50%); } }
You must be logged in to reply to this topic.