Viewing 4 replies - 1 through 4 (of 4 total)
  • Try this CSS

    .header-categories ul li :not(a) {
        color: white;
    }
    Thread Starter huntman

    (@huntman)

    Thank you so much, It perfectly worked for me.

    Can you please also help me with,

    How to hide subcategory and show when hovering over the main category in the drop-down category? For reference, please check out the screenshot https://imgur.com/a/5gfLJg0

    Thanks & Best Regards,

    Try this, I think it may work

    .header-categories .cat-item ul {
        display: none;
    }
    .header-categories .cat-item:hover ul {
        display: block;
    }
    Thread Starter huntman

    (@huntman)

    Thank You So much again, It worked for me.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove/hide the number of products under the category list?’ is closed to new replies.