First, let me say that I'm an amateur with HTML and web design so please try to keep your explanations as blunt and frank as possible. Thanks in advance!
I'm wanting to have a repeating background image behind another fixed, non-repeating image.
This is the following code I have so far:
<style>
body {
margin-top:0px;
height:100%;
background:url(Boneyard.png);
background-repeat:no-repeat;
background-position:top center;
background-attachment:fixed;
}
html {
margin-top:0px;
height:100%;
background:url(background.png);
background-repeat:repeat;
background-position:right top;
background-attachment:fixed;
background-color:transparent;
}
</style>
The fixed image appears but the background remains white without the repeating background appearing at all.
Please, help? Let me know if you need any more information.