Hi all, I am using Dawn theme and wanted to remove page titles. I followed the below instructions to remove page titles from pages. However, now a page description shows up in place of the title. How do I now remove that?
- In your Shopify Admin go to online store > themes > actions > edit code
- In your theme.liquid file, find the (press CTRL + F or command + F on Mac)
- paste this code right above the tag:
<style>
.main-page-title.page-title:nth-child(1){
display: none !important;
}
</style>