1) Your css is adding and repeating the image so remove <img> from within your <div>
Code:
#footer {
color: #FFFFFF;
background: url(images/bottom.jpg) repeat-x;
font-weight: bold;
}
Code:
<div id="footer"><p>© 2006 all rights reserved.<p></div>
2) No need to add a class to <p> Style with
Code:
#footer p{
text-align: center;
padding: 10px 0px;
}
Last edited by Ninja; 08-11-2009 at 01:27 AM..
|