coding my website

Hello, @maria323

  1. Go to Online Store

  2. Edit Code

  3. Find theme.css/base.css file

  4. 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!