-
Content Count
531 -
Joined
-
Last visited
-
Days Won
6
e2astudio last won the day on January 2 2020
e2astudio had the most liked content!
About e2astudio
-
Rank
Authorized Trainer
Personal Information
- Website
-
Location
Kansas City, MO
Recent Profile Visitors
-
How to change shopping cart QTY boxes to white
e2astudio replied to sjd444's question in Coding and Customization
But if I wanted to buy two 10 packs for a total of twenty cards, I'd change the quantity to 2. I mean, if I want 24 beers I buy two 12 packs, right? Makes sense to me as is... -
e2astudio changed their profile photo
-
e2astudio started following RobertaMeo
-
Yes. It's a different way to build pages and I find it refreshing and quite powerful. Maybe you should take a breath and just try it out by building a trial?
-
Looks like the previous designer hooked those styles to a strong tag within the paragraph in the title (which is smart). So, you should be able to simply access that image title in the gallery and bold the text.
-
Projects suddenly missing from portfolio page
e2astudio replied to AndrewMarston's topic in Pages and Content
Clear your cache and refresh perhaps? -
Squarespace Social Links are NOT Accessible
e2astudio replied to Caroline_D's topic in Pages and Content
To date, Squarespace websites are not WCAG compliant. -
Nope. You could create a Squarespace page, and use a Code Block and paste your code I guess.
-
Showing a Title on an Image Block 7.1
e2astudio replied to SVHC's question in Coding and Customization
Assuming the FOOD image (and text) links to a FOOD page, you could also use a Portfolio instead. https://support.squarespace.com/hc/en-us/articles/235053528-Full-bleed-images#toc-portfolio-and-index-page-images -
Change logo img just on homepage
e2astudio replied to AndrewMarston's question in Coding and Customization
The reason for this is that Page Header Code Injection is injected into the HEAD of the document, rather than the BODY. So, when you use custom CSS in this way, it must be contained in a style tag so when it's injected into the HEAD, it has the proper format. -
Image Hover not working on Mobile
e2astudio replied to ConnorSW's question in Coding and Customization
Where are you placing this code? Why is it an entire HTML document? -
Possible to add a tagline under site title in 7.1?
e2astudio replied to ali.duffell's question in Coding and Customization
I'd probably use a graphic. -
Possible to add a tagline under site title in 7.1?
e2astudio replied to ali.duffell's question in Coding and Customization
This should do the trick: .header-title-text a::after { content: 'Tagline'; display: block; font-size: 14px; line-height: 1em; } -
Cover page logo isn't linked at all (mojave; brine)
e2astudio replied to Alan-Squareflair's question in Coding and Customization
Footer injection won't render on a Cover Page. You'd need to use Page Injection on the Cover Page itself. And yeah, JS is the only way I can think of... Otherwise, I generally just link a button instead. -
Cover page logo isn't linked at all (mojave; brine)
e2astudio replied to Alan-Squareflair's question in Coding and Customization
Cover Page logos don't link – they never have. Also, Cover Pages are template agnostic. -
Adding Caption on Hover in Ishimoto Template
e2astudio replied to Samantha3379's question in Coding and Customization
To change the font size and weight, use the following: .collection-type-gallery #slideshow .image-description { font-size: 16px; font-weight: 700; }