hi all
working on nav bar i have two divs and am trying to centre them both ?
I have tried putting them in on div and assigning a class to the main one with no luck
any help would be great
<div class="logo">
<div class="navcontain">
<a href="Index.html"> <img src="Images/nav.png" width="250px" height="" alt="we" /></a>
</div>
<ul class="navigation">
<li><a href="Services.html" alt="Popular services"> Services</a></li>
<li><a href="Portfolio.html"alt="Popular services">Portfolio</a></li>
<li><a href="About.html"alt="Popular services">About us</a></li>
<li><a href="Contact-us.html" alt="Popular services"> Contact </a> </li>
</ul>
</div>
------------------------------------------
.logo
{
margin: 0 auto;
}
.navcontain
{
float:left;
width:300px;
margin:0 auto;
}
.navigation
{
float:left;
width: 500px;
margin:30px auto 30px;
}



Reply With Quote



.

Bookmarks