Center Trending Now "featured products section" text (Dawn theme)

Hello guys! How can I allign the TRENDING NOW text in the center, not in the left. Dawn Theme, you can see the screenshot here

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Skull-bracelet.com

1 Like

Hello There,

  1. In your Shopify Admin go-to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
#shopify-section-template--14359979229324__featured_products DIV.collection.page-width.page-width-desktop DIV.title-wrapper-with-link.title-wrapper--self-padded-tablet-down H2.title {
    text-align: center !important;
    width: 100%;
}

Screenshot:-Screenshot by Lightshot

For me it doesn’t work unfortunately.

1 Like

Hello There,

  1. In your Shopify Admin go-to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
h2.title {
text-align: center!important;
}
.title-wrapper-with-link.title-wrapper--self-padded-tablet-down {
display: initial;
}

Screenshot:-Screenshot by Lightshot

Hi @SergHei124 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-product-grid.css->paste below code at the bottom of the file:
.title-wrapper-with-link .title {
    text-align: center !important;
    width: 100% !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Thank you very much!

1 Like