How can I adjust image descriptions for mobile viewing?

Hi all,

For my desktop version I moved the description to the right of each image. (see below)

However this doesn’t work well for the mobile version:

How would I move the description under each image for the mobile version, but keep the desktop version the way it is???

website: ordinarythings.club

Thank you so much for the help :))))

Hi @Vlavlip

Follow these Steps:
Go to Online Store Edit Code Find theme.liquid file or base.css
Add the following code in the bottom of the file above tag

@media only screen and (max-width: 425px){
    .collection .card.card--standard.card--media{
    display: block;
}

.collection .card.card--standard.card--media .card__inner {
    width: 50%;
    margin: auto;
}

.collection .card.card--standard.card--media .card__content {
    width: 100%;
    padding-left: 10px;
    margin: auto;
}

}

If I managed to help you then, don’t forget to Like it and Mark it as Solutions.

HI @topnewyork

thank you, I have tried but it doesn’t seem to work. any idea why?

@Vlavlip can you share screenshort in which file you paste code?

@Vlavlip Try this..

{% style %}
@media only screen and (max-width: 425px){
    .collection .card.card--standard.card--media{
    display: block;
}

.collection .card.card--standard.card--media .card__inner {
    width: 50%;
    margin: auto;
}

.collection .card.card--standard.card--media .card__content {
    width: 100%;
    padding-left: 10px;
    margin: auto;
}

}
{% endstyle %}

If I managed to help you then, don’t forget to Like it and Mark it as Solutions.

@topnewyork you’re a star thank you!!!