Hello. I have searched the other posts related to hiding tags, but none of the responses work for Launch theme.
Can anyone tell me how to change the css to hide all tags on my blog? They make the page look messy.
Please & thank you!
Hello. I have searched the other posts related to hiding tags, but none of the responses work for Launch theme.
Can anyone tell me how to change the css to hide all tags on my blog? They make the page look messy.
Please & thank you!
Hello @NutriTots ,
Please share:
If the store is not online yet, please follow this quick tutorial to learn how to safely and temporarily share an offline/unpublished theme URL.
Kind regards,
Diego
My site is nutritots.com. The page is https://nutritots.com/blogs/learn and then each individual post.
@NutriTots , do this to fix it in 20 seconds:
.template-blog .post-subtitle > *:nth-child(3){
display: none !important;
}
Please let me know whether it works.
Kind regards,
Diego
It hid it under the title of the blog on the main page, but it is still present when I click on each blog individually. Also, it is still present on the main blog page under “filter by tag.”
Thank you for your help.
You can replace the previous code with the following:
.post-subtitle > *:nth-child(3),
.blog-tags-wrapper{
display: none !important;
}
Kind regards,
Diego
You rock!! Thank you!