I'm having trouble getting 'by Jackie' to align under the 'Bella' logo without adding excessive space. Does anyone have any suggestions on how to resolve this issue?
HTML:
<div class="header">
<div class="wrapper">
<h1><a href="#">Bella<i>by Jackie</i></a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="whatwedo.html">What We Do</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
CSS:
.header h1 {
float: left;
line-height: inherit;
background: #969;
padding: 0px 30px 0px 30px;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 0px 0px 2px 2px;
margin-top: 0px;
}
.header h1 a {
margin-bottom:-20px;
}
.header h1 i {
font-family: 'Lobster', cursive;
font-size: medium;
font-style: normal;
padding-left: 0.5em;
padding-top: -10px;
}
.header h1 a {
font-family: 'Lobster', cursive;
font-size: 36px;
}
Check out this reference http://jsfiddle.net/XxEaz/