Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Mobile version move description of featured collection

Mobile version move description of featured collection

Vlavlip
Excursionist
49 0 7

Hi for the desktop version I moved the description to the right of each image.

Screenshot 2023-10-03 at 17.30.11.png

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

IMG_4036EF9E92BE-1.jpeg

 

Could somebody please help me to move the description on the mobile version under each image but keep the desktop version the way it is???

 

website: ordinarythings.club

 

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

 

 

 

Replies 4 (4)

DitalTek
Shopify Partner
779 93 110

Hi,

You can add to this code to your theme:

@media only screen and (max-width: 767px){
.collection .card.card--standard.card--media{
  flex-direction: column;
}
.collection .card.card--standard.card--media .card__inner,
.collection .card.card--standard.card--media .card__content{
  width: 100%;
}
}

 

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or WhatsApp.
- Contact Support : Gmail | WhatsApp: +84 398999359
Vlavlip
Excursionist
49 0 7

Adding this to the bottom of theme.liquid doesn't work.

DitalTek
Shopify Partner
779 93 110

if you include to that file you need add them inside these tags

{% stylesheet %}
// add in here
{% endstylesheet %}

 

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or WhatsApp.
- Contact Support : Gmail | WhatsApp: +84 398999359
Vlavlip
Excursionist
49 0 7

{% stylesheet %}
// @media only screen and (max-width: 767px){
.collection .card.card--standard.card--media{
flex-direction: column;
}
.collection .card.card--standard.card--media .card__inner,
.collection .card.card--standard.card--media .card__content{
width: 100%;
}
}
{% endstylesheet %}

 

Doesnt work. cant save it.