Can anyone help me figure out why the image at the center keeps moving when resizing the window in Bootstrap 3.0? Here is my current HTML code:
<div class="text-vertical-center">
<img id="output" class="img-responsive img-center" src="http://s15.postimg.org/seg9dex3f/output2.png" alt="">
<h3>This is some cool text</h3>
<br>
<button type="submit" class="btn btn-success">
<i class="fa fa-envelope-o fa-fw fa-2x"></i>
</button>
</div>
Here is the CSS I have applied to the image:
#output{
display: table;
position: relative;
padding-left: 35%;
}
I had to set the padding to 35% to center the image in a full-screen window, but it starts moving when resizing the window. Any suggestions on how to fix this issue would be greatly appreciated. Thank you.