Blend Template: Entice customers with a bold header and scrolling banners.
In this post
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
Announcement Bar Color
Fixed Announcement Bar
Remove Announcement Bar
Site Title Color
/* Desktop */ .Header-branding { color: #000 !important; } /* Mobile */ a.Mobile-bar-branding { color: #ff0000 !important; }
Disable Site Title Link
Entire Site
/* Mobile */ a.Mobile-bar-branding { pointer-events: none; } /* Desktop */ .Header-branding { pointer-events: none; }
One Page
/* Mobile */ body#collection-59e7c04580bd5e038a0eb55e a.Mobile-bar-branding { pointer-events: none; } /* Desktop */ body#collection-59e7c04580bd5e038a0eb55e .Header-branding { pointer-events: none; }
Navigation Hover Color
.Header-nav-item:hover { color: #000 !important; }
Turn Navigation Last item to Button
.Header-nav-item:last-child { background: #000; color: #fff !important; padding: 10px 20px !important; border-radius: 50px; font-size: 10px; }
Hide Navigation Items
First Item
.Header-nav-item:nth-child(1) { display: none; }
Second Item
.Header-nav-item:nth-child(2) { display: none; }
Do Similar!
Remove Navigation
Entire Site
.Header-nav { display: none; }
One Page
body#collection-59e7c04580bd5e038a0eb55e .Header-nav { display: none; }
Change Hamburger Icon Color
button.Mobile-bar-menu { stroke: red; }
Remove Hamburger Icon
Entire Site
button.Mobile-bar-menu { display: none; }
One Page
body#collection-59e7c04580bd5e038a0eb55e button.Mobile-bar-menu { display: none; }
Replace Hamburger Icon with word “Menu”
button.Mobile-bar-menu { visibility: hidden; } button.Mobile-bar-menu:after { visibility: visible; content: "Menu"; font-size: 15px; color: #ff0000; font-family: proxima-nova; }
Replace Hamburger icon with Custom Image/Icon
button.Mobile-bar-menu:after { visibility: visible; content: ""; background-image: url(https://images.squarespace-cdn.com/content/v1/59e7bf4…/1510…sM-jX1l_vCNNexc_8uNqRcjgjqHEQp9SyAh6JNHwp5JUA/image-asset.jpeg?format=750w); background-position: center center; background-size: contain; display: block; width: 50px; height: 50px; } button.Mobile-bar-menu { visibility: hidden; }
Add word “Menu” beside Hamburger Icon
button.Mobile-bar-menu:after { content: "Menu"; font-size: 15px; color: #ff0000; font-family: proxima-nova; position: absolute; top: 30px; right: 50px; }
Navigation Overlay Color
.Mobile-overlay { background: #f2f3f4 !important; } .Mobile-overlay-menu { background: #f2f3f4; } button.Mobile-overlay-close { background: #f2f3f4 !important; }
Navigation Overlay Width
.Mobile-overlay { width: 50%; }
Force Mobile Header on Desktop
.Mobile.loaded { display: flex; } .Header-inner { display: none !important; } .Site-inner { margin-top: 50px; }
Header Background Color
/* Desktop */ .Header-inner.Header-inner--top { background: #f1f2f3; } /* Mobile */ .Mobile-bar.Mobile-bar--top { background: #f1f2f3; }
Header Background Image
header.Header.Header--top { background-image: url(https://images.squarespace-cdn.com/content/v1/59e7bf4…/1554…Xbfawd0urKshkc5MgdBeJmALQKw/10_31_2017_Coffee_Shop5059_V2.jpg?format=1500w); background-repeat: no-repeat; background-position: center center; background-size: cover; } /* Mobile */ .Mobile-bar.Mobile-bar--top { background-image: url(https://images.squarespace-cdn.com/content/v1/59e7bf4…/1554…Xbfawd0urKshkc5MgdBeJmALQKw/10_31_2017_Coffee_Shop5059_V2.jpg?format=1500w); background-repeat: no-repeat; background-size: cover; background-position: center center; }
Fixed Header
/* Desktop */ @media screen and (min-width:641px) { .Header.Header--top { position: fixed; top: 0; left: 0; right: 0; z-index: 999; } .Site-inner { padding-top: 100px; } }
Remove Header
Entire Site
/* Desktop */ .Header.Header--top { display: none !important; } /* Mobile */ .Mobile-bar.Mobile-bar--top { display: none; }
One Page
/* Desktop */ body#collection-59e7c04580bd5e038a0eb55e .Header.Header--top { display: none !important; } /* Mobile */ body#collection-59e7c04580bd5e038a0eb55e .Mobile-bar.Mobile-bar--top { display: none; }
Footer
Footer Background Color
Entire Site
footer.Footer { background: #f1f2f3; }
One Page
body#collection-59e7c04580bd5e038a0eb55e footer.Footer { background: #f1f2f3; }
Footer Background Image
Entire Site
footer.Footer { background-image: url(https://images.squarespace-cdn.com/content/v1/59e7bf4…/1554…Xbfawd0urKshkc5MgdBeJmALQKw/10_31_2017_Coffee_Shop5059_V2.jpg?format=1500w); background-repeat: no-repeat; background-size: cover; background-position: center center; }
One Page
body#collection-59e7c04580bd5e038a0eb55e footer.Footer { background-image: url(https://images.squarespace-cdn.com/content/v1/59e7bf4…/1554…Xbfawd0urKshkc5MgdBeJmALQKw/10_31_2017_Coffee_Shop5059_V2.jpg?format=1500w); background-repeat: no-repeat; background-size: cover; background-position: center center; }
Remove Footer
Entire Site
footer.Footer { display: none !important; }
One Page
body#collection-59e7c04580bd5e038a0eb55e footer.Footer { display: none !important; }
Blog
Remove Post Date
time.Blog-meta-item.Blog-meta-item--date { display: none; }
Remove Post Categories
.Blog-meta-item--categories { display: none !important; }
Remove Post Featured Image
.BlogList-item-image { display: none !important; }
Remove Post Excerpt
.BlogList-item-excerpt { display: none !important; }
Remove padding between posts
article { margin-top: 0 !important; }
Change Post Date Color
time.Blog-meta-item.Blog-meta-item--date { color: #000; }
Change Post Categories Color
.Blog-meta-item--categories a { color: #000; }
Decrease space between Blog Title & Header
.view-item.collection-type-blog .Main-content { padding-top: 0; }
Remove “Previous/Next”
.BlogItem-pagination-link-label { display: none !important; }
Featured Image: Squarespace.com