-
Posts
185 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by DPruitt
-
Custom font not showing in the announcement bar
DPruitt replied to MiguelFIDE's topic in Fonts, colors and images
Have you tried injecting the CSS into the Header Injection instead of custom css? -
Hey Mike! Try this: #collection-id #sections .page-section:nth-child(1):after {content:''; width: 100%; display:block; position: absolute; bottom:0px; height: 70px; background: #1c1c1c; background: linear-gradient(0deg, #1c1c1c 28%, rgba(28, 28, 28, 0) 100%); } You can always toggle the height if it needs to be larger... You'll also need to toggle the #collection-id to get the code to work specifically on your homepage so that other pages are not affected... If you want it on all pages, simply remove #collection-id.
-
Here are a few soft solutions, but not sure if they are ideal for what you're trying to accomplish: Option 1: .sqs-block-accordion .accordion-item__dropdown--open { transition-property: visibility, opacity !important; transition-timing-function: linear !important; transition-duration: .5s, 2s !important; transition-delay: 2s, .5s !important; } Option 2: .accordion-item__dropdown--open { transition: all ease-in-out 3s !important; } You might have to adjust the height of the accordion and a few other things to get the effect just right...
-
I think your quickest approach will be to assign a bold link per collection. Try inserting this into CUSTOM CSS: /*Homepage*/ #collection-649d74abb21c116f17a9fc23 #block-yui_3_17_2_1_1688402606420_25603 a:first-child{font-weight: 900 !important;} /*About*/ #collection-64a2a952762de64617a90212 #block-yui_3_17_2_1_1688402606420_25603 a:nth-child(2){font-weight: 900 !important;} /*Services*/ #collection-64a2a95e48f12318878a5706 #block-yui_3_17_2_1_1688402606420_25603 a:nth-child(3){font-weight: 900 !important;} /*Contact*/ #collection-64a2a967b299003f9fbecef8 #block-yui_3_17_2_1_1688402606420_25603 a:last-child{font-weight: 900 !important;}
-
Keep cart icon from disappearing in bottom right corner?
DPruitt replied to dross's topic in Customize with code
I think the quickest fix on this will be to display the cart on the shop page and product pages at all times... Try inserting this into the Shop Page Header Code Injection: <style> .floating-cart {display:flex !important;} </style> -
Try this instead: .item-pagination-link:hover .item-pagination-prev-next, .item-pagination-link:hover .item-pagination-icon svg { color: #42c6ff !important; stroke: #42c6ff !important; }
-
Need Help To Place Mobile Buttons Side-By-Side
DPruitt replied to nataniellam's topic in Customize with code
I updated the code just now, but basically, you can alter the "width" and/or the left & right padding.... You might need to shrink the text size too... -
Gallery Block Glitch on my Home Page
DPruitt replied to ryanmariehelfant's topic in Customize with code
I just reviewed the Markup to the site and could see how hitting back on the browser could cause certain elements to display; it's all written into the same index. I think your best bet is just to give your projects a background so that it covers anything displaying behind it. Try inserting this into DESIGN - CUSTOM CSS: .project {background-color:#000000 !important;}- 15 replies
-
- gallery-block
- homepage
-
(and 2 more)
Tagged with:
-
Gallery Block Glitch on my Home Page
DPruitt replied to ryanmariehelfant's topic in Customize with code
Made you a quick video on chrome PC. It seems to be doing the same thing on my device as it did a few days ago; definitely agree there's something fishy going on: https://www.loom.com/share/8774a48befc44b93878ffeb6970b093e?sid=a3f8cd90-15e6-4e00-a1ab-a72c12d2a9a7- 15 replies
-
- gallery-block
- homepage
-
(and 2 more)
Tagged with:
-
I would switch to a "classic editor sections" when using accordion blocks and summary blocks. Honestly, the spacing can get so bad sometimes, I use Classic editor sections more than fluid engine...
-
Gallery Block Glitch on my Home Page
DPruitt replied to ryanmariehelfant's topic in Customize with code
I can't recreate this error on my end... The images do stall loading for a second until I scroll sometimes. What you might do at the top of each page is add a text link that goes to the main index (homepage).- 15 replies
-
- gallery-block
- homepage
-
(and 2 more)
Tagged with:
-
You can, but you'll need Custom code to accomplish it...
- 3 replies
-
- navigation
- background
-
(and 3 more)
Tagged with:
-
Here you go, enter this into CUSTOM CSS: .sqs-cart-quantity { color: #000000 !important; }
-
Trying to insert text underneath the logo using pseudo element
DPruitt replied to abc's topic in Customize with code
Here you go: .header-title-logo a:after { content: 'Subtitle Text'; font-size: 18px; color: #000000; text-align: center; display: block; }- 2 replies
-
- squarespace-7.1
- logo
-
(and 1 more)
Tagged with:
-
Force gallery grid layout on mobile to 4 items per row
DPruitt replied to Boudy's topic in Customize with code
Looks great! -
Try this fix: .gallery-fullscreen-slideshow-item-img{ transition: opacity 1600ms ease-in-out !important; -webkit-transition: opacity 1600ms ease-in-out !important; -ms-transition: opacity 1600ms ease-in-out !important; -moz-transition: opacity 1600ms ease-in-out !important; -o-transition: opacity 1600ms ease-in-out !important; } .gallery-fullscreen-slideshow[data-transition="fade"] .gallery-fullscreen-slideshow-item[data-active="true"] .gallery-fullscreen-slideshow-item-src{ transition: opacity 1400ms ease-in-out !important; -webkit-transition: opacity 1400ms ease-in-out !important; -ms-transition: opacity 1400ms ease-in-out !important; -moz-transition: opacity 1400ms ease-in-out !important; -o-transition: opacity 1400ms ease-in-out !important; }
-
Need Help To Place Mobile Buttons Side-By-Side
DPruitt replied to nataniellam's topic in Customize with code
Try inserting this into custom CSS: @media screen and (max-width: 640px) { .col.sqs-col-4.span-4 { width: 33.33%!important; display: inline-block; } .small-button-style-outline .sqs-block-button .sqs-block-button-element--small { width: 95px; padding-left: 2px; padding-right: 2px; font-size: 9px; color: #000; } } -
This inserting this into the page header injection area of the shop page instead: <style> .header-title-logo img {filter: brightness(0) invert(0);} </style> If you want to invert the logo on the Cart Page you will add this to the Custom CSS Panel: #cart .header-title-logo img {filter: brightness(0) invert(0);} For the checkout page where users insert their CC# information, you'll have to render the original logo or use text as your logo as we can't use any coding for the secure checkout page.
- 1 reply
-
- store
- product-page
-
(and 1 more)
Tagged with:
-
Force gallery grid layout on mobile to 4 items per row
DPruitt replied to Boudy's topic in Customize with code
This might work; you might adjust the width of the code so that it looks good and fills the container without overflowing to another line: @media screen and (max-width: 767px) .sqs-layout .sqs-gallery-design-grid-slide { width: 25% !important; clear: none !important; } -
Insert this into the CSS Panel: /*CSS Written Text* .statictext{ color: white; font-size: 55px; padding: 15px; font-family: sans-serif; } .writtentext{ color: white; border-right: 2px solid red; font-size: 55px; font-family: sans-serif; color: rgb(255, 30, 0); } /*END CSS Written Text* Insert this into the Page Injection area of the Header: /*Insert Into header - Written Text*/ <script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js" integrity="sha512-BdHyGtczsUoFcEma+MfXc71KJLv/cd+sUsUaYYf2mXpfG/PtBjNXsPo78+rxWjscxUYN2Qr2+DbeGGiJx81ifg==" crossorigin="anonymous"></script> Insert this into a codeblock on the page where you would like the text to appear. It's recommended that you use a Classic Editor Section instead of Fluid Engine: <div class="statictext">I'm</div> <div class="writtentext"></div> <script> var typing=new Typed(".writtentext", { strings: ["", "Youtuber", "Freelancer", "Graphics Designer", "Web Designer", "Web Developer"], typeSpeed: 100, backSpeed: 40, loop: true, }); </script>
-
Do you have the link so that we can view it?
-
FYI, you can still add the fonts here: https://herring-apricots-mnd6.squarespace.com/config/editor
-
This issue has been reported to SS for the New UI "Website Tools".