From: "Angus at InfoForce Services" 

>I have a footer file at: http://infoforce-services.com/ifs_footer.php and 
>can not figure out why I can not Get my background and foreground colors. 
>Any Hints>

Angus,

In the stylesheet for the footer you have selectors listed as class selectors 
but you have them called with ID attributes in the HTML. Change one or the 
other. For example, changing the selectors to match the ID attributes you would 
have - 

<style type=text/css>
a {
color: #FFFFF0;
}
#footer {
clear: both;
background: #2F4F4F;
font-size: 80%;
padding: 0;
}
#footer p {
color: #FFFFFF;
background: #2F4F4F;
        margin: auto;
border:4px double #FFFFF0;
padding: 4px;
}
#cleared {
clear: both;
background: #2F4F4F;
color: #FFFFF0;
padding-bottom: 30px;
}
</style>

That ought to get you closer to what you want.

hth,

~holly 
 
                   
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to