Okay, You need to go to the main store here:
http://www.mybodysport.co.il/%D7%97%D7%A0%D7%95%D7%AA/Then go to page 2, you should see how the products jump down.
I did change some code:
In the woocommerce.css of the theme I changed this:
- Code: Select all
.related ul.products li.product,
.related ul li.product,
.upsells.products ul.products li.product,
.upsells.products ul li.product {
border: none;
clear: none;
float: left;
height: auto;
margin: 12px 0;
padding: 0 24px;
text-align: center!important;
width: 24%!important;
}
ul.products li.product {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box ;
box-sizing: border-box;
float: left;
margin-bottom: 40px;
padding: 6px;
position: relative;
width: 33%;
}
.products ul:after,
ul.products:after {
clear: both;
content: "";
display: table;
}
ul.products li.first {
clear: both;
}
.product_meta {
clear: both;
color: #999;
float: left;
font-size: 13px;
padding-top: 10px;
}
To this:
- Code: Select all
.related ul.products li.product,
.related ul li.product,
.upsells.products ul.products li.product,
.upsells.products ul li.product {
border: none;
clear: none;
float: right;
height: auto;
margin: 12px 0;
padding: 0 24px;
text-align: center!important;
direction:rtl;
width: 24%!important;
}
ul.products li.product {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box ;
box-sizing: border-box;
float: right;
margin-bottom: 40px;
padding: 6px;
position: relative;
width: 30%!important;
}
.products ul:after,
ul.products:after {
float: right;
content: "";
display: table;
}
ul.products li.first {
float: right!important;
}
.product_meta {
clear: both;
color: #999;
float: right;
font-size: 13px;
padding-top: 10px;
direction: rtl;
}
This was to get the products to show up properly with the site being right to left and some other adjustments. Please let me know if I did something wrong there. I also changed a few things in the WooCommerce css in the woocommerce plugin folder...
Thank you,
Sarah