Above are the desired results - but with nav bar moved to right of page.
Here is the existing css and html. Again the goal is
- To get the logo image vertically centered and horizontally to the left of the page
- Get the nav bar to the far right of the page and vertically centered
- have the HR just below the image and the nav bar
Thank you in advance!
<div class="nav">
<ul>
<li><img src="Images/logo.jpg"></li>
<li><a class="link" href="#">Contact</a></li>
<li><a class="link" href="#">Qual...</a></li>
<li><a class="link" href="#">Home</a></li>
</ul>
<hr class="hr">
</div>
.nav {
list-style: none;
}
.nav li {
display: inline-block;
vertical-align: middle;
}