Re: Studio Theme Slideshow Size

Solved

How can I adjust the slideshow size on Studio theme desktop version?

yilmazmert
Tourist
8 1 0

Hello, I am using Studio theme. Is it possible to change the size of the slideshow section only on the desktop? Even if I upload the photo in a small size, it always appears the same size on the desktop version. Is it possible to shrink a photo without cropping it?

Accepted Solution (1)
yilmazmert
Tourist
8 1 0

This is an accepted solution.

.slideshow {
width: 30%;
margin: 0 auto;


}

@media screen and (max-width: 769px) {
.slideshow {
width: 100%;
}
}

I was able to solve it with this code. Thank you.

View solution in original post

Replies 6 (6)

WoodyDev
Shopify Partner
578 115 192

Hi and welcome!

 

Could you provide a URL to the page and I will take a look for you

Woody, 29, Stafford, UK | If I helped you out, mark it as the solution and drop me a thumbs up! | This is just a hobby for me, not my full-time job, so tips are greatly appreciated! paypal.me/woodybruh | Developer for AimShop.com | Owner of WoodyDevelopments | Try the best Shopify page builder
yilmazmert
Tourist
8 1 0

http://dentaltrip.myshopify.com/products/antalya-yalin-dental-clinic

 

You can see the sample slideshow on this page

WoodyDev
Shopify Partner
578 115 192

Sure!

 

Add this into the bottom of your base.css file:

 

section#shopify-section-template--15649559052442__165899651893d7697b {
    width: 30%;
    margin: 0 auto;
}
Woody, 29, Stafford, UK | If I helped you out, mark it as the solution and drop me a thumbs up! | This is just a hobby for me, not my full-time job, so tips are greatly appreciated! paypal.me/woodybruh | Developer for AimShop.com | Owner of WoodyDevelopments | Try the best Shopify page builder
yilmazmert
Tourist
8 1 0

Thanks a lot, i got what i want for desktop view. But this time it got smaller in mobile view too 🙂 Also, is it possible for me to use this section in this size as a standard wherever I use it?

yilmazmert
Tourist
8 1 0

This is an accepted solution.

.slideshow {
width: 30%;
margin: 0 auto;


}

@media screen and (max-width: 769px) {
.slideshow {
width: 100%;
}
}

I was able to solve it with this code. Thank you.

elena-borgna
Visitor
3 0 0

I try this solution but it doesn't work with my shop made with studio...

I added the code into the bottom of my base.css file...