so this is what is happening, as you can see from the image below The browser screen size is making the woman cover things or move as I call it.
Here is my code
img#woman{
position:absolute;
bottom:100px;
display:block;
right:55%;
z-index: 900;
}
#homearea{
display:block;
height:750px;
}
https://i.stack.imgur.com/BdNi7.jpg
I need to woman to stay in one spot she should look like this

This is without seeing your HTML:
Try setting the position on the containing div (#homearea?) to relative and then changing the directional values for the image to be relative to the top-left of the containing div.
In other words, try something like this: