Is there a better way to force the top of my initial background image at schoolofbookkeeping.com home page (the girl) so her head isn’t cut off when resized?
Thanks for writing in! It seems you are using too much padding-left value for the section that’s causing this. You can reset this for smaller screens with media query :
@media only screen and (max-width: 979px) {
.home #x-section-1 {
padding: 200px 0 400px !important;
}
}
Let’s change the max-width and values with your own.