I’ve been trying to reposition the carousel on this site [https://www.steveperfect.com/] because when viewing on mobile there is currently too much white space above and below. see pic below.
Thought it was a justify content thing so I’ve just tried adding this to the code editor but the desktop view disappears.
@media screen and (max-width: 576px) {
.volt-gallery {
display: flex;
justify-content: top;
flex-flow: row wrap;
}
}
but the actual goal is to reduce the amount of white space. So I’m wondering if keeping it centred but setting a max height of the carousel or container is the way to go but I’m not sure which class handles that.
