Hi and sorry for this late reply! It’s been very hectic times here lately.
If it’s for the entire list, then you could use something like this:
@media (min-width: 768px) {
nav {
text-align: center;
}
#main-menu {
display: inline-block;
text-align: left;
}
}
where nav
is the menu list container element (it might be different in your layout but the sample code above should work on the demo page).
Cheers!