ナビゲーションバーの中央にロゴを表示したいと思います。現時点では私はそれを本当に小さくするようにしましたが、今はそれを見ることができますが、後でサイズを並べ替えることになります。ここでロゴイメージをヘッダーの中央に配置する方法
が、私はそれを見てみたいかのPhotoshopのデザインである:ここで https://gyazo.com/c1b0d25c4fe94a33edf3937576324229
は、それが現在どのように見えるかです: https://gyazo.com/4432c9c4874a082a9c4a4c5eb6d7af12
任意の助けいただければ幸いです。
HTML:
<body id="chesters">
<header>
<nav>
<ul>
<li><a href="Menu.html">Menu</a></li>
<li><a href="Burritos.html">Burritos</a></li>
<li><a href="index.html"><img class="header-image" src="assets/Headerlogo1.png"></a></li>
<li><a href="Contact.html">Contact Us</a></li>
<li><a href="About.html">About Us</a></li>
</ul>
</nav>
</header>
<div id="Page">
</div> <!-- Page -->
</body>
CSS:
body {
font-family: 'Open Sans', sans-serif;
background-color: #f3f3f3;
color: #666;
margin: 0px;
padding: 0px;
}
#Page {
padding-top: 100px;
}
header {
background-color: #1c1c1b;
font-family: 'Century gothic';
font-size: 180%;
height: 100px;
width: 100%;
border-bottom: solid;
border-bottom-color: #009641;
border-bottom-width: 5px;
position: fixed;
line-height: 50px;
z-index: 1000;
overflow: hidden;
transition: all 0.8s ease;
}
.header-image {
/*width: 100px;
height: 400px;*/
align-content: center;
margin-top: -30px;
}
#center-column {
background-color: white;
width: 1080px;
height: 100%;
box-shadow: 0px 1px 5px #888888;
margin: 0 auto;
padding-bottom: 10px;
}
nav {
}
nav ul {
text-align: center;
display: table;
}
nav li {
display: table-cell;
vertical-align: middle;
/*display: inline;*/
padding: 0 10px;
}
nav li a {
color: #009641;
text-decoration: none;
}
nav li a:hover {
color: #e2030e;
}
は、あなたが要素にある程度のマージンとパディングを追加してみましたか? –