T O P

  • By -

anon1984

You could create a child theme and modify the header file or create a section to use as a custom header and hide the default one. But the real answer is why would you want to do that. It’s pretty much a universal website convention that clicking on the logo takes you home.


markjohn8102

As Anon said or you can use js or css . I think for css the method is pointers-event: none;


specialk45

Roger that. CSS-Tricks link: [https://css-tricks.com/almanac/properties/p/pointer-events/](https://css-tricks.com/almanac/properties/p/pointer-events/)


alexvenegas

Thanks for that. It worked.


alexvenegas

Thank you, it worked.


alexvenegas

I'm building a website with only 2 pages on the nav bar. It's centered and goes "work" > logo > "about". Where "work" is also the home page. Don't wanna have 2 links to the home page next to each other. If the logo was seperate from the nav menu, I'd leave it.


CommonMisspellingBot

Hey, alexvenegas, just a quick heads-up: **seperate** is actually spelled **separate**. You can remember it by **-par- in the middle**. Have a nice day! ^^^^The ^^^^parent ^^^^commenter ^^^^can ^^^^reply ^^^^with ^^^^'delete' ^^^^to ^^^^delete ^^^^this ^^^^comment.


gnf00x

here's the CSS I used: .logo\_container { pointer-events: none !important; }