pstanton85 Posted May 18, 2021 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
Agha_Waqas Posted May 18, 2021 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; }
botan008 Posted May 18, 2021 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.