Hi! I just have a few questions. Really need your help.
How do I center align and make the Menu Heading for both desktop and mobile view bold ? Refer to photo showing FAQs.
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
Moeed
August 22, 2023, 6:33am
3
Hey @pmltntc
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
In your Shopify Admin go to online store > themes > actions > edit code
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;
}
Moeed
August 22, 2023, 7:02am
7
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.