I\'ve only just started learning so please stick with me and I\'ll try provide as much info as I can.
Using Bootstrap 3 I have been attempting to adjust a number of
You can try using CSS negative margins (no jQuery needed)..
.demo{
margin-bottom: -99999px;
padding-bottom: 99999px;
background-color:#efefef;
}
#equalheight {
overflow: hidden;
}
http://bootply.com/92230
EDIT - another option
Here is another example using CSS3 flexbox
spec: http://www.bootply.com/126437