문제

On my site the logo will only link at the bottom. I believe this is because the navigation stops it from linking.

My site is chattrd.com/htdocs.

I have tried putting the <div> inside the <a> tags, and putting half of the <div> in the <a> tags. Neither of these solutions worked.

도움이 되었습니까?

해결책

Easiest ways:

  • Remove position: relative from

    .navigation-primary_right {
        position: relative;
        text-align: right;
    }
    

Or

  • Insert z-index:1 into

    .header_brand {
        position: absolute;
    }
    

But I recommend you not to use position:absolute. I would use instead something like

.header_brand {
    float: left;
}
.header-primary_container {
    overflow: hidden;
    position: relative; /* Optional */
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top