coding my website

coding my website

maria323
Shopify Partner
6 0 0

WhatsApp Image 2024-12-10 at 11.11.06_810d3868.jpgWhatsApp Image 2024-12-10 at 11.05.04_3b4958fc.jpg

I want the footer navigation menu to align with the newsletter and the social media icon to be under the newsletter then the footer nav.menu to be more smaller in the mobile version

https://sunfadednyc.com/

Replies 5 (5)

topnewyork
Astronaut
1368 165 224

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!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
maria323
Shopify Partner
6 0 0

the exceed code size limit

topnewyork
Astronaut
1368 165 224

try this one 

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newsletter {
    display: flex !important;
    flex-direction: column;
}
.social-media {
    margin-top: 10px !important; 
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center !important;
    }
    .footer-nav {
        font-size: 12px !important; 
        text-align: center;
        margin-top: 10px;
    }
    .social-media {
        margin-top: 20px !important;
    }
}
Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
maria323
Shopify Partner
6 0 0

not working yet

maria323
Shopify Partner
6 0 0

hello