Hello I'm trying to display a modal splited in two parts, in the first one I'm trying to put an image, and in the other one I want to write N number of p tags. I thought using something like this:
<div class="row">
   <div class="col-md-6">
         Image
   </div>
   <div class="col-md-6">
          <p> tags
   </div>
</div>
But this doesnt works at all... What I exactly wants is something like in this picture:
What can I do to get something like the above image? or should I use a table to do it?
PD. I'm using Bootstrap 3.3.7 and CSS.