-
Posts
250 -
Joined
-
Last visited
-
Days Won
4
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Posts posted by PhilHoughton
-
-
Hey @DanHikes looks like you got this sorted?
I looked and they were in 2 columns -
Hi @anna_ I just had a look and it indeed did the scroll thing for me.
I've noticed that just before it happens, three errors come up in the console related to what looks like a facebook plugin? Perhaps customer chat?
If it was me, I'd remove that facebook plugin and see if the problem dissapears. -
Same issue here. Just stopped working last week. Just shows a black background on chrome. Site using 7.0
-
-
6 hours ago, danielledickson said:
I purchased the universal plugin filter and am trying to make the design look like it does in this portion of the instructional video. I understand there are many different ways to go about implementing the plugin (blog, gallery, index pages, etc.). However, I am trying to make my website look like this, and I was wondering if anyone knows what type of implementation this is since there are no images in it.
That page is gone now from memory.
here’s something similar on the same site though
-
-
Same thing has just happened to me. Who knows how long I haven’t been receiving enquiry 😰.
-
On 7/29/2022 at 4:35 AM, Ten17 said:
@houghtoncreative I sent an email directly to your company email listed on your website to ask you you were able to exploit the Squarewebsite Universal filter to present multiple collections onto one page
PLEASE DISREGARD this message.
I found the JSON additional plugin from Squarewebsites that allows multiple collections to be presented on a single page
Glad you found what you needed. I never got your email FYI 😞
-
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.
-
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%; }
-
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>
-
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.
- EarvinChong and redesign
- 2
-
-
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>
-
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>
- colin.irwin, studiofounded, concretenz and 2 others
- 4
- 1
-
-
On 11/25/2021 at 5:16 AM, KwameAndCo said:
Clever... But a bi of a nightmare if you have quite a lot and need to track them all!
Especially if they're not all via the Custom CSS menu
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.
-
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.
Website scrolls to bottom of page suddenly
in Customize with code
Posted
Awesome. Glad it is resolved. What a strange problem to have haha.