-
Content Count
551 -
Joined
-
Last visited
-
Days Won
4
Everything posted by christyprice
-
It is currently pulling your site title from Design > Logo & Title. If you want to leave that as your site title, but change the SEO title, just type over where it says %s in SEO Title Format in your list image there - that changes it for the entire site. If you'd like to change it for a particular page, go to any page's Settings SEO and type in an SEO title there for the page.
-
Hi @JRyan, you'll need to set a password in Settings > Site Visibility and share that so someone can take a look and help.
- 8 replies
-
- foster-template
- dropdown
-
(and 2 more)
Tagged with:
-
Mobile Spacing Issues - Bedford
christyprice replied to jigglypuff1224's question in Coding and Customization
First of all, great site! Did you add some custom code to your prefooter? I'm seeing some that has an error just before the newsletter block. Here's what I see in the code: <div class="newsletter-form-wrapper newsletter-form-wrapper--layoutFloat newsletter-form-wrapper--alignCenter " > -
Changing size of one banner heading for mobile only
christyprice replied to GenuineContent's question in Coding and Customization
You'd want to target that specific block for mobile only in Design > Custom CSS. Try this and play around with the font size. @media screen and (max-width: 640px) { #block-b804c57f124fbfbe2d7f { font-size: 20px !important; } }- 26 replies
-
- brine-template
- mobile
-
(and 3 more)
Tagged with:
-
You would either need extensive coding or a third party plugin. This isn't quite what you're looking for, it's more of a directory plugin, but it will give you an idea of plugins you could add: https://www.communitybox.co/
-
No, there is no trigger or opt-in email if you add the info manually. I’ve separated out email lists by exporting to cvs, duplicating the file, editing the rows, then importing back into different lists.
-
You could either just use a text block (or code block if you want a dropdown menu) on each page, or use an awesome sidebar plugin like this one (aff).
-
Looking for template with specific navigation
christyprice replied to adrian.m's topic in Site Design and Styles
I think Bedford (7.0) is the only template that allows for a top navigation and then a sidebar nav for subpages. -
Hi @jennik1, could you share the link to your site? You can fix this with some Custom CSS, but it depends on how your image block is configured. If you can share the site so we can check out the code, someone can help you out.
-
Support for Google My Business Links in Social Links
christyprice replied to teamsilverlake's topic in SEO and Marketing
@teamsilverlake, I agree! I had to do a workaround using FontAwesome to achieve this recently. Would love if it was added to the social links.- 4 replies
-
- social-sharing
- social-links
-
(and 2 more)
Tagged with:
-
Hi @shickey00, the exact code depends on which template you're using, but if it's a Brine template, you can follow the steps in this post to add this code: /* make last nav item orange */ .Header-nav--primary .Header-nav-item:last-child{ color:#ec8349 !important; } .Mobile-overlay-nav-item:last-child{ color: #ec8349 !important; }
-
Changing Colour of Logo on Homepage
christyprice replied to Meezus's question in Coding and Customization
You can do this by adding code to the page code injection. For Brine family templates like Sonora, you'd use <style> .Header-branding-logo { -webkit-filter: invert(100%); filter: invert(100%); filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1'); } </style> You can follow exact steps in this post. It also covers Bedford family templates and inverting the navigation color as well. -
Want to add custom phone icon in footer
christyprice replied to Hasson's question in Coding and Customization
To do that, you'll need to recreate the entire line of social media icons as a code block using FontAwesome. You'll include the Font Awesome code in your site code injection as detailed in this post, then in a code block add the code for the icons and links, something like this: <div><a href="mailto:youremailaddress" target="_blank"> <span class="fa fa-envelope"></span></a> <a href="https://yourlink.com" target="_blank"> <span class="fa fa-globe"></span></a> </div> -
Guidance for Blogging in 7.1
christyprice replied to KariLivs's topic in Getting Started With Squarespace
Hi @KariLivs, I agree about blogging in 7.1... I'm hoping it continues to improve. For now, for all my clients with blogs I'm building in 7.0. But, to answer your slider question, this plugin from SQSP Themes (aff) works great in 7.1! Hope it is helpful for you. -
Change Header Navigation font (Bedford)
christyprice replied to RevDun's question in Coding and Customization
Yes, it's a slightly different code for those. Try this: #mainNavigation .folder-toggle { font-family: 'AspiraWide' !important; }- 4 replies
-
- navigation
- font
-
(and 1 more)
Tagged with:
-
@miller.nw, I agree with what @sarah says. Squarespace Campaigns is great (I use it myself), but there are some use cases where it's not ideal. For example, you can only automate up to 60 days from their join date. So you'd have to complete your sequence within 2 months.
- 4 replies
-
- email-campaigns
-
(and 1 more)
Tagged with:
-
adding one unique social account link per page
christyprice replied to thomasv's topic in SEO and Marketing
Yes! I've done this ( the same social icon but with different links) even within one page using FontAwesome. You can see it in action here. It requires a bit of finesse. You'll need to use code blocks and Font Awesome. I have a post on adding Social Icons to the nav bar using the same method, so you could follow these steps and just use a code block rather than putting things in the nav. Step 1. Copy and paste the stylesheet code from Font Awesome in your Code Injection Step 2. Add a code block with the icon and link you want. Here's an example: <a href="https://www.yourlinkh- 4 replies
-
- social-links
- social-media
-
(and 1 more)
Tagged with:
-
I second what @BigJosh says. Also, make sure you've connected your Squarespace site in Mailchimp and added that code to Squarespace. You can find the exact steps here.
-
Hi @jennycohodes1616, The answer depends on which template type you are moving to. The short answer is that you'll keep most of your content... you may lose the footer info and any content that is on template-specific page types. Squarespace has a good guide to switching templates.
-
Hyphens drive me crazy! I always add this code to any Squarespace site I create: /* remove hyphens */ p, h1, h2, h3 { -webkit-hyphens: manual !important; -moz-hyphens: manual !important; -ms-hyphens: manual !important; hyphens: manual !important; } You can find exact steps and another couple of snippets I use often in my blog post on Custom CSS Every Squarespace Website Needs.
-
Removing Like button and Pagination
christyprice replied to haashe's question in Coding and Customization
You can add this to the Blog Settings > Page Header Code Injection in your blog page settings. It removes some other things, too, as you can see from each line, so just delete the lines you don't need between the style tags. <style> .sqs-share-buttons {display: none;} .squarespace-comments {display: none;} .BlogItem-pagination-link-content {display: none;} .BlogList-pagination-link-label {color: #ffffff;} .BlogItem-pagination-link--prev, .BlogItem-pagination-link--next {display: none;} </style>- 1 reply
-
- button
- brine-template
-
(and 2 more)
Tagged with:
-
Try adding this to your Custom CSS to increase the top padding of the blog list page. You may need to target it just for desktop depending on your code and settings, but this should get you started: .Main--blog-list { padding-top: 100px !important; }
-
Brine - change color behind nav in lower center position
christyprice replied to cherylr's question in Coding and Customization
Something like this should work: .Header--bottom { background: #FFA500 !important; padding-bottom: 20px !important; } You can adjust the background hex color and play around with the padding.- 2 replies
-
- navigation
- brine-template
-
(and 2 more)
Tagged with:
-
I've done this by using FontAwesome for the icons and creating code blocks. This post explains how to add them to the nav bar, but the same general method would work in any code block: https://christyprice.com/squarespace-tips-tricks/how-to-add-social-media-icons-to-squarespace-navigation You can see it in action (not in the nav bar) here: https://www.orinrice.com/about