Make Gif Size smaller on Mobile Layout

Solved

Make Gif Size smaller on Mobile Layout

sixdreamz
Explorer
103 0 36

Hi,

 

i would like to make the size of the Gif smaller on the "NSC TEE - BLACK". (mobile Layout only)

 

url: sixdreamz.com

password: sdc2003

 

 

 

Accepted Solution (1)

websensepro
Shopify Partner
1221 136 156

This is an accepted solution.

Hi @sixdreamz ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

 

 

<style>
@media (max-width: 768px) {
    .product__media-list.contains-media.grid.grid--peek.list-unstyled.slider.slider--mobile li:nth-child(2) .product__media.media.media--transparent img { 
        height: 35vh !important;
    }
}
</style>

 

websensepro_0-1727443177888.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial

View solution in original post

Replies 5 (5)

websensepro
Shopify Partner
1221 136 156

This is an accepted solution.

Hi @sixdreamz ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

 

 

<style>
@media (max-width: 768px) {
    .product__media-list.contains-media.grid.grid--peek.list-unstyled.slider.slider--mobile li:nth-child(2) .product__media.media.media--transparent img { 
        height: 35vh !important;
    }
}
</style>

 

websensepro_0-1727443177888.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
sixdreamz
Explorer
103 0 36

i cant find the </head> in theme.liquid

websensepro
Shopify Partner
1221 136 156

Can you kindly share your theme.liquid file screenshot please.

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
sixdreamz
Explorer
103 0 36

sixdreamz_0-1727444615719.png

 

websensepro
Shopify Partner
1221 136 156

This is the <head> tag it's closing tag </head> must be there too below somewhere. However, just like other styles you can paste the given code below <head> and above <style>

websensepro_0-1727444861620.png

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial