How can I extend the footer text length on my website?

Hi everyone,

I am struggling making the text in my footer a bit longer, I don’t want the rows to break like this because then it covers only half on the screen.

I’m referring to the: “Woollen & Kind is a handmade rug store in the Philippines. Proudly serving rug enthusiasts, collectors, and homemakers.”

https://woollenandkind.com/

Just want it to spread a bit longer.

Thank you in advance!

1 Like

Hi @Daniel19901 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best regards,

Anthony

Hi @Daniel19901

I just like to clarify, you like to longer the text in which screen size? In the mobile or in the desktop?

The paragraph is currently like this in the mobile.

If it is try this one then.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 768px){
.footer__block--mobile {
    display: contents;
}
div.footer__title {
    padding-right: 0px;
}
}

Hi @Daniel19901

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the base.css file:

@media only screen and (max-width: 768px) {

#shopify-section-sections–20297632186644__footer .footer__blocks {margin-right: 0 !important;}

.footer__block.footer__block–contact {max-width: 33.33% !important;}

.footer__block {flex: 0 1 33.33% !important;}

}

Regards,

San