AdBlock blocks any social links

Does anyone know how to fix it? It seems that it just blocks that whole section right div

Just visited your Website with mobile Brave Browser on my Smartphone and it seems that the Social Icons totally disappear in horizontal but still be there in landscape Mode. Strange!

That’s another thing, I think that is on purpose, but it is not something I made myself.

On https://demo.ghost.io/, it’s the same thing on mobile.

EDIT:
I found the issue on why it’s not displayed on mobile. It’s in the css at about lines 370, for me. It’s the one called .site-nav-right

@media (max-width: 700px) {
    .site-header {
        padding-right: 0;
        padding-left: 0;
    }
    .site-nav-left {
        margin-right: 0;
        padding-left: 4vw;
    }
    .site-nav-right {
        display: none;
    }
}
1 Like

Always good to know how Things work… :wink:

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