Jump to content

Pip1

Circle Member
  • Posts

    21
  • Joined

  • Last visited

1 Follower

Personal Information

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Pip1's Achievements

  1. Oh Brilliant, this has worked, thanks so much @tuanphan
  2. Hi @tuanphan Thank you very much for your time in helping me. I removed the old code and added this code to the footer, it's not overlapping like before but it is a little close to the hamburger menu, you end up clicking that instead of the flag. Is there a way to space them less close to the hamburger icon? It looks great on Squarespace mobile view, when I test it on a mobile device I see it is too close... see the picture attached. For some reason the U.S flag stops being clickable on mobile, what would be causing that or blocking that? It works on a desktop <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function() { $('<div class="language-flag"><a title="United States Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/666064f9d54cda6204dc07e3/1717593337478/us.flag-circle.svg" class="us" /></a><a title="Korea Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/6660681781dc74086dbf603d/1717594136144/sk-flag-04.svg" class="sk" /></div>').appendTo('.header-title-nav-wrapper'); }); </script> <style> img.us { width: 30px; margin-left: -30px; } img.sk { width: 30px; margin-left: 10px; } .header-display-mobile .header-title { flex: 1 0 calc(100% - 100px) !important; } </style>
  3. For some reason my U.S flag becomes unclickable on mobile too, not sure why that's happening, maybe my positioning is too close to the hamburger icon?
  4. Hi @tuanphan sure https://manatee-flugelhorn-pmg9.squarespace.com/ pw: pip1
  5. Hi @MayaViolet, I tried that now but it doesn't seem to have changed anything, I think I might have the mobile break positioning off, it goes weird on tablet size and some mobile devices and the US. flag still isn't clickable on mobile, not sure why that's happening
  6. Hi @MayaViolet sure https://manatee-flugelhorn-pmg9.squarespace.com/ pw: pip1
  7. Hi, I'm trying to add two flag svg files to my header, both going to two websites. I adapted code that was found on this forum to do it, the flag icons look fine on desktop but when it shows on tablet and mobile it does not stay in the position beside the hamburger icon and one of the flags is no longer clickable on mobile view. Would anybody Know how to fix this, I'm sure I have the code wrong and need some help on the mobile query This is the code I've used <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> $(document).ready(function() { $('<a title="United States Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/666064f9d54cda6204dc07e3/1717593337478/us.flag-circle.svg" class="us" /></a>').appendTo('.header-title-nav-wrapper'); }); </script> <style> img.us { width: 30px; margin-left: -30px; /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/ @media screen and (max-width:768px) { img.us { position: absolute; right: 28vw; top: 15px; } } </style> <script> $(document).ready(function() { $('<a title="Korea Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/6660681781dc74086dbf603d/1717594136144/sk-flag-04.svg" class="sk" />').appendTo('.header-title-nav-wrapper'); }); </script> <style> img.sk { width: 30px; margin-left: 10px; /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/ } @media screen and (max-width:768px) { img.sk { position: absolute; right: 20vw; top: 15px; } } </style> You can see the images I've attached showing it on desktop, then tablet and mobile, I'd like them side by side on mobile and clickable. Could anybody help me with this?
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> $(document).ready(function() { $('<a title="United States Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/666064f9d54cda6204dc07e3/1717593337478/us.flag-circle.svg" class="us" /></a>').appendTo('.header-title-nav-wrapper'); }); </script> <style> img.us { width: 30px; margin-left: -30px; /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/ @media screen and (max-width:768px) { img.us { position: absolute; right: 28vw; top: 15px; } } </style> <script> $(document).ready(function() { $('<a title="Korea Website" href="https://creativepip.com/" target="_blank"><img src="https://static1.squarespace.com/static/65e86ab19a980a03f068ea6f/t/6660681781dc74086dbf603d/1717594136144/sk-flag-04.svg" class="sk" />').appendTo('.header-title-nav-wrapper'); }); </script> <style> img.sk { width: 30px; margin-left: 10px; /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/ } @media screen and (max-width:768px) { img.sk { position: absolute; right: 20vw; top: 15px; } } </style>
  9. hi @tuanphan, I've changed my flag code slightly but I'm having issues displaying them at the breakpoint on Tablet and mobile, You can see it is ok on desktop but as I size down the screen it goes all over the place. Would you know of a fix for this?
  10. Hi @Paul2009, I wanted to be able to create subscription options for a members-only area, it's based in Ireland and I want to offer one subscription in €Euro and one in £Great British Pound for Northern Ireland. Is it possible to offer a yearly subscription for the two different currencies if using Stripe as the payment processor? or can it only be one? I'm trying to think of a work around. Many Thanks
  11. It's back working this morning, it looks to have been fixed by Squarespace engineers, thanks for replying Tuanphan
  12. It was back working properly this morning, all is well, thanks for responding Creedon and Paul
  13. Is anybody having issues attaching links in list items in 7.1 today? I added a section from people, a carousel list and when I try to attach my link, by pressing the button "Attach Link" the option disappears just to show me the button text. Am I missing something, I tested it in Chrome and Safari and it's happening in both...I've refreshed, logged in and out and it still won't work. I've attached pictures, the third is when I press "Attach Link", the option just disappears, anybody having this issue? Maybe its a simple fix
  14. Is anybody having issues attaching links in list items in 7.1 today? I added a section from people, a carousel list and when I try to attach my link, by pressing the button "Attach Link" the option disappears just to show me the button text. Am I missing something, I tested it in Chrome and Safari and it's happening in both...I've refreshed, logged in and out and it still won't work.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.