Tagged: partner/logo element mobile view
Dear Kriesi,
I’m using the Partner/logo element on the page indicated below. It is set to show three columns. This works on the desktop view, however on mobile it shows three columns where the left and right one is empty (light grey where the picture would go) and all the pictures are in the center column below each other. How can we fix this?
Thanks,
Raphael
Hey eKMUch,
Thank you for using Enfold.
It’s actually not empty. The slider is set to pile to a single column on mobile view. Add this in the Quick CSS field if you want the same number of columns as the desktop view:
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all .slide-entry {
margin-left: 0;
clear: none !important;
width: 32% !important;
float: left;
}
}
Best regards,
Ismael
Hi Ismael
Thanks I’ve added the follwoing code to quick css but it didn’t change anything
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all .slide-entry {
margin-left: 0;
clear: none !important;
width: 32% !important;
float: left;
}
}
Did I miss to do something?
Thanks,R
Hi,
What is the mobile device you’re testing this with? Is it a tablet? Replace the code with this:
@media only screen and (max-width: 768px) {
.responsive #top #wrap_all .slide-entry {
margin-left: 0;
clear: none !important;
width: 32% !important;
float: left;
}
}
Best regards,
Ismael
Dear Ismael,
Thank you for the help. Now it looks fine when looking at it portrait format but weird in landscape (http://prntscr.com/bvdc52). Do you know a fix for this?
Best,
Raphael
Hi,
for portrait mode only use these media queries:
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait)
{
}
and insert your code inside the brackets.
Best regards,
Andy