Tagged: footer
Hi,
On the home page of my website I am having a problem with the footer displaying correctly on mobile devices. It works OK on every page of the site to the exception of the home page that it displays funny. It does not seem to adapt to the screen size for some reason like it does on every other page of the site.
Hi gvidano!
Try dragging a codeblock element to your homepage and add this inside.
<style type = "text/css">
@media screen and (max-width: 500px) {
#footer .flex_column {
margin: 0 !important;
width: 100% !important;
}
}
</style>
Regards,
Elliott