Credentials:
site pwd: “coach”
Godaddy
Squarespace:
julia.mm.jackson@gmail.com
juliajackson@effectivelawyering.com
Calendly
Need a little help?
Need a little more help? You have two weeks of included support to fix any issues or provide any further instructions as needed.
After that, you’re welcome to book me at my hourly rate for smaller updates or quick questions. For anything more involved, like adding a new page or making larger changes, I’ll put together a new project scope and fee. Just email me directly at erica.dion@gmail.com to get started.
NOTE: Always check site on mobile after edits too! Fluid engine causes things to shift.
Adding Images
Resize images to 1200px wide, banners to 2400 pixels wide
Run through https://tinypng.com/
THEN add to site
Set ALT TEXT for accessibility
Adding Blog Posts
Editing Your Squarespace Site
Adjusting for Mobile
Site Styles
Headings: Alice
Paragraph: Manrope
Colors:
Soft White: #F6F6F6
Gray: #E2E2DF
Light Blue: #1D86BF
Dark Blue: #26253B
Black: #000000
Post Launch SEO Best Practices
These are steps you can take to improve your SEO after site launch
Add your website URL to each of your social media profiles
Keep your site active
Update your blog regularly
Get backlinks for your website:
guest post on other blogs
answer questions in online forums and facebook groups by providing a link back to your relevant site page
Get listed on your local Chamber of Commerce website and other directories
Squarespace Resources
Squarespace Contact
*Their chat feature is pretty good and the fastest way to get in touch with someone
Squarespace Tutorial: Getting Started with Squarespace
*This is a good overview of the Squarespace basics and takes you through how to use all of the main features of the platform.
Custom CSS
.list-item {
border-radius: 30px;
}
//Line Heights - Desktop
h1 {
line-height: 1.1;
}
h2 {
line-height: 1.2;
}
h3 {
line-height: 1.3;
}
h4 {
line-height: 1.35;
}
//Line Heights - Mobile
@media screen and (max-width: 640px) {
h1 {
line-height: 1.2;
}
h2 {
line-height: 1.3;
}
h3 {
line-height: 1.4;
}
h4 {
line-height: 1.45;
}
}
/* === BLOG PAGE HEADERS – DESKTOP === */
.blog-item h1,
.blog-item h2,
.blog-item h3,
.blog-item h4 {
line-height: 1.2;
}
.blog-item h1 {
line-height: 1.2 !important;
}
.blog-item h2 {
line-height: 1.3 !important;
}
.blog-item h3 {
line-height: 1.4 !important;
}
.blog-item h4 {
line-height: 1.45 !important;
}
/* === BLOG PAGE HEADERS – MOBILE === */
@media screen and (max-width: 640px) {
.blog-item h1 {
line-height: 1.2 !important;
}
.blog-item h2 {
line-height: 1.3 !important;
}
.blog-item h3 {
line-height: 1.4 !important;
}
.blog-item h4 {
line-height: 1.45 !important;
}
}
//Site logo as SVG
//DESKTOP
.header-title-logo img {
visibility: hidden;
}
.header-title-logo a {
background-image: url(https://static1.squarespace.com/static/68276477b7f9f0556532f9e4/t/682e0c57339f41765a5fe642/1747848279534/EL_Artboard+2_5%402x.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
/* Swap to mobile SVG logo */
@media screen and (max-width: 640px) {
.header-title-logo img {
visibility: hidden;
}
.header-title-logo a {
background-image: url(https://static1.squarespace.com/static/68276477b7f9f0556532f9e4/t/685594339ff2ef702aa91100/1750438963705/EL_Artboard+3_1.svg);
width: 130px;
height: 40px;
}
}
//Center Align Footer on Mobile)
@media only screen and (max-width:640px){ #footer-sections * {text-align:center}}

