Tagged: iphone, mobile, partner logos
To display a 5-column grid of thumbs for the artists at Pottery Northwest, I’m using the partner/logo layout (the max on a portfolio grid is 4 columns and I wanted to display 5-6 columns of photos). Everything looks great on the desktop, but when the artist overview page is displayed on my iphone, two of the thumbs are twice the size of the others. I haven’t been able to figure out why this is happening.
Can you help me fix this?
Thanks.
Nana
Hey NanaKuo!
You can add this on Quick CSS to adjust the width of the logo on mobile devices.
@media only screen and (max-width: 767px) {
.responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even {
margin: 0;
clear: both;
width: 100%;
}
.responsive #top .avia-smallarrow-slider .flex_column {
margin: 0px;
width: 100%;
}
}
Cheers!
Ismael
Thanks!