(Squarespace) Reduce Mobile header height

To reduce header height on mobile, you can use this code to Website > Website Tools > Custom CSS.

@media screen and (max-width:767px) {
div.header-announcement-bar-wrapper {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
}
2 Likes