Hi,
I have 3 columns in my page footers that looks like this in desktop:
Page – Desktop
And mobile it switches to 1 column:
Page – Mobile
which is correct.
Now the posts should look the same (3 columns in desktop, 1 column in Mobile), but in mobile it keeps 3 column layout:
Post – Mobile
I’d like also only 1 column in the post footers of mobile, just like in the page footers.
Thanks,
Sushi
Hi jhonney,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 767px) {
.single #footer .av_one_third {
width:100% !important;
margin-left:0 !important;
}
}
Regards,
Rikard
Thanks Rikard!
Works like a charm.