• Resolved francescajones

    (@francescajones)


    Hi, I need some help with CSS; I have a website that was built for me and now I have admin rights and want to change a few things. I want to stop the categories that products are listed in showing up underneath the product on the store front. Is there a code that will do this? I use woocommerce.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator bcworkz

    (@bcworkz)

    The categories that appear in the sidebar on wider viewports? Then are shifted to below on narrower viewports? Try adding this to the Additional CSS section of the customizer or style book:

    @media screen and (max-width: 959px) {
      #woocommerce_product_categories-2 {
        display: none;
      }
    }
    Thread Starter francescajones

    (@francescajones)

    thank you. i have now sorted it.

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

The topic ‘custom CSS help’ is closed to new replies.