-
Posts
246 -
Joined
-
Last visited
-
Days Won
4
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by 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. 😉 -
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. -
SVG links not working on live site
PhilHoughton replied to dearnaomichan's topic in Customize with code
@KwameAndCo Ok I have a working solution to this problem, depending on your situation and skill level. I created a seperate trial site using 7.0 and developer mode. Uploaded the SVG assets to the assets folder. Then went back to my 7.1 site and replaced all the svg links in my css with the new urls from the developer site. You also have to put ?password=?YOURPASSWORD on the end of the link files for them to work since the 7.0 site is also in trial mode. The workaround is pretty quick to implement and worth it for me, because otherwise I can't show the client any progress on the site because all the SVG's would be missing.