Im struggling to get the text in the div footertext to display on top of the image. Im also trying to get it so that the copyrighttext goes to the right corner and the footernavmenu goes to the left corner.
Here is my HTML code:
<div id="footer">
<div id="footerimage">
<img src="images/footer-waves.jpg" width="980" height="140" alt="waves" />
</div><!-- footer image -->
<div id="footertext">
<div id="footernavmenu">
<ul id="list-footer-nav">
<li><a href="index.html">Home</a></li>
<li><a href="design.html">Design</a></li>
<li><a href="about.html">About</a></li>
<li><a href="kayaking-di">kayaking Disciplines</a></li>
<li><a href="links.html">Useful links</a></li>
</ul><!-- ul end list-footer-nav -->
</div><!-- div end footernavmenu -->
<div id="copyright">
<div class="copyrigttext">
Copyright © 2013 Elliott Davidson, All Rights Reserved.
</div><!-- end div copyrighttext -->
</div><!-- end div copyright -->
</div><!-- end div footertext -->
</div><!-- end of footer -->
Here is the CSS code:
#footer {
margin-left:auto;
margin-right:auto;
height:175px;
width:980;
}
#footertext {
position:relative;
width:980px;
height:auto;
}
#footerimage {
margin-left:auto;
margin-right:auto;
width:980px;
height:140px;
}
#footernavmenu {
width : 480px;
right:0px;
margin-right:0px;
float:left;
color:#FFF;
}
ul#list-footer-nav {
list-style : none;
padding-right : 3px;
width:auto;
}
ul#list-footer-nav li {
display : inline;
padding-right: 3px;
}
ul#list-footer-nav li a {
text-decoration : none;
width:auto;
float : left;
}
ul#list-footer-nav li a:hover {
}
ul#list-footer-nav li a:active {
}
#copyright {
width:480px;
height:auto;
right:0px;
float:right;
}
.copyrighttext {
}