-
Posts
246 -
Joined
-
Last visited
-
Days Won
4
PhilHoughton last won the day on March 11 2020
PhilHoughton had the most liked content!
Personal Information
- Website
-
Location
Nelson, New Zealand
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
PhilHoughton's Achievements
-
jenlew reacted to a post in a topic: INSTAGRAM keeps disconnecting from SQUARESPACE
-
Widle started following PhilHoughton
-
Same issue here. Just stopped working last week. Just shows a black background on chrome. Site using 7.0 https://www.tobyrandall.co.nz
-
INSTAGRAM keeps disconnecting from SQUARESPACE
PhilHoughton replied to Domenic's topic in Pages & Content
Same issue here. Wasn't updating. Deleted and readded and now no images at all. Thankfully there's only 2.35 billion users on Instagram so it won't concern my client too much. 😉 -
PhilHoughton reacted to a post in a topic: how to get the universal plugin filter to look the way it does in the instructional video
-
Form Submission emails not being received
PhilHoughton replied to joshcohen's topic in Customize with code
Same thing has just happened to me. Who knows how long I haven’t been receiving enquiry 😰. -
Getting around shop all 200 max products limitation
PhilHoughton replied to Marieonsquarespace's topic in Commerce
Glad you found what you needed. I never got your email FYI 😞 -
Custom gallery (porfolio page) layout in 7.1.
PhilHoughton replied to Lisakunchy's topic in Customize with code
Just did a quick test and managed to make every 3rd image full width with this code .gallery-grid-item { .gallery-grid-item-wrapper { padding-bottom:90%!important; } &:nth-child(3n) { grid-column: span 2; .gallery-grid-item-wrapper { padding-bottom:45%!important; } } } Adjust the padding bottom to control image ratios.- 4 replies
-
- custom-css
- custom-template
-
(and 2 more)
Tagged with:
-
hi @Leah_Chandler Do you mean something like this? This code will work on your live site. I'd need the link to your testing site to create code for that. #block-yui_3_17_2_13_1457552603071_12467 { background: rgba(255, 255, 255, 0.6); max-width: 80%; }
-
Single Page hamburger menu - Forced to one page only
PhilHoughton replied to tillie's topic in Customize with code
Hi @tillie it works fine without wrapping it in the collection ID. so just put this in the header injection on the specific page you want to change. <style> /*Turn mobile menu on all sizes*/ /* 768 for tablet - desktop - 992 for desktop */ @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } } </style>- 2 replies
-
- navigation
- custom-css
-
(and 1 more)
Tagged with:
-
Getting around shop all 200 max products limitation
PhilHoughton replied to Marieonsquarespace's topic in Commerce
You can use the Universal Filter plugin https://www.squarewebsites.org/squarespace-plugins/universal-filter to pull products from multiple collections onto one page. I've done it for a site which had hit the 200 limit. -
Changing color background to one page only
PhilHoughton replied to Alessia_OL's topic in Customize with code
- 3 replies
-
- css
- background
-
(and 1 more)
Tagged with:
-
Changing color background to one page only
PhilHoughton replied to Alessia_OL's topic in Customize with code
Hey @Alessia_OL I'm not 100% clear exactly what page you are wanting to change the colour on, so here's some code you can use on any page. Insert the code below into the page header code injection on any page that you want to be changed. <style>body { background: #e98cb6; } </style>- 3 replies
-
- css
- background
-
(and 1 more)
Tagged with:
-
Cheers @colin.irwin Here's it working on 7.1 <script>$(document).ready(function(){ var thisPath = window.location.pathname; var thisPage; var breadcrumbLink; thisPage = $('.blog-item-title').text(); $('.blog-item-top-wrapper').prepend('<div id="breadcrumbNewsArticle"><div><a href="/">Home</a> » <a href="/news-and-insights">News</a> » <span class="truncate">'+thisPage+'</span></div></div>'); }); </script>
-
.sqs-block-button:before { display:none!important; } This worked for me
- 10 replies
-
- transition
- hover
-
(and 1 more)
Tagged with:
-
SVG links not working on live site
PhilHoughton replied to dearnaomichan's topic in Customize with code
Yeah that could be harder. Do you use some sort of code editor like Atom? I put all my links in there, and then used a find and replace to automatically fix all the links. Rather than doing them one by one. I'll do the reverse once the site is live.