我想在導航欄的中心顯示徽標。目前我已經做得非常小,以確保我現在可以看到它,但之後會將尺寸分類。如何將徽標圖像置於標題中心
這裏是我多麼希望它看起來一個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;
}
你嘗試加入一些margin和padding的元素? –