Site URL: https://www.centerpointfl.org
OK, so I have three social media platform buttons in a gallery block. I have them displayed 3 across, and a small size. Looks great on desktop and tablet, but on mobile it changes the gallery to display 2 icons across, incread of 3. I have tried MULTIPLE solutions and I can't get anything to work. Please help!
What I've tried:
/*To set the amount of slides for phones*/ @media screen and (max-width: 640px) { .sqs-gallery-block-grid.slide.sqs-gallery-design-grid-slide { width: calc(100%/
This produced no change at all.
Also:
@media only screen and (max-width: 640px) {
.sqs-gallery-design-grid-slide {
width: 33.33% !important;
}
}
It got it to three items but cut them into pieces.
I then modified it to:
@media only screen and (max-width: 640px) {
.sqs-gallery-design-autogrid-slide {
width: 33.3% !important;
clear:right !important;
}
.sqs-gallery-block-grid {
overflow: visible
}
}
Did nothing.
I don't know what else to try, so any help would be greatly appreciated. I am a coding toddler, so talk slowly in small words. 🙂
Running Bryant template, in case that matters.