I have a header im working on, I want headerimg to float left, and headerlogin to float on right side of screen. the header div is 100% width. I am having a hard time making it do what I want.
http://www.reason-x.com/index2.php
#header
{
width: 100%
;
height:50px;
margin: 0 auto;
display:inline-block;
}
#headerimg
{
width: 98px
;
height:50px;
text-align: left;
display:inline-block;
}
#headerlogin
{
width: 400px
;
height:50px;
text-align: right;
background-color: red;
display:inline-block;
}