Re: 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
842 100 119

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 you want to hire developer Theme or App Shopify => Feel free to send me a DM or contact to us via Email | WhatApp
Vlavlip
Excursionist
49 0 7

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

DitalTek
Shopify Partner
842 100 119

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 you want to hire developer Theme or App Shopify => Feel free to send me a DM or contact to us via Email | WhatApp
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.