I've seen over 10 stackoverflow questions and their answers, none have worked so far.
I have text inside a bootstrap col, but it just sits at the top of the col. I need it to be centered, preferably centered in relation to the image.
I was using the media object, but it did not look good for smaller devices.
This is what I have:
<div class="container">
<div class="row">
<div class="col-md-5">
...img stuff..
</div>
<div class="col-md-7 left-padding-30" style="height: 500px; border : 1px solid red;">
<h2 class="featurette-heading">
This First Heading
<span class="text-muted">Will Catch Your Eye</span>
</h2>
<p class="lead">Mussum ipsum cacilds, vidis litro abertis. Consetis adipiscings elitis. </p>
</div>
</div>
Output:
jsfiddle: http://jsfiddle.net/9btr6zon/
I've set the height manually to 500px to try aligning the content. Is there any way I can remove it while still centering the content for bigger screens?
Extra question, the image is using img-circle and img-resposive, yet it's not resizing for smaller screens, can I fix this?
Edit: As a "placeholder" solution, I set the padding-top of the col to around 150px.