Нужно сделать так,что бы меню шло после логотипа,а не в самом логотипе.
Код
<!DOCTYPE html>
<html>
<head>
<title>HomeCinema - Твой домашний кинотеатр!</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<div class="wraper">
<div class="header">
<div class="hc-logo">
<a href="http://homecinema.do.am/">
<i class="icon"></i>
</a>
</div>
<div class="header-menu">
<ul class="header-menu-list">
<li>
<a href="http://homecinema.do.am/">
Главная
<a>
</li>
<li>
<a href="/">
Новинки
</a>
</li>
<li>
<a href="/">
Стол заказов
</a>
</li>
<li>
<a href="/">
Помощь
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>
Код
.wraper {
width: 950px;
position: relative;
margin: 0 auto;
}
.header {
width: 950px;
height: 50px;
background: #292929;
}
.hc-logo {
position: fixed;
width: 160px;
height: 50px;
margin-left: 60px;
}
.hc-logo:hover {
opacity: 0.9;
}
.icon {
background: url("images/logo-header.png");
position: absolute;
width: 100%;
height: 100%;
}
.header-menu {
display: inline-block;
color: white;
}
.header-menu li {
display: inline-block;
}
.header-menu-list {
}