Customize woocommerce cross selling products in cart

Hi,

how can I customize the way the suggested products in the cart page are displayed by mobile?

I’d like to have a smal picture and a short description side by side in the same row (see attached image)

Thank you. Best regards.

Hey Carlo,

Regretfully, there’s no option in the theme to achieve what you need. This would require WooCommerce custom development which is outside the scope of our support. For this, you’d need to consult with a third party web developer.

Thank you for understanding.

Hi Christian,
so far, we already have 3 products side by side,
each with a picture above and the description below,
so I thought it was just a css matter, that’s why I was asking for themeco support.

Please see picture link in secure note. I have also created an user for you in case you 'd like to check the css.

Could you please confirm it is not achiavable via css?

Hi @rubius,

We don’t really provide customization even with CSS especially if it’s a complex one. Though, I’ll provide you a simple snippet that will get you started.

@media ( max-width: 767px ) {
.woocommerce-cart li.product .entry-featured {
float: left;
width: 25%;
}
.woocommerce-cart li.product .entry-wrap {
width: 70%;
margin-left: 5%;
float: left;
}
}

Please enhance it according to your preference.

Thanks!

Thank you, it is right what I needed to start :slight_smile:

we are using Pro theme in more then one site. This site is the first one with woocommerce and even if Pro does not seem to be the best performer with it, we stay with it exactly for the special care you guys put in your support :wink:

Thanks @rubius we appreciate your kind words, you are welcome :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.