hi there, i would like to put two columns of text next to each other instead of stacked in the footer
thanks!
Goal: Place two text blocks side-by-side (two columns) in the Fabric theme footer instead of stacked.
Proposed fix (CSS Grid):
Outcome: Footer content renders in two equal-width columns rather than a single stacked column.
Notes:
Status: Resolved with a working CSS snippet; further assistance offered if needed.
hi there, i would like to put two columns of text next to each other instead of stacked in the footer
thanks!
Follow these Steps:
<style>
footer .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
hey thank you so much, is there a way to make this happen only on mobile?
Add this updated code with the same steps mentioned above
<style>
@media screen and (max-width: 767px) {
footer .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
}
}
</style>
Cheers,
Moeed