Hello @lelestore1 ,
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your base.css file and paste the following code below:
To hide the title:
.main-page-title {
display: none !important;
}
To center the title:
.main-page-title {
text-align: center !important;
}
Note: Don’t use it in theme.liquid before or tag
it’s a good practice to organize your styles into separate CSS files and include them in the appropriate sections of your Shopify theme. This follows best practices for web development, making your code more modular, reusable, and maintainable.
Thanks