0

website: www.vocabularybuilder.co

I want the logo and the navigation to be clickable, it used to work but i did something and now it doesn't :/

2 Answers2

1

Add z-index: 1 and position: relative for this class.

.site-header__logo {
    text-align: center;
    margin: auto !important;
    max-width: 400px;
    font-size: 1.85714em;
    top: 0;
    height: 90px;
    display: table;
    z-index: 1;
    position: relative;
}
jkythc
  • 420
  • 3
  • 12
0

Try adding this to your css:

.nav-bar {
    pointer-events:none;
}
// for the 2 links
li a {
    pointer-events: auto;
}

Hope it'll work. This was already answered here Click through a DIV to underlying elements. ctto

Community
  • 1
  • 1
Harry Mac
  • 163
  • 1
  • 2
  • 11