Hello there, i am looking if there is any chance i can shrink the image size from the desktop view of a slideshow
I’ll let here my website link and please check how its in desktop view and in mobile view.
Thank you!
Hello there, i am looking if there is any chance i can shrink the image size from the desktop view of a slideshow
I’ll let here my website link and please check how its in desktop view and in mobile view.
Thank you!
an example CSS code that you can use to shrink the image size of your slideshow
.slideshow-class img {
max-width: 50%;
height: auto;
}
replace “slideshow-class” with the actual CSS class for your slideshow. The “max-width” property sets the maximum width of the image to 50% of its original size, and the “height” property adjusts the height of the image proportionally.
i dont really know where to search