skip to Main Content

I’m using a blogger template and I want to hide a specific h3 heading. However it’s one of a few h3’s used on this page. The one I’m trying to remove is

h3 class="title">Donate

The others all have an h3 class of "title: so setting h3’s to show: none; won’t work. Any ideas?

2

Answers


  1. Edit that h3 will work?

    <h3 id='to-delete' class="title">Donate</h3>

    in your css file,

    #to-delete {
      display: none;
    }
    

    Post more html and make it clear if you still need help

    Login or Signup to reply.
  2. you can create a new class using CSS:

    <style>
    .hide {
      display: none;
    }
    </style>
    

    And then add that class to the H3 you want to hide:

    <h3 class="title">Heading to show</h3>
    <h3 class="title hide">Heading to hide</h3>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search