Blog Title Hover Effect Reveal Squarespace 7.1
Reveal the blog title with this customizable CSS hover effect:
/* Reveal Blog Title - Hover Effect */
.blog-basic-grid--text {
position: absolute;
top: 50%;
left: 50%;
text-align: center;
transform: translate(-50%,-50%);
opacity: 0;
transition: all 0.3s;
}
article.blog-basic-grid--container.entry.blog-item.is-loaded {
position: relative !important;
transform: unset !important;
}
.blog-basic-grid article:hover .blog-basic-grid--text {
opacity: 1;
transition: all 0.3s;
}
.blog-basic-grid .image-wrapper:after {
content: "";
background-color: rgb(242, 104, 36);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.3s;
}
.blog-basic-grid article:hover .image-wrapper:after {
opacity: 1;
transition: all 0.3s;
}
.blog-basic-grid .image-wrapper {
position: relative;
}