3 columns in the shop with Hello CEO?

QuestionsCategory: Questions3 columns in the shop with Hello CEO?
Tee Crawford asked 5 years ago

Hello CEO has only 2 columns in the shop. How would I change that to 3?

1 Answers
Support Team Staff answered 5 years ago

Yes, go to the style sheet and delete everything from line 1751 to 1763
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
float: left;
margin-right: 2.564102564102564% !important;
margin-top: 40px !important;
width: 44.717948717948715% !important;
}
.woocommerce-page ul.products li.product:nth-child(2n+2) {
float: right;
margin-right: 0 !important;
margin-top: 40px !important;
width: 44.717948717948715% !important;
}
 
After you do that, 4 in a row will show.  But you can then use the woocommerce settings in the customizer to change it to 3 in a row.

Tee Crawford replied 5 years ago

Thank you!