Hello.> > I am using the debut theme and am having problems with how the header banner looks on mobile and desktop. It looks fine on mobile but gets cutoff on desktop.> > Anyway to fix this?> > Thanks!
Can you post a screenshot of the effect or maybe a website URL?
That’s because the image is not the correct dimensions. You can add the below CSS for desktop, so it will show the full image, but that will add space to the side. I changed the background color to sort off negate that. Best thing to do is change the image URL for desktop, so it’s a wider image.
div#Hero-hero-1 {
background-size: contain;
background-color: #a49e9b;
}
Ah, yes I see now. Thank you for your help!
