I'm using a template and the titles are inside a div
. I want to apply h1
to the title but it goes bad (the div
is styled with css, and there is no styling for h1
)
Normally this is what it is:
<div class="content-pagetitle">Title</div>
I'm changing to:
<div class="content-pagetitle"><h1>Title</h1></div>
But it goes bad.
I tryed to use the same styling content-pagetitle
for h1
. It didn't worked
<h1>Title</h1>
(It does not become same as content-pagetitle)
Is there a css code that says "do not apply any styling to h1
"?