I'm attempting to utilize Bootstrap's Grid System to evenly distribute my Buttons in Columns at the top of my Hub Site. However, when I utilize their code:
I do not get the same results:
The container does not seem to be generating the row that the columns should be in. Please help, Thank You!
Solved! Go to Solution.
Hello Dave,
You should give the column class a number. If you want three columns of even width, it would be `col-sm-4` as Bootstrap 3 uses a 12-column grid system. So three divs, 4 columns wide. Also, you shouldn't need the container or row classes as our Text Card already sits inside a container and row.
Hello Dave,
You should give the column class a number. If you want three columns of even width, it would be `col-sm-4` as Bootstrap 3 uses a 12-column grid system. So three divs, 4 columns wide. Also, you shouldn't need the container or row classes as our Text Card already sits inside a container and row.
This worked, thank you!