Here is a simple header with logo aligned to left and Facebook button aligned to right. CSS: #logo {float: left } #fb-button {float: right} Code (markup): HTML: <div id="header"> <div id="logo">...code for logo...</div> <div id="fb-button">...code for Facebook button...</div> </div> HTML: