ryanmariehelfant Posted October 29, 2020 Share Posted October 29, 2020 Site URL: http://ryanmariehelfant.com/selected-films When I click my Site Title (my name at the top) it directs to my homepage (http://ryanmariehelfant.com) but I want it instead to re-direct to http://ryanmariehelfant.com/selected-films Can someone provide me with the CSS to do this? (My template is Julia). Thank you! Link to comment
tuanphan Posted October 31, 2020 Share Posted October 31, 2020 Add to Page Settings > Advanced > Header <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> $(document).ready(function() { $('body.site-title .logo a').attr('href','https://ryanmariehelfant.com/selected-films'); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
sheenvs Posted July 13, 2021 Share Posted July 13, 2021 On 10/31/2020 at 12:47 AM, tuanphan said: Add to Page Settings > Advanced > Header <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> $(document).ready(function() { $('body.site-title .logo a').attr('href','https://ryanmariehelfant.com/selected-films'); }); </script> @tuanphan - Is there a way to do this w/ the cart logo? URL: https://little-skillet-demo.squarespace.com/ Password: friedchicken#1 I want to replace the cart link with "/schedule". Link to comment
tuanphan Posted July 14, 2021 Share Posted July 14, 2021 8 hours ago, sheenvs said: @tuanphan - Is there a way to do this w/ the cart logo? URL: https://little-skillet-demo.squarespace.com/ Password: friedchicken#1 I want to replace the cart link with "/schedule". Use this code <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> $(document).ready(function() { $('header#header [href="/cart"]').attr('href','/schedule'); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.