Hello
To hide the top panel completely on small screen devices, add the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
@media only screen and (max-width: 767x) {
.header_top {
display: none;
}}
Ciaran