Re: Dawn Theme ver. 13 - Text Box Center on Footer

Solved

Dawn Theme ver. 13 - Text Box Center on Footer

JC03
Tourist
11 0 5

Hi everyone, 

 

Does anyone know how to center the text box information on the dawn ver. 13?

 

Thanks, 

 

shop.png

Accepted Solution (1)
ThePrimeWeb
Shopify Partner
2139 616 515

This is an accepted solution.

Hey @JC03,

 

This will do it for desktop and mobile 😊

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

 

 

 

<style>
h2.footer-block__heading.inline-richtext ,
ul.footer-block__details-content.list-unstyled li {
    text-align: center !important;
}

ul.footer-block__details-content.list-unstyled li {
    margin: 0 !important;
}

ul.footer-block__details-content.list-unstyled li a {
    justify-content: center !important;
}

@media only screen and (min-width: 750px) {
    .footer-block.grid__item:nth-child(2) h2.footer-block__heading.inline-richtext {
        text-align: start !important;
    }    
}

@media only screen and (max-width: 749px) {
    .footer-block__details-content.rte p {
        text-align: center !important;
    }
}

</style>

 

 

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1707743018225.jpeg

 

 

Desktop: 

ThePrimeWeb_0-1707743539248.png

 

Mobile:

ThePrimeWeb_1-1707743545361.png

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 10 (10)

ThePrimeWeb
Shopify Partner
2139 616 515

Hey @JC03,

 

Can I have the link to your store?

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
JC03
Tourist
11 0 5
Jahin
Shopify Partner
10 0 2

please send password

Jahin
ThePrimeWeb
Shopify Partner
2139 616 515

Sorry, forgot to mention, could I also have the password to the store as well? thanks!

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
JC03
Tourist
11 0 5

Cho is the password, thank you 

Jahin
Shopify Partner
10 0 2

paste these code

 

online store > theme > base.css

 

h2.footer-block__heading.inline-richtext {text-align: center!important;}

 

.footer-block__details-content.rte p {
text-align: center!important;}

 

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

 

---------

these will make all in center not your selected text blocks , for your selected text block some coding customization is required

Jahin
ThePrimeWeb
Shopify Partner
2139 616 515

This is an accepted solution.

Hey @JC03,

 

This will do it for desktop and mobile 😊

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

 

 

 

<style>
h2.footer-block__heading.inline-richtext ,
ul.footer-block__details-content.list-unstyled li {
    text-align: center !important;
}

ul.footer-block__details-content.list-unstyled li {
    margin: 0 !important;
}

ul.footer-block__details-content.list-unstyled li a {
    justify-content: center !important;
}

@media only screen and (min-width: 750px) {
    .footer-block.grid__item:nth-child(2) h2.footer-block__heading.inline-richtext {
        text-align: start !important;
    }    
}

@media only screen and (max-width: 749px) {
    .footer-block__details-content.rte p {
        text-align: center !important;
    }
}

</style>

 

 

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1707743018225.jpeg

 

 

Desktop: 

ThePrimeWeb_0-1707743539248.png

 

Mobile:

ThePrimeWeb_1-1707743545361.png

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

Jahin
Shopify Partner
10 0 2

Hi yes very easy to do with targeting the class name for css , please send your myshopify url

Jahin

Made4uo-Ribe
Shopify Partner
9607 2289 2844

Hi @JC03 

Check this one. 

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:

 

.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in {
    text-align: center;
}
ul.footer-block__details-content.list-unstyled li {
    margin: 0px !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1707743425098.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

JC03
Tourist
11 0 5

Thanks for the help everyone the code worked!