user3077416
user3077416

Reputation: 271

How to make fixed column for products list in woocommerce?

I have a problem about making fixed column for products list in woocommerce with my custom theme, like a iphone 6s product cannot have same box size with other in screenshot below: box size

style.css

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 30.75%;
    float: left;
    margin: 1px 0 1.992em 0;
    padding: 0 0 0 6px;
    position: relative;
    text-align: center;
}

How I can fix it?

Upvotes: 0

Views: 1358

Answers (1)

Chandru
Chandru

Reputation: 133

Add DIV tag for your Price row and give min-height to DIV tag like

<div class="price">Rp 12,000.000</div>

Style

.woocommerce ul.products li.product{ min-height:100px }

Upvotes: 1

Related Questions