I'm using the dawn theme. When I press the view cart button in the mobile layout, the images are cor

I’m using the dawn theme. When I press the view cart button in the mobile layout, the images are cor.

The photos get longer and their quality deteriorates. Can we keep this as a still image?

Hi @orcintre ,

Please share your store URL and password of front view.

So that I will check and let you know the exact solution here.

Best regards.

My store is active now. https://orcintre.com.tr/

Hello @orcintre ,

Greetings!!

  1. Online Store->Theme->Actions->Edit code
  2. Find a theme.liquid file and paste this code at the bottom of the file
<style>
#cart .cart-items .cart-item {
align-items: start;
}
</style>

I hope it will help you

Hi @orcintre ,

You can try follow the instruction below:

  1. Go to Online Store → Theme → Edit code.
  2. Asset → create separate css file for css code then paste code below in the file.
    Ex: /custom.css
.cart-item__image {
  object-fit: contain !important;
}

  1. Layout → /theme.liquid → paste code below into the tag of the file:
{{ 'custom.css' | asset_url | stylesheet_tag }}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Finally, I want to show the price at the bottom of the product description. Can you help me get the price from that corner? and I want to remove those white parts of the photo

Hello @orcintre

You can try to follow the steps for the remove white parts of the photo

  1. Go to Online Store → Theme → Edit code.

  2. Asset ->custom.css Paste this code

#cart .cart-items .cart-item {
align-items: center;
}