Solved

How Do I Remove "Subheading" From News Page In Turbo Theme

DArmella
Tourist
6 0 1

Our store currently uses the Turbo theme. On the News page under the heading "NEWS" the page has "Subheading". How do I add a subheading? How do I remove "Subheading" from the page completely? Here is the page: https://shop.precisionscale.com/blogs/news

 

Accepted Solution (1)

diego_ezfy
Shopify Partner
2958 568 890

This is an accepted solution.

@DArmella, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > styles.scss.css and paste this at the bottom of the file:

.blog .blog-header .subtitle{
    display: none !important;
}



Kind regards,
Diego

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.

View solution in original post

Replies 2 (2)

diego_ezfy
Shopify Partner
2958 568 890

This is an accepted solution.

@DArmella, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > styles.scss.css and paste this at the bottom of the file:

.blog .blog-header .subtitle{
    display: none !important;
}



Kind regards,
Diego

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.
DArmella
Tourist
6 0 1

This works perfectly. Thank you!