Home › Forums › CSS › Word press site. Top row of pics are cut off. › Re: Word press site. Top row of pics are cut off.
March 1, 2013 at 9:03 pm
#126655
Member
In your media query for 979px in bootstrap.css your navbars become static, so the bottom margin applies.
@media (max-width: 979px) {
body {
padding-top: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: static;
}
.navbar-fixed-top {
margin-bottom: 20px;
At anything larger than this your navbars are fixed, so any margin applied to them will not affect the other elements. So a margin-top will need to be applied as
@AlenAbdula described when the media query doesn’t apply.