I have the HTML below, and there is text that does not have an HTML environment. Is there a way to hide the text "Enter" , which is after the tag "p" ?
<div class="entry">
<p class="page-header" style="text-align: center;"><strong>Enter</strong></p>
<p> </p>
Enter <-- i want to hide this text
<div class="subhead"></div>
</div>
It is not possible to wrap it with a div or any other tag, so I need another solution like JavaScript or some kind of CSS?
source
share