I am facing an issue with aligning columns in a bootstrap section within a Wordpress template that I am working on. The problem is that the columns on the second line of the row are not centered.
Currently, the layout displays 4 columns in the top row and then 2 underneath floated to the left. What I aim for is to keep the 4 columns at the top as they are but center the bottom two columns.
Below is the code snippet:
<div class="col-sm-10 col-sm-offset-1">
<div class="row row-centered">
<div class="col-sm-3 col-centered">
</div>
<div class="col-sm-3 col-centered">
</div>
<div class="col-sm-3 col-centered">
</div>
<div class="col-sm-3 col-centered">
</div>
<div class="col-sm-3 col-centered">
</div>
<div class="col-sm-3 col-centered">
</div>
</div>
</div>
'example