I'm attempting to hide a h1 tag from one page, now it's a dynamic page so their are not any hooks that I can target. I was hoping their would be a quick fix from CSS to target the content.
I've done some research and attempted the following methods:
<div id="pageH1">
<h1>value</h1>
<div class="clear"></div>
</div>
h1[att~=value] {
display:none;
}
h1[att=value] {
display:none;
}
However neither have worked, I was wondering if this was something that can be done with CSS or will I need to use JS?
randomvalue
`. `:empty` will not help in this case. Also it not so related to question in topic. – Tommi Jul 18 '13 at 19:35