Solved

How can I resize the footer image and center text on my website?

CreatorsAlley
Excursionist
13 0 4

Hello, Can someone help me. Where can I go to make the image in the footer a little larger and i want to bring the text for the quick links to be centered with quick links.

 

website: https://1b20eyulicvjdclr-55052173401.shopifypreview.com

814BD00F-EA9F-4BF4-80D5-BA507D2FE3AA.jpeg

Accepted Solutions (2)

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

hello @CreatorsAlley 

please Go to Online Store->Theme->Edit code then go to assets/base.css ->paste below code at the bottom of the file.

.footer  .footer-block__details-content.list-unstyled {
        text-align: center;
}

 

View solution in original post

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

please Go to Online Store->Theme->Edit code then go to assets/base.css ->paste below code at the bottom of the file.

.footer-block__details-content.footer-block-image img{
    max-width: min(100%, 230px) !important;
    width: 230px;
}

 

View solution in original post

Replies 3 (3)

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

hello @CreatorsAlley 

please Go to Online Store->Theme->Edit code then go to assets/base.css ->paste below code at the bottom of the file.

.footer  .footer-block__details-content.list-unstyled {
        text-align: center;
}

 

CreatorsAlley
Excursionist
13 0 4

Perfect the content moved. but nothing changed on the image. How can i make the logo larger a little bit 

Kinjaldavra
Shopify Partner
2302 570 1423

This is an accepted solution.

please Go to Online Store->Theme->Edit code then go to assets/base.css ->paste below code at the bottom of the file.

.footer-block__details-content.footer-block-image img{
    max-width: min(100%, 230px) !important;
    width: 230px;
}