• Resolved boyantodorov

    (@borekumo)


    Hello all, I need help to costumize font weight and color only on parent categories in my WooCommerce shop.

    • This topic was modified 5 years, 3 months ago by boyantodorov.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Hi there 👋

    This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
     

    /* Change color and add more weight on Parent Product Categories */
    .product-categories > li > a {
        color: #1e8346 !important;
        font-weight: bold !important;
    }
    

     
    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Cheers! 🙂

    Thread Starter boyantodorov

    (@borekumo)

    Hi, the code works perfectly!

    I will look at the free tutorials.

    The problem was that I didn’t know how to navigate the code to the element that should affect.

    Big thanks! 🙂

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Happy to help 😃

    That’s great! I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Cheers!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Customize only parent product categories’ is closed to new replies.