Hello, @maria323
-
Go to Online Store
-
Edit Code
-
Find theme.css/base.css file
-
Add the following code in the bottom
.footer-container {
display: flex;
justify-content: space-between; /* Adjust spacing as needed */
align-items: center; /* Align items vertically */
}
.newsletter {
display: flex;
flex-direction: column; /* Stack elements vertically */
}
.social-media {
margin-top: 10px; /* Add some spacing from the newsletter */
}
@media (max-width: 768px) {
.footer-nav {
font-size: 12px; /* Make text smaller */
text-align: center; /* Center align for better readability */
}
.footer-container {
flex-direction: column; /* Stack all elements vertically */
align-items: center;
}
.social-media {
margin-top: 20px; /* Add spacing for separation */
}
}
Thanks!