# Footer Problem

**URL:** https://forum.kirupa.com/t/footer-problem/172833
**Category:** web dev
**Created:** [December 18, 2005, 4:59pm UTC](https://forum.kirupa.com/t/footer-problem/172833 "2005-12-18T16:59:49Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![twillis](https://avatars.discourse-cdn.com/v4/letter/t/b782af/32.png) [@twillis](https://forum.kirupa.com/u/twillis)
#### Post date: [December 18, 2005, 4:59pm UTC](https://forum.kirupa.com/t/footer-problem/172833/1 "2005-12-18T16:59:49Z")

</div>

Hi,

This is what my footer currently looks like in a design im working on:  
[http://www.contemporarymultimedia.com/design1.htm](http://www.contemporarymultimedia.com/design1.htm)

As you can see its all messed up. This is the CSS for the footer the main problem is the float right footer class:

```auto
#footer {
clear: left;
display: block;
height: 39px;
margin: 0px;
line-height: 39px;
font-size: .75em;
color: #C5ACAB;
padding-left: 20px;
background-color: #8A5857;
}
 
.float-right-footer {
text-align: right;
float: right;
height: 39px;
margin: 0px;
}

```

Im using the float-right-footer so i can add some text on the right hand side of the footer.

Im not really sure what im doing wrong. Here is the XHTML:

```auto
 
<div id="footer">
<p>Copyright &copy; 2005 - Rocha Rocha. All rights reserved. </p>
<p class="float-right-footer">Valid XHTML / CSS</p>
</div>

```

Any suggestions?

Thanks
