After rearranging the date header below my post title on Blogger, I encountered an issue where on the latest post, the date was overlapping with the header. Adjusting the margin or padding affected other date headers, leaving me unsure of what to do next. You can view the blog here. Below is the relevant code snippet (where h3 represents the post title):
h3 {
text-align: center !important;
}
h3 a{
color: #424242;
transition: 0.5s ease;
}
h3 a:hover {
color: #58c5d2;
}
.date-header {
text-align: center !important;
float: below;
}
.date-header span {
letter-spacing: 10px !important;
}
h2 {
text-align: center !important;
}
.date-posts {
margin-top: 40px;
}
h3 {
margin-bottom: -25px !important;
}
I appreciate any assistance you can provide!