Home Forums Trusted Pro Header Image cutting off based on browser window size Reply To: Header Image cutting off based on browser window size

#13557
Yazmin
Keymaster

To take account of the variation in aspect ratio between mobile and desktop/laptop, you could use a different backgorund image on mobile, with this custom CSS (Customize > Additional CSS):

@media screen and (max-width: 768px) {
    .main-header {
        background-image: url(path-to-image.jpg);
    }
}