How to adjust image display height to 500 pixels on cell phones?

How to fix the display height of images on cell phones to 500 pixels?

Hi @luping1

Do you want to fix it for your image banner an slideshow? Could you share your store URL so I can check and provide the code?

@luping1 - which image you want to set at 500px? this will need css, can you share that page link?

you can use css for this but you have to be specific which image height you want it to be 500px, you can use some main-class name then add img like

@media (max-width:768px) { .main-class-name img { height:500px; } } but its not recommended to use only height it will cause the image to expand so you can use other properties like object-fit: cover; or object-fit: contain; object-position: center; hope so it will work