I have a large background image of 1920x550px and I want to place the div directly below it. Since I don’t know how to display the full image, I used a dirty trick and actually filled the image with the transparent part, so this image is 1920x1080, then I show it as follows:
.bg-image-big{
background: url(../images/header-bg-big.png) no-repeat center center fixed;
background-color: #f7f7f7;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
This always stretches it to full screen. Two problems now: this does not work on mobile devices (reduces the image), and I don’t know how to place the inner div exactly under the "end" of the actual banner. In theory and on the screen, 1920x1080 is the upper border of 550 pixels.
<div class="section bg-light-gray bg-image-big">
<div class="inner">
</div>
</div>
Any better approach to this (sure there are). Any hint appreciated!
Bootstrap3 FullPage.js
//EDIT:
:
:

:


6/8/12, .
, ...