Is it possible to use the 34 Responsive Grid system to create a column that takes up two-thirds of the full width?
Although the Grid System has equal columns settings, I'm curious how to combine or merge two columns together?
<div class="container">
<section class="row">
<div class="col_1">100%</div>
</section>
<section class="row">
<div class="col_2">50%</div>
<div class="col_2">50%</div>
</section>
<section class="row">
<div class="col_3">33%</div>
<div class="col_3">33%</div>
<div class="col_3">33%</div>
</section>
</div>