-
Posts
23 -
Joined
-
Last visited
Personal Information
- Website
-
Location
Ireland
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Pip1's Achievements
-
creedon reacted to a post in a topic: New setup, and website leads to phishing website
-
Pip1 reacted to a post in a topic: New setup, and website leads to phishing website
-
Hi @creedon and@paul2009, I'm getting the same notification on the inbuilt Squarespace domain (SS backend address)on one of my websites, the live website domain is unaffected and doesn't have a dangerous label and when I test that in Google Search Console and safe browsing it's fine. Is there a way to fix this dangerous error on the inbuilt domain? Would changing that domain resolve the problem? Thanks in advance for any help Pip
-
Pip1 reacted to a post in a topic: Adding Flag icon svgs to the header and making them responsive
-
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
Oh Brilliant, this has worked, thanks so much @tuanphan -
Pip1 reacted to a post in a topic: How to add a country flag to header along with a hamburger menu
-
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
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> -
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
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? -
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
Hi @tuanphan sure https://manatee-flugelhorn-pmg9.squarespace.com/ pw: pip1 -
Adding Flag icon svgs to the header and making them responsive
Pip1 replied to Pip1's topic in Code Blocks
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 -
Adding Flag icon svgs to the header and making them responsive
Pip1 replied to Pip1's topic in Code Blocks
Hi @MayaViolet sure https://manatee-flugelhorn-pmg9.squarespace.com/ pw: pip1 -
Pip1 started following Adding Flag icon svgs to the header and making them responsive
-
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?
-
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
<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> -
How to add a country flag to header along with a hamburger menu
Pip1 replied to milkcowsgomoo's topic in Code Blocks
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? -
Thanks @paul2009
- 4 replies
-
- scheduling
- billing-plan
-
(and 2 more)
Tagged with:
-
Pip1 reacted to a post in a topic: Change from dollars to pounds
-
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
- 4 replies
-
- scheduling
- billing-plan
-
(and 2 more)
Tagged with:
-
creedon reacted to a post in a topic: Adding Links to List Section Images
-
paul2009 reacted to a post in a topic: Adding Links to List Section Images
-
It's back working this morning, it looks to have been fixed by Squarespace engineers, thanks for replying Tuanphan
- 2 replies
-
- link
- list-summary
-
(and 1 more)
Tagged with:
-
Pip1 reacted to a post in a topic: Links won't attach in List item carousel
-
It was back working properly this morning, all is well, thanks for responding Creedon and Paul