To remove space between Logo – Top of screen like this.
You can use this code to Custom CSS.
div.header-announcement-bar-wrapper {
padding-top: 0px !important;
}
Result
To make code run on Desktop Only, use this CSS code.
@media screen and (min-width:768px) {
div.header-announcement-bar-wrapper {
padding-top: 0px !important;
}}
To make code run on Mobile only, use this CSS code.
@media screen and (max-width:767px) {
div.header-announcement-bar-wrapper {
padding-top: 0px !important;
}}