I’m trying to locate/delete this section on blog posts within my blog. I’m just not sure which part to delete/take out or in which liquid file it would exist.
<div class="title-box">
<h1 class="text-center text-uppercase title-under">BLOG</h1>
</div>
Blog post
https://samplified.us/blogs/tutorials-and-free-downloads/how-to-make-a-beat-like-medasin-tutorial
It just takes up way too much room and doesn’t really serve a purpose. I can locate it with inspect tool and delete that div class and it looks perfect.
I’m just not sure where in my theme files I can do that.
When I delete it on google inspector it’s exactly how I want it to look.
After Deleting
2
Answers
If you use wordpress, usually the css will be on style.css.
You can add display:none to title-box CSS and it will work just fine
First, set up a simple dev environment.
theme download
)Now try to edit the files and try to figure out what is the best option to delete that div.
title-box
and you are going to get all areas where that class is used. You can try to delete it and test out to see if that works for you or not.After you pick your solution and its working on your clone theme (preview mode). You can publish the clone theme over the current live theme.