Hello, so for the footer, I want to have the first section by its self on the first line and the rest sections divided equally on the following line. Something like the picture below:
(store: https://03df82.myshopify.com/)
Thanks in advance!
Hello, so for the footer, I want to have the first section by its self on the first line and the rest sections divided equally on the following line. Something like the picture below:
(store: https://03df82.myshopify.com/)
Thanks in advance!
Hi @Andy106 , the most solid solution would be to modify the footer liquid file of your theme. Then maybe it will need some minor CSS adjustments.
Hello, I am aware of this :)) I need some assistance, with how to manipulate the code!
For anyone interested I solved this using the following code on base.css or on the custom footer css box in the theme editor:
@media (min-width: 200px) {
.footer-block__brand-info {
display: grid;
place-items: center;
text-align: center;
}
.footer-block:nth-child(1) {
flex: 1 1 100%;
position: relative;
}
.footer-block__heading {
text-align: center;
}
}
@media (min-width: 768px) {
.footer-block–menu {
width: calc(
20% - var(–grid-desktop-horizontal-spacing) * 4 / 5
) !important;
text-align: center;
}
}