Site logo

Archived topic

Having each secondary menu items in different rows

3 replies · Started by Makan on September 22, 2019

Viewing posts 1–4 of 4

Hi there,

try this CSS:

@media (min-width: 769px) {
    .secondary-navigation ul {
        display: flex;
        flex-direction: column;
    }
    
    .secondary-navigation .main-nav ul li.nav-button a {
        margin-right: 10px;
    }
}

Thanks for the code.
It works.

You're welcome

This archived topic is closed to new replies.