Hi im a new user of couch CMS
firstly i said thx to great CMS simple and easy to use but today i have the problem to put repeatable region in a row of three column
this is what i want:

then i out repeatable code
result is:

this is not really nice to look isn it, is there any solutions to make this one better?
either edit each of column on cms size / position OR maybe the cms width?
thanks a lot...
firstly i said thx to great CMS simple and easy to use but today i have the problem to put repeatable region in a row of three column
this is what i want:

then i out repeatable code
<cms:repeatable name='multiple_Logo_Row' >
<cms:editable type='image' name='logoA' label='Client Logo' show_preview='1' preview_width='150' input_width='121'/>
<cms:editable type='textarea' label='Description' name='descA' />
<cms:editable type='image' name='logoB' label='Client Logo' show_preview='1' preview_width='150' input_width='121'/>
<cms:editable type='textarea' label='Description' name='descB' />
<cms:editable type='image' name='logoC' label='Client Logo' show_preview='1' preview_width='150' input_width='121'/>
<cms:editable type='textarea' label='Description' name='descC' />
</cms:repeatable>
<cms:show_repeatable 'multiple_Logo_Row'>
<div class="col-lg-4">
<p class="imgContainer"><img src="<cms:show logoA/>" width="150px"/></p>
<p><cms:show descA /></p>
</div>
<!-- /.col-lg-4 -->
<div class="col-lg-4">
<p class="imgContainer"><img src="<cms:show logoB/>" width="150px"/></p>
<p><cms:show descB /></p>
</div>
<!-- /.col-lg-4 -->
<div class="col-lg-4">
<p class="imgContainer"><img src="<cms:show logoC/>" width="150px"/></p>
<p><cms:show descC /></p>
</div>
</cms:show_repeatable>
result is:

this is not really nice to look isn it, is there any solutions to make this one better?
either edit each of column on cms size / position OR maybe the cms width?
thanks a lot...