I'm trying to position background images. The problem I have is that the background image makes the copy difficult to read on some screen sizes. This is because the image is a tree branch which, depending on screen size, sometimes underlaps the text on the page.
To get around this I set a min-height on the body - fine.
I wouldlike to keep the effect of the a fixed value of the background-attachement property though:
html {background-attachement: fixed;}
I like how the elements on top of the html scroll while the html background images remain static.
However, when I set the following code the min-height of the body loses it's effect - the image gets in the way of the copy:
html {background-attachement:fixed;}
body {min-height:900px;)
You can see the issue if you set "html {background-attachement: fixed} here: http://tinyurl.com/7sctwak
Any advice on how to get around this?