JSFiddle - React, Tailwind, and code Playground

HTML

<div id="footer">
    <div id="footercontainer">
        <div id="footertext">Copyright NV Blinds 2012</div>
        <div id="footerlinks">
            <ul>
                <li>Home</li>
                <li>About</li>
                <li>The Collections</li>
                <li>Distributors</li>
                <li>Our Team</li>
                <li>Contact</li>
             </ul>
        </div>
    </div>
</div>

CSS

#footer{
width: 100%;
height: 100px;
background-image: url(images/jf_footer.png);
background-color: pink;
font-size: 0.75em;
}

#footercontainer{
width: 960px;
margin:20px auto;
height:auto;
overflow:hidden;
background-color:yellow;
    
}

#footertext{
float: left;
text-align:center;
margin-top: 15px;
color: #C7C7C7;
font-size: 1em;
}

li {
    margin:0 30px;
    line-height:30px;
float: left;    
}