Copy link to clipboard
Copied
Can any of you kind souls show me how to move this menu into the middle of the page please? I have tried the margin 0 auto thing on both the nav tag and also on the .menu class. After fiddling around for a couple of days it still sticks resolutely to the far left edge! The page is at: http://v45.ancestry.higgsy.co.uk/menu3.html Thanks
Add the below selector to your css styles:
nav {
display: flex;
justify-content: center;
background-color: #515f9c;
}
Copy link to clipboard
Copied
Add the below selector to your css styles:
nav {
display: flex;
justify-content: center;
background-color: #515f9c;
}
Copy link to clipboard
Copied
brilliant! osgood saves the day again, many thanks, David