I have a very simple layout going in the footer of a website using Bootstrap 3:
<div id="reviews" class="row">
<div class="container">
<h3><i class="icon-comment"></i>Review<i class="icon-comment"></i></h3>
<div class="review col-xs-12">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
</p>
</div>
<div class="review-meta row">
<div class="container">
<div class="review-author col-xs-11">Author Name</div>
<div class="add-review col-xs-1 text-center"><i class="icon-plus"></i></div>
</div>
</div>
</div>
</div>
For some reason, in .review-meta, the col-xs-1 wraps to the next line when viewed on an iPhone - and only in portrait view. (Which is to say .review-author and .add-review should be side-by-side). I haven't been able to figure out why. Would anyone be able to lend a hand?
Notes: - I'm having no issues in any other browsers or in landscape mode. - I've tried it on the iPad with no issues - There are no additional styles applied to the elements
Any help would be appreciated.