iamme123
Member-
Content Count
129 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
KariLivs reacted to an answer to a question: Removing underline on link using new 7.1 version and template Cath Quincy
-
chiarawilden reacted to an answer to a question: Removing underline on link using new 7.1 version and template Cath Quincy
-
iamme123 joined the community
-
Hide the close "x" button from a promotional pop up
iamme123 replied to iamme123's question in Coding and Customization
Here's what worked for me in the CSS Editor: .sqs-popup-overlay-close {display: none !important} -
Hide the close "x" button from a promotional pop up
iamme123 posted a question in Coding and Customization
I don't want visitors to be able to close my pop up until they click the button to confirm - is there an option for this? -
Wexley: Mobile Navigation Font Color
iamme123 replied to iamme123's question in Coding and Customization
Here's what I used that works for tablet and mobile: @media only screen and (max-width: 1000px){ .folder-toggle-label, .subnav a, .page-collection a {color:white !important;} } Pasted that into the CSS Editor. You can reduce the "max-width: 1000px" to "640px" instead if you want it to affect mobile but not tablet.- 1 reply
-
- wexley-template
- css
-
(and 3 more)
Tagged with:
-
Just looking to change the font color for mobile devices only when using the Wexley template.
- 1 reply
-
- wexley-template
- css
-
(and 3 more)
Tagged with:
-
Paste this into the CSS Editor: .excerpt-content {text-align:center}
- 1 reply
-
- blog-page
- pacific-template
-
(and 3 more)
Tagged with:
-
Wanting to center the excerpt text and read more link for blog posts on the Pacific template.
- 1 reply
-
- blog-page
- pacific-template
-
(and 3 more)
Tagged with:
-
Brine: Folder navigation hover color
iamme123 replied to iamme123's question in Coding and Customization
Looks like this works actually: .Header-nav-folder-item:hover { color: red !important; } Paste it into the CSS Editor to try it out, and replace "red" with any color or color code you want. -
When my navigation is over a banner in Brine the folder nav links show the same color as my folder background color on hover. I don't want to change the active nav link color, just the hover color for links in a folder.
-
Change background color for specific page - Brine
iamme123 replied to haganwalker's question in Coding and Customization
There's a Chrome browser extension that will find the page's collection ID for you as well to make that easier: https://chrome.google.com/webstore/detail/squarespace-collectionblo/bggpdfnccodbnmcndckmeehdjkjojkde- 10 replies
-
- background
- css
-
(and 1 more)
Tagged with:
-
How do I put my logo onto the order confirmation email
iamme123 replied to SusanB1570047746's topic in Commerce
Here's what I'd recommend: First upload the logo image to the CSS Editor with the Manage Custom Files button Then go into the Notifications panel to edit the order email footer and add this code: Just add the URL between the quotation marks "" after src= with your logo image URL. This will also ensure that the logo image doesn't span the full width of the order email and has a line break between the image and any other text you have in the footer. -
Trying to hide an image when displayed on a mobile
iamme123 replied to Hamseen's question in Coding and Customization
You can also use this block identifier in Chrome to get block IDs easily: https://chrome.google.com/webstore/detail/squarespace-collectionblo/bggpdfnccodbnmcndckmeehdjkjojkde -
How to embed a Google Calendar in a responsive way?
iamme123 replied to Caue's question in Coding and Customization
@bcassin If the small container's iFrame code has "&mode=AGENDA" in it that would be the cause. Remove just those characters from the iFrame code and it should change it to a monthly view.- 28 replies
-
How to embed a Google Calendar in a responsive way?
iamme123 replied to Caue's question in Coding and Customization
I just tested out the Events page I linked as an example for this on an iPhone 6s and it looks like it's loading for me without issue. I'm not sure if your device needs troubleshooting if you're not able to see the page, but you might check to see that everything's up to date and try restarting the phone. I tested out the code you provided on a test page and used the CSS in the- 28 replies
-
How to embed a Google Calendar in a responsive way?
iamme123 replied to Caue's question in Coding and Customization
Hey Ben, sorry I didn't see this until now! Not sure why I didn't get a notification. As long as the iFrame's are both wrapped in this code it should allow you to hide and show one or the other on different screen sizes: <div class="responsive-iframe-container small-container"> *iFrame code for mobile goes here* </div> Both the "monthly" and "agenda" iFrames can be pasted into a single Code Block on the page, each one wrapped in the div code for the small container (mobile agenda view) and big container (desktop and iPad monthly view). The "@media" CSS pasted into the Page- 28 replies