I created a collage of images and a small sign in the container. Now I want the container to be placed on top of the collage of images.
html
<section id="signin">
<div class="photos">
<img src="http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
<img src="http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
<img src = "http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
<img src = "http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
<img src="http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
<img src="http://www.hdwallpapersimages.com/winter-tiger-wild-cat-images/31073/">
</div>
<div class="sign container-fluid">
<div class ="container">
<div class="row section_blurb">
<h1> Sign In </h1>
<div class="col-xs-12 col-sm-4">
<a href = "http://www.facebook.com">
<img src="images/ic_facebook blue.svg" class = "img-responsive" align = "left"><p>Sign in with facebook</p></a>
<a href = "https://plus.google.com">
<img src="images/ic_google plus red.svg" class = "img-responsive" align = "left"><p>Sign in with google+</p></a>
<a href = "https://instagram.com/">
<img src="images/ic_instagram blue.svg" class = "img-responsive" align = "left"><p>Sign in with instagram</p></a>
<a href = "#email">
<img src="images/ic_email white.svg" class = "img-responsive" align = "left"><p>Sign in with Email</p></a>
</div>
</div>
</div>
</div>
</section>
CSS
.photos {
line-height: 0;
-webkit-column-count: 4;
-webkit-column-gap: 0px;
-moz-column-count: 4;
-moz-column-gap: 20px;
-moz-row-gap: 20px;
column-count: 4;
column-gap: 0px;
z-index: auto;
}
.photos img {
width: 100% !important;
height: auto !important;
padding-bottom: 20px;
}
The css container is standard. There is also a different section above and below the signature section.
source
share