Instead of providing code to solve an issue, I am using Bootstrap and encountering problems with the roster section where the heights are inconsistent. My temporary solutions involved adding classes to specific divs or setting fixed column heights, but I'm looking for a more dynamic solution.
Currently, some roster members are not properly aligned in a 4-column grid layout as intended.
In addition to this issue, I am struggling to add a background image to my video element. The CSS I attempted to use is:
.full-img {
background: url('../img/fallback.jpg');
background-size: cover;
}
Another challenge I face is centering the .banner-text div vertically using the following code:
.banner-text {
position: relative;
z-index: 200;
text-align: left;
display: table;
padding-top: 60px;
padding-bottom: 60px;
float: left;
}
.banner-text h1 {
display: table-cell;
vertical-align: middle;
}
Unfortunately, this method did not work, hence the padding added to fake the vertical alignment.
Being relatively new to front-end development, I welcome any suggestions or insights that could help resolve these issues or enhance the overall design.