Reputation: 169
On the following image you can see how the sidebar of my wordpress site has somehow found its way into the content:
I'm not sure how I move it out? I have a results.php file that calls the entire content section and the sidebar is not mentioned in there (I just turned the sidebar on in wordpress).
Any ideas on how I fix this?
Upvotes: 1
Views: 133
Reputation: 6702
It looks as you had added columns in a bootstrap framework grid design.
When doing so, you have to adapt the classes of all columns to fit your desired result. It might be applicable to redesign 2 main columns and divide one in nested columns. The sum of grid columns in a row should be 12. The class names like .col-md-2
are similar to <td colspan="2">
table cells.
See the documentation example and explanation of the grid system for further information.
Upvotes: 1