I have a website with a fixed background cover located at:
On each page, there is a large header image, but on smaller devices like mobiles, the cover image appears too big. I am looking to scale it down for mobile devices.
Here is the code that I'm currently using:
#takelessons {
background: url(../img/portfolio/takelessons-intro.jpg) no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: center top;
}
If you have any suggestions or tips on how to adjust the size of the cover image for mobile devices, I would greatly appreciate it!