Ensure Bootstrap .h1, .h2, .h3, .h4, .h5, .h6 classes are not overridden by stylesheet, particularly when applied to a <p> element in the .main-container.
For example,
Does not work:<p class="h2"><a href="#">Heading 2</a></p>Works:<p><a href="#" class="h2">Heading 2 linked</a></p>
See Bootstrap Typography headings
Ensure Bootstrap .h1, .h2, .h3, .h4, .h5, .h6 classes are not overridden by stylesheet, particularly when applied to a
<p>
element in the .main-container.For example,
Does not work:
<p class="h2"><a href="#">Heading 2</a></p>
Works:<p><a href="#" class="h2">Heading 2 linked</a></p>