I just need some simple code to insert that will turn off the blog category type on masonry posts as well as in the individual blog posts (above the titles).
On the page on a site I designed: https://carrom.com/blog/ - I want to turn off the blue "Blog" and "Blog Uncategorized" pieces on each of the masonry preview. Please see attached screenshot - I have outlined in red what I am referring to.
Additionally, I want to turn it off on the actual blog post itself - Ie: at https://carrom.com/keeping-the-family-connected/ - I don't want it to say the blog style type above the title. I would rather just have nothing there. I have also attached a screenshot of what I want to turn off on there too.
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
/* For Blog Page Element */
.masonry.material .masonry-blog-item .meta-category, .related-posts[data-style="material"] .meta-category {
display: none !important;
}
/* For Single Pages */
#page-header-bg[data-post-hs="default_minimal"] .section-title.blog-title .inner-wrap >a {
display: none !important;
}
Hi,
I just need some simple code to insert that will turn off the blog category type on masonry posts as well as in the individual blog posts (above the titles).
On the page on a site I designed: https://carrom.com/blog/ - I want to turn off the blue "Blog" and "Blog Uncategorized" pieces on each of the masonry preview. Please see attached screenshot - I have outlined in red what I am referring to.
Additionally, I want to turn it off on the actual blog post itself - Ie: at https://carrom.com/keeping-the-family-connected/ - I don't want it to say the blog style type above the title. I would rather just have nothing there. I have also attached a screenshot of what I want to turn off on there too.
Thank you in advance!
-Evan
Hey Again,
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team