How to Center Menu Page Title and Make Policy Titles Bold (Dawn)

Hi! I just have a few questions. Really need your help.

  1. How do I center align and make the Menu Heading for both desktop and mobile view bold? Refer to photo showing FAQs.

  2. I noticed the policy page already has a centered header, but how do i make it bold? Refer to photo showing Refund Policy.

Website URL: https://adlaudemdei.com/

Hi @pmltntc

Please use this css in theme.liquid
Before closing head tag


Hey @pmltntc

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @pmltntc

  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-policy__container h1 {
font-weight: 500;
}
.main-page-title {
text-align: center;
font-weight: 500;
}

Hi @pmltntc

You can do that by adding this CSS code at the bottom of your base.css file in Online store >Themes > Edit code > Assets

.main-page-title {
text-align: center !important;
font-weight: 700 !important;
}

This worked. Thank you!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

This also worked. Thank you!

Hello @pmltntc

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.

If helpful then please Like and Accept Solution.