How can I center the navigation bar of my Blogger blog? It's currently on the left, but I want it centered. template
I tried putting
text-align:center;} and align-items:center;} almost everywhere in the navigation menu code, also but nothing happens...
Try like this:
.containerclass {
display: flex;
justify-content: center;
}