I'm fiddling around with bootstrap to make a nice dashboard for our bug tracking web app, but cannot get it to display the way I want...
The dashboard will display different statistics based on who's logged in, so my code needs to be resistant to allow usage of differing number of 'widgets' as I like to refer to them.
The idea is to use 'span6' containers for every widget, and have bootstrap stack them side by side (2 per row) automatically. Since I don't know how many widgets will be shown, I'm not using the <div class="row">
elements.
To make it a little more difficult I'd like to add the accordion class to each widget as well, allowing them to be collapsed independently
I started by putting everything in a <div class="span12">
element, then adding the span6 elements underneath.
Instead of writing everything down here,I created a small example on bootply: Bootply link
However for some reason, my span6's are appearing beneath each other, instead of 2x2 next to each other. Also the span6's seem to be too small, since the labels around the texts (e.g. '0 Bug(s) closed and assigned to you, good job!') don't have rounded corners on the right side.
I would be very gratefull if you could go over this code and let me know where I went the wrong way.
Thanks!