0
在我的網站上,徽標只會鏈接在底部。我相信這是因爲導航停止鏈接。網站上的鏈接徽標僅在底部工作
我的網站是chattrd.com/htdocs。
我試圖把<div>
內<a>
標籤,並把<div>
的一半在<a>
標籤。這些解決方案都沒有工作。
在我的網站上,徽標只會鏈接在底部。我相信這是因爲導航停止鏈接。網站上的鏈接徽標僅在底部工作
我的網站是chattrd.com/htdocs。
我試圖把<div>
內<a>
標籤,並把<div>
的一半在<a>
標籤。這些解決方案都沒有工作。
最簡單的方法:
從
.navigation-primary_right {
position: relative;
text-align: right;
}
或者
插入z-index:1
刪除position: relative
到
.header_brand {
position: absolute;
}
但我建議你不要使用position:absolute
。我會用相反的東西
.header_brand {
float: left;
}
.header-primary_container {
overflow: hidden;
position: relative; /* Optional */
}
非常感謝你的工作:D –