YKL Posted December 20, 2023 Share Posted December 20, 2023 I've been trying to change a URL for one of my navigation menu from Pc version to mobile version, based on user device. The code below is how I tried to do it. In the screen below 600 px, I specified to redirect to the link inside content: url("");, but it doesn't seem to work. @media screen and (max-width: 600px) { .Header-nav-item--external a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] { content: url("http://m.chamdoctor.com/sub04/sub04_03.html"); } } @media screen and (min-width: 601px) { .Header-nav-item--external a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] { content: url("http://www.chamdoctor.com/re/sub09/sub09_02.html"); } } Link to comment
Web_Solutions Posted December 20, 2023 Share Posted December 20, 2023 7 hours ago, YKL said: I've been trying to change a URL for one of my navigation menu from Pc version to mobile version, based on user device. The code below is how I tried to do it. In the screen below 600 px, I specified to redirect to the link inside content: url("");, but it doesn't seem to work. @media screen and (max-width: 600px) { .Header-nav-item--external a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] { content: url("http://m.chamdoctor.com/sub04/sub04_03.html"); } } @media screen and (min-width: 601px) { .Header-nav-item--external a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] { content: url("http://www.chamdoctor.com/re/sub09/sub09_02.html"); } } Can you share your website URL? If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
YKL Posted December 20, 2023 Author Share Posted December 20, 2023 (edited) 34 minutes ago, Web_Solutions said: Can you share your website URL? Sure, Here it is. https://chamdoctor-jp.com/ As I mentioned, I want a URL of the link menu in the navigation to change to a different URL only on mobile devices. As is : Link of Navigation menu (症例写真) : http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC http://www.chamdoctor.com/re/sub09/sub09_02.html > on mobile To be : Link of Navigation menu (症例写真) : http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC http://m.chamdoctor.com/sub04/sub04_03.html > on mobile Edited December 20, 2023 by YKL Link to comment
Solution Web_Solutions Posted December 20, 2023 Solution Share Posted December 20, 2023 29 minutes ago, YKL said: Sure, Here it is. https://chamdoctor-jp.com/ As I mentioned, I want a URL of the link menu in the navigation to change to a different URL only on mobile devices. As is : Link of Navigation menu (症例写真) : http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC http://www.chamdoctor.com/re/sub09/sub09_02.html > on mobile To be : Link of Navigation menu (症例写真) : http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC http://m.chamdoctor.com/sub04/sub04_03.html > on mobile Add these code on Code Injection panel in Website > Utilities > Website Tools > Code Injection. Add the code under Footer section. See the image <script src="https://code.jquery.com/jquery-3.6.3.min.js"></script> <script> $(function(){ $('.header-menu-nav-wrapper .header-menu-nav-item [href="http://www.chamdoctor.com/re/sub09/sub09_02.html"]').attr("href","http://m.chamdoctor.com/sub04/sub04_03.html"); }); </script> tuanphan 1 If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
YKL Posted December 20, 2023 Author Share Posted December 20, 2023 Sir, you saved my day. Thank you so much! Link to comment
Web_Solutions Posted December 20, 2023 Share Posted December 20, 2023 12 minutes ago, YKL said: Sir, you saved my day. Thank you so much! Welcome If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. 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