Site logo

Archived topic

How can i center menu item on Desktop tablet and mobile?

5 replies · Started by Daniel on June 25, 2020

Viewing posts 1–6 of 6

Hi there,

try adding this CSS:

.gen-sidebar-nav {
    text-align: center;
}

Try this CSS:

@media (max-width: 768px) {
    .main-navigation .main-nav ul li a {
        text-align: center;
    }
}

Thanks, it worked. All I did was added this code and it works well on all devices.

.main-navigation .main-nav ul li a {
        text-align: center;
    }

No problem :)

This archived topic is closed to new replies.