Is it possible to align two boxes next to each other, one on the left and the other on the right? Additionally, how can I make sure that the mytitle box expands to full width on mobile devices?
If floats are necessary, how can they be added when a class has already been defined? Here's a portion of the code I have so far...
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6">
<p class="mytitle" align="center"><strong>Information</strong></p>
<p><br></p>
<p class="info-news"><img src="image/catalog/bullet.png" width="18" height="20"><a href="http://example.com/information_id=4" target="">Our team</a></p>
<p class="infonews"><img src="image/catalog/bullet.png" width="18" height="20"> <a href="http://example.com/information_id=6" target="">Couriers</a></p>
<p class="infonews"><img src="image/catalog/bullet.png" width="18" height="20"> <a href="http://example.com/information_id=8" target="">Refunds</a></p>
<div class="col-sm-6 hidden-xs">
<div id="signup">
<a href="http://http://example.com/signup.php"><img class="center-block img-responsive" src="image/catalog/signupbox.png" width="405" height="200"></a>
</div>
</div>
</div>
</div>