I have an HTML structure where I need to place the logo in one column and the Title in another column.
<div class="row">
<div class="large-3 medium-3 small-12 columns ">
<img src="http://placehold.it/100x100&text=[Logo 1]" />
</div>
<div class="large-9 medium-9 small-12 columns ">This is the Title</div>
</div>
<p></p>
<div class="row">
<div class="large-3 medium-3 small-12 columns ">
<img src="http://placehold.it/200x100&text=[Logo 2]" />
</div>
<div class="large-9 medium-9 small-12 columns ">This is the Title</div>
</div>
The logo may be of different sizes, as shown in the example above.
I want to align the title. Here is an example script http://jsfiddle.net/57fBK/15/
source
share