Hi,
I would like to redesign the way the elements are stacked in the footer when in smaller windows, like tablet and mobile. Also to hide some elements. Where can I do this?
/Hanna
Hey Hanna,
This can be done via css. Do you have a link to the site/page in question.
Best regards,
Jordan Shannon
Ok. Yes, the footer is the same on all pages (or should be) so it should be one fix for all pages on the site showing the footer.
See Private Content for site and login.
Hi,
Thanks for that. What exactly would you like to change on mobile/tablet sizes?
Best regards,
Rikard
Hi,
On window sizes below 1088px wide, I would like to hide the Footer Widget “Footer – column1” (with two images/logos).
Hi,
I added following code to bottom of Quick CSS field
/* Hide 1st footer column below 1088px and adjust the rest */
@media only screen and (max-width: 1088px) {
#footer .flex_column.first {
display: none;
}
#footer .flex_column:nth-child(2) {
margin-left: 0;
}
#footer .av_one_fourth {
width: 29.3%;
}
}
Please review your website :)
Best regards,
Yigit