0

Okay basically, i want to make my banner responsive. so just changing the window size and the image doesn't resize, however it doesn't allow yout to scrol.

Before resize:

enter image description here

After resize:

enter image description here

And this is what i dont want to happen on window resize:

enter image description here

1 Answers1

2

Set the banner image as a background and give it the following CSS:

background-size: cover;

Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Background_and_Borders/Scaling_background_images

Ryan
  • 416
  • 2
  • 7