Reputation: 361
I have this page http://www.maxsecure.cz/catalog/show/?hotelId=4
You can see here in middle "Room Details" section with table an Overview section with tabs. I need to have this Overview section with tabs full sized of content div. How I can do it please?
And also in another tab have full sized table.
Upvotes: 0
Views: 90
Reputation: 2001
As you can see in the documentation of Bootstrap, you can arrange width of columns with the so called col-*-*
classes.
Your Overview section has a class called col-sm-5
. The total columns in a row are 12 (i.e full width) So if you change col-sm-5
to col-sm-12
, then your Overview section spans the full width.
Upvotes: 1