Logo not linking to homepage

Hi there!

On my website ikcdewereldwijzer.nu the logo in the header doesn’t link to the homepage. How can I fix this?

Thanks in advance!

-Karianne

Hello Karianne,

I checked your site and it is because the logo area is being covered with the custom div you have added for the slogan content:

Try finding this code:

.payoff {
    display: block;
    position: absolute;
    z-index: 1040;
    width: 100%;
    text-align: right;
    max-width: 1100px;
    padding: 60px 30px 0 0!important;
}

then update it to:

.payoff {
    display: block;
    position: absolute;
    z-index: 1040;
    width: 50%;
    text-align: right;
    max-width: 1100px;
    padding: 60px 30px 0 0!important;
    right: 0;
}

and also add this to the Global CSS:

.masthead-stacked {
    position: relative;
}

Hope this helps.

Thank you ever so much! Worked like a charm!

-Karianne

You’re always welcome Karianne!

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.