How do I center a heading or styled text within a Bootstrap3 column while customizing the text?
If I use "text-center" and "p" tags, everything aligns perfectly, but if I want to style the text further, it becomes a challenge.
For example (works fine):
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 text-center"> <p> Hello </p></div>
However, attempting to change the size and color of the text while centering it yields issues:
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 text-center"> <h1> Hello </h1></div>