I've been using Bootstrap for a few months and it's pretty easy, but this very simple task is confounding me. On a desktop, I have a row with a large image logo on the left and 2 buttons on the right. On mobile devices, the image logo should be in the center and the 2 buttons under the image logo also centered so it looks like a nice, tidy triangle.
I have tried many different scenarios like nesting rows within and also creating lots of columns, but all the scenarios make the mobile view distorted.
Here is the code that shows the best on mobile, though it is still askew with the image logo aligning a little to the left and the buttons not centered well.
<div class="container">
<div class="row">
<div class="col-xs-9 col-md-8">
<a href="#"><img src="imagelogo.jpg"></a>
</div>
<div class="col-xs-9 col-md-4" align=center>
<a href="#" class="btn btn-success btn-lg" role="button">Back</a>
<a href="#" class="btn btn-default btn-lg" role="button">Forward</a>
</div>
</div>
</div>
Any thoughts on how to guarantee the mobile view looks correct with everything centered? Thank you