Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

484
Visualizações
How to hide <h3> in div tags with css

I'm trying to hide this div's h3 tag without adding a class. I have tried in various ways with the css but I have not succeeded. Can anyone recommend me an alternative?

Since the html code is in a plugin file I cannot act on it directly.

<div class="wpua-edit-container">
<h3>Profile Picture</h3>
</div>
about 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

Is this what you want?

div h3 {display:none}
<div class="wpua-edit-container">
<h3>Profile Picture</h3>
<p>hello...</p>
</div>

Also, you may do:

  1. div h3 {display:none;}
  2. div.wpua-edit-container h3 {display:none;}
  3. .wpua-edit-container h3 {display:none;}
  4. .wpua-edit-container > h3 {display:none;}
  5. div.wpua-edit-container > h3 {display:none;}

All, of these should work. Additionally, add !important if required, if your plugin is still not removing it, like {display: none!important}.

about 4 years ago · Santiago Trujillo Relatório

0

You can use jQuery if you want:

here's the index.html

<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
        <script src="script.js"></script>
    </head>
    <body>
        <div class="wpua-edit-container">
            <h3>Profile Picture</h3>
        </div>
    </body>
</html>

and the script.js:

$(document).ready(function() {
    $("h3").hide()
})

It's basically doing the same thing as display: none; (it adds to the element the display: none style property to the element) but using jQuery.

about 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda