Hello, I went through a few discussion boards and threads attempting to remove the title from my default page template. None of them worked so far. I thought this one would definitely work but it didn’t.
I want to remove the title from the About Us page but wouldn’t mind removing it from the entire theme. Any advice? I appreciate your help!
Link: https://loveinlieu.com/pages/about
Password: michelle
Hi @loveinlieu
Please go to your Themes > Edit Code > Assets > Open section-main-page.css > Add the following code to the bottom of the file.
.main-page-title { display: none; }
f you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!
4 Likes
kazi_1
March 6, 2022, 4:58pm
3
@loveinlieu try this css in base.css at bottom
#shopify-section-template--15750775111920__main .main-page-title {
display: none;
}
@AvadaCommerce , thank you for the speedy reply. It worked!
1 Like
You’re welcome @loveinlieu
This worked for me, thank you.
This worked for me as well. Craft theme in 2024. I tried using the following method in base.css file as suggested elsewhere, but it only removed it from desktop and not in mobile. This method suggested here worked for both. Thank you!
.main-page-title {
display: none; /* Hide the main title */
}