"Full Screen Split Header"
Bootstrap 3.3.0 Snippet by benhanna99

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/2.6.0/css/flag-icon.css">
<section class="landingpage">
<div class="mt-landing">
<div class="col-md-6 col-sm-6 col-xs-12 front-img nopad" style="background-image: url('http://via.placeholder.com/1250x650');background-position: center center;background-size: cover">
<div class="overlay-1">
<div class="content">
<h1>heading 1</h1>
<h2>heading 2</h2>
<a href="#" type="button" class="btn">
<span class="flag-icon flag-icon-rs"></span>SERBIAN
</a>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 front-img nopad" style="background-image: url('http://via.placeholder.com/1250x650');background-size: cover;background-position: center center">
<div class="overlay-2">
<div class="content">
<h1>heading 1</h1>
<h2>heading 2</h2>
<a href="#" type="button" class="btn">
<span class="flag-icon flag-icon-rs"></span>SERBIAN
</a>
</div>
</div>
</div>
</div>
</section>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.mt-landing {
width: 100%;
text-align: center;
position: absolute;
}
.mt-landing .nopad {
margin: 0px !important;
padding: 0px !important;
}
.mt-landing .front-img {
height: 100vh;
}
.mt-landing .overlay-1 {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(57, 54, 54, 0.48);
background-size: cover;
background-position: center center;
}
.mt-landing .overlay-2 {
height: 100%;
position: absolute;
width: 100%;
background-color: rgba(57, 54, 54, 0.48);
background-size: cover;
background-position: center center;
}
.mt-landing .content {
left: 0;
position: relative;
top: 30%
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: