(Squarespace) Add Date text next to logo in Header

To add a Date next to Logo in Header, like this.

You can use this code to Custom CSS
If code doesn’t work, you can comment below, message or email me.

div.header-title a::after {
    content: "Sat & Sun, Oct 4 & 5, 2024";
    font-size: 16px;
    color: #333;
    margin-left: 10px;
    white-space: nowrap; 
    display: inline-block;
}
@media (max-width: 767px) {
   div.header-title a::after {
        font-size: 14px;
        margin-left: 5px;
    }
}
div.header-title a { 
  display: flex; 
  align-items: center; 
}

1 Like