Fossil Free PERA Colorado
 

Owner's Manual

Your Squarespace Account - Currently you are on the Business Plan, which gets you access too important features like unlimited pages and authors; pop-ups and custom code, but if you ever decide to start accepting donations through the site you should consider upgrading to the Commerce Basic plan so that Squarespace does not take a cut of the transactions.  Here are the instructions for how to change your billing plan.

Your Domain Name - Your domain name — fossilfreecopera.org — is now registered and managed through Squarespace, enabling you to control your renewals and registration fees through the same admin panel as your site. Here is a helpful overview of terminology and actions you might need to take regarding your domain. Unless you want to change contact information or add email addresses (such as info@fossilfreecopera.org) your domain is set to auto-renew and should not require any attention from you.

*If you want to add email please let me know so that I can set up G Suite-powered email for you properly (it’s best not to link your billing through Squarespace).

Authorized Users - Authorized users currently includes Deb McNamara & Emily KenCairn. You are allowed unlimited contributor logins, as well as additional admin-level users. Here are some instructions for understanding different types of permissions, inviting a new contributor, or removing a contributor from your site.

https://support.squarespace.com/hc/en-us/articles/206537297-Squarespace-permissions-explained

https://support.squarespace.com/hc/en-us/articles/206537287-Inviting-a-contributor

https://support.squarespace.com/hc/en-us/articles/206537217-Removing-another-contributor-from-your-site

Backups

I have downloaded images of your site’s design at the time our project was completed, in case you ever make changes and want to see how it was laid out originally. In addition, I have backed up all of your logo and image files on our shared folder on my Google Drive, which you have permission to copy, download and save on your own drive as well. Here is a link to our shared project folder on my Google Drive: https://drive.google.com/open?id=1qT1SvSFNYAnTV-I0Ia1tM98zztZoYOoi.

It is your responsibility to copy and save the written content on your site as you make changes to it over time. The copies that I have of the text that we worked on together are likely already outdated. To understand how Squarespace backs up and keeps redundant copies of your site so that it never goes “down,” you can read their article on backups.

For General Troubleshooting/Technical Issues + Support from Squarespace, start here with this help article.


HOW-TO REFERENCES


Squarespace also offers helpful video and written tutorials, as well as 24/7 email support, and M-F Live Chat. Here are some helpful links from Squarespace on editing the site:

Visual Style Guide

Here is how various text styles show up on your website under the current settings.


 

Heading 1 (Roboto)

Heading 2 (Roboto)

Heading 3 (Roboto)

Body (Normal) (Minion Pro Display)

Body Link Style

Body Quote Style (Minion Pro Display)

This is a Quote Block Style &
— Source
 

Heading 1

Single Column - Turnip greens yarrow ricebean rutabaga endive cauliflower sea lettuce kohlrabi amaranth water spinach avocado daikon napa cabbage asparagus winter purslane kale. Celery potato scallion desert raisin horseradish spinach carrot soko. Lotus root water spinach fennel kombu maize bamboo shoot green bean swiss chard seakale pumpkin onion chickpea gram corn pea. Brussels sprout coriander water chestnut gourd swiss chard wakame kohlrabi beetroot carrot watercress. Corn amaranth salsify bunya nuts nori azuki bean chickweed potato bell pepper artichoke.


Heading 2

2 Column - Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko.

Heading 2

2 Column - Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko.


Heading 3

3 Column - Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean

Heading 3

3 Column -Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean

Heading 3

3 Column -Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean


Call to Action Button Styles


Form Style

 
 

Inline Image Style

 
Optional caption goes here.

Optional caption goes here.

 
 

Other Images Card Styles - as required.

 

This is a poster style

With more text here

 

 

Code & Tech Stuff

 

Custom Code

 

Hide Page - This code asks the "bots" not to index certain pages of your site, which you prefer not show up in search engines (like this page, which is also password protected):

<meta name="robots" content="no index”>

 

Hide Top Navigation on a Page - This code hides the navigation/header on a single page.

<style>
.Header, .Header--top {
display: none !important;
}
.Header-inner, .Header-inner--bottom; {
display: none !important;
}
.Header-inner, .Header-inner--bottom {
display: none !important;
}
    .sqs-announcement-bar-content {
display: none !important;
}
</style>

 

Change Background Color on a single page - This code changes the background color of a single page within a scrolling index page:

.collection-type-index #dr-estes-trainings

{background:#c1ab91}

 

Footer Bottom Block Text Size - This code shrinks the size of the attribution to Apiary Studio in your footer below the normal font size:

#block-yui_3_17_2_1_1529112768417_4596 {

    font-size: 0.7em;

    line-height: 1.5;

    font-family: acumin-pro-semi-condensed;

    font-weight: 400;

}

 

Disabled Hyphenation - This code disables the hyphenation feature on mobile and is currently being used on your site:

/* disable hyphenation */

p, h1, h2, h3 {

   -webkit-hyphens: manual !important;

      -moz-hyphens: manual !important;

       -ms-hyphens: manual !important;

           hyphens: manual !important;

 }