pstanton85 Posted May 18, 2021 Share Posted May 18, 2021 I'm trying to disable the logo link for my website -- equiem.club/lpc. I'm on business plan. Have tried some existing, recommended CSS but not working. Any help is much appreciated Link to comment
Agha_Waqas Posted May 18, 2021 Share Posted May 18, 2021 1 hour ago, pstanton85 said: I'm trying to disable the logo link for my website -- equiem.club/lpc. I'm on business plan. Have tried some existing, recommended CSS but not working. Any help is much appreciated Hi you can use below code into CSS editor .header-title-logo { pointer-events: none; } Link to comment
botan008 Posted May 18, 2021 Share Posted May 18, 2021 If you want to change where it points you can use: <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function () { $(".header-title-logo a[href]").attr("href", "NEW_URL_HERE"); }); </script> The only annoyance is that you have to apply this to every page with the header logo. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment