Thank you thats almost perfect! I couldnt figure out how to layer it so the background images dont cover up the rest of my page (they have to fit bellow the content).
Also turning this code
Code:
<div id="item2" class="item" >
<a name="item2"></a>
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Homo_heidelbergensis_%2810233446%29.jpg/250px-Homo_heidelbergensis_%2810233446%29.jpg" style="position: absolute; left:20%; top:100%; margin-top:50px;width:60%;height:100%" alt="">
<div class="content">item2 <a href="#item1" class="panel">1</a> | <a href="#item2" class="panel">2</a> | <a href="#item3" class="panel">3</a> | <a href="#item4" class="panel">4</a> | <a href="#item5" class="panel">5</a><hr>Homo heidelbergensis.</div>
</div>
into something nicer like this
Code:
<div id="item2" class="item" >
<a name="item2"></a>
<div class="content">item2 <a href="#item1" class="panel">1</a> | <a href="#item2" class="panel">2</a> | <a href="#item3" class="panel">3</a> | <a href="#item4" class="panel">4</a> | <a href="#item5" class="panel">5</a><hr>Homo heidelbergensis.</div>
</div>
<style>
#item-2 {
background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Homo_heidelbergensis_%2810233446%29.jpg/250px-Homo_heidelbergensis_%2810233446%29.jpg) no-repeat;
background-size: fill;
}
</style>
didnt work out for me
Bookmarks