Hello! before some months we change the product page from 3 columns to 2, but we prefer now in shop main page to show categories and not products. Could you tell me the .class to turn the 3 columns categories to 2 columns? thanks a lot!
This topic has 8 replies, 4 voices, and was last updated 9 years, 3 months ago ago by Robert Hall
Hello! before some months we change the product page from 3 columns to 2, but we prefer now in shop main page to show categories and not products. Could you tell me the .class to turn the 3 columns categories to 2 columns? thanks a lot!
Hello,
Please try to add this code in custom.css file:
@media (min-width: 1200px) {
.post-type-archive-product .span4.product-category:nth-child(3n+1) {
clear: none !important;
}
.post-type-archive-product .span4.product-category:nth-child(2n+1) {
clear: both !important;
}
.post-type-archive-product .span4.product-category {
width: 418px !important;
}
}
@media (min-width: 992px) {
.post-type-archive-product .span4.product-category {
width: 320px !important;
}
}
@media (min-width: 768px) {
.post-type-archive-product .span4.product-category {
width: 260px !important;
}
}
Regards,
Rose Tyler.
thank you!
one last. I have lost the arrows from pagination boxes < 1 2 3 etc. > . I see only numbers and next arrow show “SS” and previus arrow “F”, how could i resolve this?
Hello,
May we reupload theme files?
Please provide FTP credentials.
Thank you.
Best regards,
Jack Richardson.
FTP
Hello,
I’ve added the following css code in your child style.css file to fix the arrows:
.page-numbers .next::before, .pagination .next::before {
content: "\f105";
font-family: fontawesome;
font-size: 19px;
}
.page-numbers .prev::before, .pagination .prev::before {
content: "\f104";
font-family: fontawesome;
font-size: 19px;
}
Best regards,
Jack Richardson.
Thank you so much for the great support!
Hello,
You’re welcome!
Regards,
Robert Hall
The issue related to '‘2 columns at shop page’' has been successfully resolved, and the topic is now closed for further responses