The menu is currently aligned to the left and I am on the enterprise theme. I can’t seem to find any guide relating to the enterprise theme.
Thanks in advance!
A user running the Enterprise theme needed help centering their header navigation menu, which was left-aligned by default.
Solution provided:
.main-menu__content with justify-content: centerOutcome:
The CSS solution successfully centered the navigation menu. Issue resolved.
The menu is currently aligned to the left and I am on the enterprise theme. I can’t seem to find any guide relating to the enterprise theme.
Thanks in advance!
Go to your Online store > Themes > Edit code > open main.css file, add this code at the bottom and save file
@media (min-width: 835px) {
.main-menu__content {
justify-content: center;
}
}
That worked perfectly! Thanks!
Happy I could help.