Support » Plugin: WooCommerce » categories not display in 3 columns

  • Resolved creativa1976

    (@creativa1976)


    I think I will turn crazy!
    I tryed short codes and everything in my hand to display the categories on the store but stills show a list ono by one under each.
    Is there a way to show the categories in 3 columns?
    Thanks in advance

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Senff – a11n

    (@senff)

    Hi @creativa1976

    It looks like your theme, , may not fully support WooCommerce.

    For this particular page, you can make them line up properly by adding the following CSS code:

    @media screen and (min-width: 768px) {
      li.product-category {
        width: 33%;
        float: left;
        border: solid 1px #000000;
        list-style-type: none;
        text-align: center;
      }
      
      li.product-category:nth-of-type(3n+1) {
        clear: both;
      }  
    }

    However, you may want to check with your theme’s own support team to see if the theme supports WooCommerce or not.

    Thread Starter creativa1976

    (@creativa1976)

    That was awesome!
    Thanks sooo much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘categories not display in 3 columns’ is closed to new replies.