How do I stop my logo from linking to the homepage? I prefer no link at all, just the image.
3 Answers
Hi,
To resolve this issue, you can log in to Dashboard > Appearance > Editor, then add the following code to the style.css file:
.site-header #branding a {
pointer-events: none;
cursor: default;
}
Hope this helps !
Should this also work for Mobile? It seems to only work on Desktop
To resolve this issue, you can add the following code to the style.css file:
.wrap-navigation .small-logo {
pointer-events: none;
cursor: default;
}
Hope this helps !
Please login or Register to submit your answer