Okay
  Public Ticket #3146172
Phone alignement Woocommerce product
Closed

Comments

  •  2
    chubben666 started the conversation

    Hi I am having a problem with the "WooCommerce product" element on the phone it aligns the products left and they are really small. Is there anyway to center the products and make them bigger so they almost fill out the display on the phone ?

  •  2
    chubben666 replied

    Forgot screenshot

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (min-width: 1px) and (max-width: 999px) {
        body .woocommerce ul.products[data-product-style=minimal] li.product.minimal {
            float: left !important;
        }
    }

    Thanks


    ThemeNectar Support Team