Hi! I need decrease the banner height of one section (and able this to default) to 400px or 500px
Is the Hero Banner Section
link: https://sevenemcasa.myshopify.com/collections/oldparr
password: giageu
Hi! I need decrease the banner height of one section (and able this to default) to 400px or 500px
Is the Hero Banner Section
link: https://sevenemcasa.myshopify.com/collections/oldparr
password: giageu
In your style.css line 5147, you have your height as 750px you can change that to the height you want. But to enable that height you’ll need to go on line 5330 in style.css you’ll see this
.ltn__slide-item-2 {
height: calc(100vh + 0px); // delete this
padding-top: 200px;
}
Hi! I’ve found the 750px on line 5176, thats correct??
I’ve deleted the “height: calc(100vh + 0px);” line and change the 750px on line 5176 but didn’t work ![]()
Not sure what didnt work as I can see a difference in your height now. What were you expecting so I can be sure we dealing we the same issue?
This is how the banner looks on my end, I think your cache is doing this. Please Ctrl + Shift + R simultaneously to clear your cache and check the page again..
below is how it looks on my end.
Still the same for me, tried in another computer and still with a big height
Maybe its working only for some users? I’m confused
Try going to your store on incognito mode and see if the height hasn’t changed ?
I think the problem is in the responsiveness, when I stretch the window a little, the banner appears as you showed, is there a way to solve this??
line 5627 change the min-height
@media (min-width: 1600px)
.ltn__slide-item-2 {
min-height: 800px;
}
Work!! Thank you so much!