How can i get the social pictograms on the right symetrical spot next to the email subscription?
Topic summary
A user is trying to align social media icons symmetrically next to an email subscription form in their store’s footer.
Initial Solution:
- A helper provided CSS code to adjust footer layout using flexbox properties (
justify-content: space-betweenandflex-direction: row).
Problem Progression:
- The first CSS snippet caused layout issues with the icons.
- Adding
!importanttoflex-direction: rowfixed the icon positioning. - However, this created a new problem: the email subscription field is no longer centered.
Current Status:
The discussion remains open with the centering issue unresolved. Images throughout show the visual progression of the layout changes at each step.
Hi @flaner,
Please go to Customize > Theme settings > Custom CSS and add code:
@media screen and (min-width: 990px) {
.footer__content-top.page-width {
justify-content: space-between;
}
.footer-block--newsletter {
flex-direction: row;
}
}
If I helped you, then a Like would be truly appreciated.
Best,
NamPhan


