Thorne Template: Draw customers into your brand’s story with this website template’s shoppable lookbooks.

Notes
1. Adding Custom CSS to Home > Design > Custom CSS
2. Adding !important to after, if CSS doesn’t work! for example: font-size: 20px !important;
3. If it still doesn’t work, send me a message via Contact Form with your site url. I’ll give you exact CSS..
4. How to find Page ID: https://beaverhero.com/squarespace-how-to/
body#collection-56d86c682b8dde72910d59bd is Page ID. Each page will have different ID
Header
Site Title Color
Entire Site
/* Desktop */
.Header-branding {
color: #ff0000 !important;
}
/* Mobile */
a.Mobile-bar-branding {
color: #ff0000 !important;
}
One Page
/* Desktop */
body#collection-58b5ed10bf629a356f09728a .Header-branding {
color: #ff0000 !important;
}
/* Mobile */
body#collection-58b5ed10bf629a356f09728a a.Mobile-bar-branding {
color: #ff0000 !important;
}
Site Title Font Size
Entire Site
/* Desktop */
.Header-branding {
font-size: 30px !important;
}
/* Mobile */
a.Mobile-bar-branding {
font-size: 30px !important;
}
One Page
/* Desktop */
body#collection-58b5ed10bf629a356f09728a .Header-branding {
font-size: 30px !important;
}
/* Mobile */
body#collection-58b5ed10bf629a356f09728a a.Mobile-bar-branding {
font-size: 30px !important;
}
Remove Site Title
Entire Site
.Header-branding {
visibility: hidden;
}
a.Mobile-bar-branding {
visibility: hidden;
}
One Page
body#collection-58b5ed10bf629a356f09728a .Header-branding {
visibility: hidden;
}
body#collection-58b5ed10bf629a356f09728a a.Mobile-bar-branding {
visibility: hidden;
}
Navigation Hover Color
Entire Site
.Header-nav-item:hover {
color: #ff0000 !important;
}
One Page
body#collection-560d9d7ae4b079ff1a2e6eaa .Header-nav-item:hover {
color: #ff0000 !important;
}
Navigation Background Color
Entire Site
.Header-nav {
background: #000;
}
One Page
body#collection-560d9d7ae4b079ff1a2e6eaa .Header-nav {
background: #000;
}
Remove Navigation
Entire Site
.Header-nav {
display: none;
}
One Page
body#collection-58b5ed10bf629a356f09728a .Header-nav {
display: none;
}
Hide Navigation Item
Entire Site
First Item
.Header-nav-item:nth-child(1) {
display: none;
}
Second Item
.Header-nav-item:nth-child(1) {
display: none;
}
Do similar!
One Page
First Item
body#collection-560d9d7ae4b079ff1a2e6eaa .Header-nav-item:nth-child(1) {
display: none;
}
Second Item
body#collection-560d9d7ae4b079ff1a2e6eaa .Header-nav-item:nth-child(1) {
display: none;
}
Do similar!
Hamburger Icon Color
button.Mobile-bar-menu svg {
stroke: #ff0000;
}
Replace Hamburger icon with Custom Icon
button.Mobile-bar-menu {
visibility: hidden;
}
button.Mobile-bar-menu:after {
visibility: visible;
content: "";
background-image: url(https://image.flaticon.com/icons/svg/1279/1279537.svg);
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
width: 30px;
height: 30px;
display: block;
}
Replace Hamburger icon with word “Menu”
button.Mobile-bar-menu {
visibility: hidden;
}
button.Mobile-bar-menu:after {
visibility: visible;
content: "Menu";
font-family: proxima-nova;
color: #000;
font-size: 20px;
}
Add word “Menu” beside Hamburger Icon
button.Mobile-bar-menu:before {
content: "Menu";
font-size: 20px;
color: #000;
position: absolute;
right: 50px;
top: 25px;
}
Navigation Overlay Background Color
Entire Site
.Mobile-overlay-menu {
background: #f1f2f3;
}
.Mobile-overlay {
background: #f1f2f3 !important;
}
button.Mobile-overlay-close {
background: #f1f2f3 !important;
}
One Page
body#collection-560d9d7ae4b079ff1a2e6eaa .Mobile-overlay-menu {
background: #f1f2f3;
}
body#collection-560d9d7ae4b079ff1a2e6eaa .Mobile-overlay {
background: #f1f2f3 !important;
}
body#collection-560d9d7ae4b079ff1a2e6eaa button.Mobile-overlay-close {
background: #f1f2f3 !important;
}
Navigation Overlay Items Font Size
a.Mobile-overlay-nav-item {
font-size: 17px !important;
}
Align Navigation Overlay Items
.Mobile-overlay-nav-item {
text-align: right;
}
Navigation Overlay Width
.Mobile-overlay {
width: 70%;
}
Replace Cart Text with Custom Icon
span.Cart-label {
visibility: hidden;
}
span.Cart-label:after {
visibility: visible;
content: "";
background-image: url(https://image.flaticon.com/icons/svg/1279/1279537.svg);
background-size: contain;
background-position: center center;
width: 20px;
height: 20px;
display: inline-block;
}
Header Background Color
Entire Site
.Header.Header--bottom {
background: #f1f2f3;
}
.Mobile-bar {
background: #f1f2f3;
}
One Page
body#item-58a214273e00bea4494186a7 .Header.Header--bottom {
background: #f1f2f3;
}
body#item-58a214273e00bea4494186a7 .Mobile-bar {
background: #f1f2f3;
}
Remove Header
Entire Site
.Mobile-bar {
display: none;
}
.Header.Header--bottom {
display: none !important;
}
One Page
body#item-58a214273e00bea4494186a7 .Mobile-bar {
display: none;
}
body#item-58a214273e00bea4494186a7 .Header.Header--bottom {
display: none !important;
}
Footer
Footer Background Color
Entire Site
footer.Footer {
background: #000;
}
One Page
body#collection-58b5ed10bf629a356f09728a footer.Footer {
background: #000;
}
Footer Background Image
Entire Site
footer.Footer {
background-image: url(https://beaverhero.com/wp-content/uploads/2019/07/coffee-beans-1082116_640-min.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
One Page
body#collection-58b5ed10bf629a356f09728a footer.Footer {
background-image: url(https://beaverhero.com/wp-content/uploads/2019/07/coffee-beans-1082116_640-min.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
Footer Navigation Items Hover Color
a.Footer-nav-item:hover {
color: #fff;
}
Remove Footer
Entire Site
footer.Footer {
display: none !important;
}
One Page
body#collection-58b5ed10bf629a356f09728a footer.Footer {
display: none !important;
}
Shop
Sticky Shop Sidebar (Left Sidebar) when scrolling
.ProductList-filter {
position: -webkit-sticky;
position: sticky;
top: 0;
}
Change Product Hover Color
.tweak-product-list-meta-position-overlay.tweak-product-list-mobile-meta-position-under .ProductList-overlay {
background: #000;
}
Align Center Product Name/Price
.ProductList-meta {
text-align: center !important;
}
Change Product Name Font Size
.view-list h1.ProductList-title {
font-size: 20px;
}
Change Quick View Color
span.sqs-product-quick-view-button {
background: #f1f2f3 !important;
color: #000 !important;
font-size: 20px;
border-radius: 50px;
border: 1px solid #ff0000 !important;
padding: 5px 10px !important;
}
Rename Quick View Text
span.sqs-product-quick-view-button {
visibility: hidden;
}
span.sqs-product-quick-view-button:after {
content: "View Quick";
visibility: visible;
color: #000;
background: #f1f2f3;
padding: 20px 40px;
border-radius: 50px;
}
Change Sale Badge Color
.product-mark.sale {
background: #000;
color: #f1f2f5;
font-size: 20px;
text-transform: lowercase;
padding: 20px 30px !important;
border-radius: 20px;
}
Rename Sale Text
.product-mark.sale {
visibility: hidden;
}
.product-mark.sale:after {
visibility: visible;
content: "Sale OOff";
color: #000;
background: #ff0000;
padding: 20px 40px;
border-radius: 30px;
font-size: 10px;
}
Product Page
Increase Product Detail Width
@media screen and (min-width:641px) {
/* Detail */
section.ProductItem-details {
width: 50%;
}
/* Gallery */
figure.ProductItem-gallery {
width: 39%;
}
}
Remove Add to Cart
All Products
.sqs-add-to-cart-button-wrapper {
display: none !important;
}
One Product
body#item-560db7c8e4b074d417cfd8a8 .sqs-add-to-cart-button-wrapper {
display: none !important;
}
Remove Product Share
.ProductItem-details-share {
display: none !important;
}
Change Product Price Color
.view-item .product-price {
color: #ff0000;
}
Product Page Color
All Products
.view-item.collection-type-products .Main {
background: #f1f2f3;
}
One Product
body#item-560db7c8e4b074d417cfd8a8 .Main {
background: #f1f2f3;
}
Remove Sold out text
.product-mark.sold-out {
display: none !important;
}
Change Product Name Font Size
All Products
.view-item h1.ProductItem-details-title {
font-size: 20px !important;
}
One Product
body#item-560db7c8e4b074d417cfd8a8 h1.ProductItem-details-title {
font-size: 20px !important;
}
Other
Site Background Color
Entire Site
.tweak-site-border-show .Site {
border: 57px solid #000;
}
One Page
body#collection-560d9d7ae4b079ff1a2e6eaa .tweak-site-border-show .Site {
border: 57px solid #000;
}
Featured Image: Squarespace.com