You can use these CSS code to make announcement bar always appear instead of once per day on Squarespace.
#1. All Pages
You can use this code to Custom CSS box
span.sqs-announcement-bar-close {
display: none;
}
#2. One Page
You can find Page ID.
Then use CSS code like this
#collection-66a1bfc99041e47b896c1e48 {
span.sqs-announcement-bar-close {
display: none;
}
.sqs-announcement-bar-hidden {
display: block !important;
}}
#3. Always show on Desktop Only
@media screen and (min-width:768px) {
span.sqs-announcement-bar-close {
display: none;
}
.sqs-announcement-bar-hidden {
display: block !important;
}
}
#4. Always show on Mobile Only
@media screen and (max-width:767px) {
span.sqs-announcement-bar-close {
display: none;
}
.sqs-announcement-bar-hidden {
display: block !important;
}
}