I'm trying to move the margin of column, but after that my text is compressed.on this paragraph <p>James plays tug-o-war on the beach with Jasmine.</p>
for the following HTML:
<div class="row5">
<div class="col-lg-8 col-md-8 col-sm-7 col-xs-12">
<h2> WELCOME </h2>
<p class="p1"> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley. </p>
<p class="p2">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-5 col-xs-12">
<h2>ABOUT</h2>
<div class="row">
<div class="col-xs-6">
<img src="img/avatar.png" alt="" class="img-responsive pull-right">
</div>
<div class="col-xs-6">
<p>James plays tug-o-war on the beach with Jasmine.</p>
</div>
</div>
</div>
</div> <!-- End row 5 -->
I tried this, but after that text is compressed.
<!-- language: lang-css -->.row5 .row{
margin-right: 5em;
}
I want to move jointly two columns, but without text compressed. You know from the code, first column is a picture, second is text.