Squarespace 7.1 blog posts include social share buttons via the .sqs-share-buttons wrapper. Each platform has its own class like .ss-social-button for styling.
You can restyle the default share buttons to match your brand using custom background colors, border-radius, and icon sizing. The buttons use inline SVG icons that respond to the color property.
.sqs-share-buttons {
display: flex;
gap: 10px;
padding: 20px 0;
border-top: 1px solid #eee;
margin-top: 30px;
}
.sqs-share-buttons .ss-social-button {
background: #111;
color: #fff;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.2s ease;
}
.sqs-share-buttons .ss-social-button:hover {
opacity: 0.7;
}Enhance your blog with our Blog Sidebar toolTry it free →
