How to make banner header closer to my banner image on MOBILE only?

PRESTIGE THEME

I want to make my multi-banner header closer to the image. It looks like its for the image below it. Please help!

https://amandauprichard.com/

@Amanda_Uprichar

Please add the following code at the bottom of your assets/theme.scss.liquid file.

@media screen and (max-width: 640px){
.MultiBanner__Content{
    margin-top: 15px !important;
    margin-bottom: 35px;
}
}

Hope this works.

Thanks!

hello @Amanda_Uprichar

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (max-width: 640px){
 .template-index  .MultiBanner__Content{
    margin-top: 15px !important;
    margin-bottom: 35px;
}
}