I read through many posts to try and fix this myself, but nothing has worked. I’d like to minimize the gap between the slide show image and gallery image on my home page.
Any help would be greatly appreciated!
Site URL : https://theposhtech.com/
I read through many posts to try and fix this myself, but nothing has worked. I’d like to minimize the gap between the slide show image and gallery image on my home page.
Any help would be greatly appreciated!
Site URL : https://theposhtech.com/
Hello @LaurenPT ,
@media (min-width: 768px){
.slideshow-wrapper {
height: 100% !important;
}
}
Thanks
Thanks so much for the reply. I tried your suggestion and unfortunately it put the whole home page out of order and I had to remove the code.
@media (min-width: 768px){
.slideshow-wrapper {
height: 100% !important;
}
}
My mistake I forget to close the brackets. Try again it will work.
Find this code in your theme.sccss/theme.css file and replace the height with height: auto;
@media (min-width: 768px)
.slideshow-wrapper {
height: auto;
}
If this doesn’t help please let me know.
I tried again and it didnt work, looking at the codes you sent. I cant see a difference, but that could just be me!
@LaurenPT Are you talking about my codes?
.slideshow-wrapper search with this in your theme.css file. Or send me a private message.
Please add the following code at the bottom of your assets/theme.scss.liquid file.
@media (min-width: 768px){
.slideshow-wrapper {
height: auto !important;
}
}
Hope this works.
Thanks!
@dmwwebartisan thank you so much! that worked!