So, i have:
<div class="wrapper">
<div class="full-width">
<div class="header">
<a href="">
<img src="img/logo.png" alt="Logo" class="logo img-responsive" />
</a>
<nav>
<ul class="nav nav-pills">
<li><a href="">Moden Web Design</a></li>
<li><a href="">Prices</a></li>
<li><a href="">Demonstration</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</nav>
</div>
</div>
</div>
inside a <div class="wrapper">
, that has the width:1100px;
. So the question is if i can somehow make the div class="full-width"
with a full width background... Because it stops at the .wrapper
's margins.
I tried this method, but it doesn't work:
.full-width {
height:50px;
position:absolute;
width:100%;
z-index:100;
}