Re: Slideshow Desktop Pic

Solved

How can I adjust the slideshow picture size for desktop view only?

sammytambu
Tourist
11 1 4

Hello Guys! 

 

Problem: Slideshow Picture of Desktop View is cut.

 

Is there a Code I can use, that affects only the desktop view?

 

I copied this Code in CSS: 

 

.slideshow img {
object-fit: cover;
width: 100%;
height: 100%;
}

 

and it worked really well.

 

The only Problem is, the code affects both views (Mobile and Desktop) and I dont want to change the Mobile view.

Is there a chance I can only change the height of the desktop slideshow view? 

Accepted Solution (1)

Abdosamer
Shopify Partner
1040 188 225

This is an accepted solution.

@sammytambu , you can add your code like this :

@media (min-width:968px){

 .slideshow img {
object-fit: cover;
width: 100%;
height: 100%;
}

 

}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work

View solution in original post

Replies 2 (2)

Abdosamer
Shopify Partner
1040 188 225

This is an accepted solution.

@sammytambu , you can add your code like this :

@media (min-width:968px){

 .slideshow img {
object-fit: cover;
width: 100%;
height: 100%;
}

 

}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work
sammytambu
Tourist
11 1 4

Hey Sir,

that worked!

I am so impressed with coding. Awesome, thank you very much for the quick help!