If you are also experiencing the problem where text is overflowing while using Jumbotron, that is, Jumbotron is cutting text In the middle then somewhat this is what your code looks like:
Wrap col-md-6 with another div with class row and your jumbotron will work fine.
Problem
<div class="jumbotron"> <div class="col-md-6 col-md-offset-3"><h1>PyVinit Blog</h1></div> </div>
Solution
col-md-6 is the culprit here.<div class="jumbotron"><div class="row"><div class="col-md-6 col-md-offset-3"><h1>PyVinit Blog</h1></div>
</div>
</div>
Wrap col-md-6 with another div with class row and your jumbotron will work fine.
Comments
Post a Comment