• Is it possible to have a 2 column menu in category menu (secondary menu)? i have a lot of category, so that when user opens category menu, it’s too long…

    i tried with some css [li:nth-child(odd) li:nth-child(even)], but no luck

    thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @tothino,

    I’ve a confusion with your query, could you please provide the site URL so that I can see the issue first hand and provide you with the appropriate solution.

    Thanks and Regards,
    Milan.

    Thread Starter tothino

    (@tothino)

    thanks Milan, site is in development so i can’t provide url; btw i solved with these lines of CSS:
    /* ————————————————- */
    .category-menu-wrapper {min-width: 400px;}
    #category-navigation ul li {padding: 2px 0px 2px 8px; line-height: 28px;}
    #category-navigation ul li:nth-child(odd) {float: left; min-width: 198px;}
    #category-navigation ul li:nth-child(even) {float: left; min-width: 198px; border-left: 1px solid rgba(0, 0, 0, 0.06);}
    /* ————————————————- */
    link to images before and after applied css:
    BEFORE
    AFTER

    PS a wonderful theme 🙂

    • This reply was modified 3 years, 10 months ago by tothino. Reason: forgot some words
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category Menu multicolumn’ is closed to new replies.