I have a slideshow on my homepage that is not moving behind the fixed header when scrolling down, although it does correctly on all other pages of the website.
Below is the HTML code:
<body>
<div id="wrapperfull">
<div id="head">
<div id="header">
<a href="index.html"><img src="../Images/Header.png" width="379" height="99" alt="Just Joel Header"></a>
</div><!-- end header div -->
<div class="navigation">
<div class="menu-holder">
<ul class="menu">
<li><a href="index.html">HOME</a></li>
<li><a href='print.html'>WORK</a>
</li>
<li><a href="photography.html">PHOTOGRAPHY</a>
</li>
<li><a href="blog.html">BLOG</a>
</li>
<li><a href="inspired.html">INSPIRED</a>
</li>
</ul>
</div>
<!-- menu-holder end -->
</div><!-- end navigation div -->
<div class="container">
<!-- START: slideshow -->
<ul class="slideshow">
<li class="" style="opacity: 0.7021717977643726;"> <img src="../Images/P7158711.jpg" alt="Treetopnews" height="500" width="700" style="border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;"> </li>
<li class="show" style="opacity: 0.2971101211669;"> <img src="../Images/NCSY/NCSY4.jpg" alt="NCSYbooklet" height="500" width="700" style="border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;"> </li>
<li class="" style="opacity: 0;"> <img src="../Images/Aish/AHC3.jpg" alt="Aishcalendar" height="500" width="700" style="border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;"> </li>
<li class="" style="opacity: 0;"> <img src="../Images/P7168759.jpg" alt="Grahamallcott" height="500" width="700" style="border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;"> </li>
</ul>
</div>
<!-- END: slideshow -->
<div class="blog-container">
<p2>
<p>I'm Just Joel, a 33 year old graphic and web designer from hertfordshire. I have over nine years of commercial experience and have developed a wide range of skills within branding, marketing, editorial design, web design & corporate literature. I have strong passion for design and am always looking for new things to create, being inspired by all things around me.</p>
...
Here is the CSS code:
#wrapperfull {
min-height: 100%;
width: 1050px;
...
#social img{
padding-right: 10px;
float: right;
}
We appreciate your assistance! Thank you.