Reputation: 43
Weird white bar at the top of my page, please help!
I'm not exactly sure if this white bar with the ">" sign at the left has to do with my background photo in my CSS or if it has to do with my header top margin. please let me know what you guys think.
#header {
background:url('../img/stars-bg.jpg') center center no-repeat;
background-size:cover;
height:100%;
color:#fff;
display:flex;
align-items:center;
}
<section id="header">
<div class="container">
<div class="row">
<div class="col-md-6 wow fadeIn" data-wow-delay=".8s" data-wow-duration="2s">
<img src="img/logo.png" class="img-fluid" alt="logo"/>
<h2>THINGS WORK BETTER IN SPACE</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elitproident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p class="hidden-sm-down">proident, sunt in culpa qui officia deserunt mollit anim id est laborum.proident, sunt in culpa qui officia deserunt mollit anim id est laborumproident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</div>
<div class="col-md-6 header-right hidden-sm-down wow fadeIn" data-wow-delay="1.3s" data-wow-duration="2s">
<p>qui officia d
eserunt mollit anim id est laborum. qui officia deserunt mollit anim id est laborum.proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
<form>
<fieldset class="form-group">
<label class="sr-only">Name</label>
<input type="text" class="form-control" name="#" placeholder="Your name...">
</fieldset>
<fieldset class="form-group">
<label class="sr-only">Email</label>
<input type="text" class="form-control" name="#" placeholder="Your email...">
</fieldset>
<button type="submit" class="btn btn-outline-info btn-block">sign up</button>
</form>
</div>
</div>
<div class="row wow swing" data-wow-delay="2s">
<div class="col-md-12 text-xs-center">
<a href="#social"><i class="fa fa-chevron-down fa-3x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</section>
Upvotes: 1
Views: 745