The author byline on Squarespace 7.1 blog posts uses the .Blog-meta-item--author class. If author profiles are enabled, an author section appears with avatar and bio in .author-avatar and .author-bio.
Create a polished author card by adding a background, padding, and a circular avatar image. This builds trust and gives your blog a professional editorial feel.
.Blog-meta-item--author {
font-weight: 600;
font-size: 14px;
color: #333;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
margin-right: 16px;
}
.author-bio {
display: flex;
align-items: center;
background: #f9f9f9;
padding: 24px;
border-radius: 8px;
margin-top: 40px;
}
.author-bio p {
font-size: 14px;
line-height: 1.6;
color: #555;
}Enhance your blog with our Blog Sidebar toolTry it free →
