I've been encountering some issues with my website recently. I'm attempting to stack two divs on top of each other to create a jagged background effect. Here's an example: https://docs.google.com/drawings/d/1IdqWKdkbS-xxLrvzLF8bh5k_B6iIzmlmNJdKi8CgZSc/edit?usp=sharing. However, I haven't been able to make it work as intended. Currently, only one of the images is being displayed at a time. Here is the code I am using:
<div style="background-image:url('http://www.mediadude.co.uk/wp-content/themes/wpbootstrap/images/WashedWallTexture2.jpg'); background-repeat:repeat-x; clear:both;">
<p><!--EmptySpace--></p> </div>
<div style="background-image:url('http://www.mediadude.co.uk/wp-content/themes/wpbootstrap/images/WashedWallTexture1.jpg'); background-repeat:repeat; clear:both">
<!--content here-->
</div>
Thank you for your assistance.