So I want the logo in the middle, and 2 links to the left, 2 links to the right. I've been trying a lot of different things but I can't make all 4 links sit on the same height while also having the logo in the center..
Here's what I got
HTML:
<header>
<nav>
<ul>
<li><a href="smartphones.php">Smartphones</a></li>
<li><a href="tablets.php">Tablets</a></li>
</ul>
<ul>
<li><img src="logo.png" alt="Logo" height="80" width="80" /></li>
</ul>
<ul>
<li><a href="laptops.php">Laptops</a></li>
<li><a href="desktops.php">Desktops</a></li>
</ul>
</nav>
</header>
css:
header {
width: 100%;
height: 80px;
background-color: #FFF;
}
nav {
height:80px;
width:1000px;
margin: 0 auto;
}
nav ul {
width: 33.33%;
margin:0 auto;
float: left;
}
nav ul li{
display:inline;
}
What that gives is found here http://e2-repair.be/
Edit: Please note that I've tried a lot of things so what I got right now may look pretty dumb or whatever but it's the closest I got so far