Forum Moderators: not2easy
Basically, I have a container div
#container {
padding: 0px 0px 0px 0px;
margin-top: 7px;
position: absolute;
right: auto;
left: auto;
width: 1008px;
height: 564px;
background-color: #FFF;
border-style: solid;
border-color: #000000;
border-width: 1px;
}
That contains another div which contains the masthead image of my page.
#masthead {
background-color: #FFFFFF;
width: 1008px;
height: 37px;
float: left;
}
Underneath the masthead div is another div which contains a menu
#navcontainer {
background-color: #FFFFFF;
position: relative;
height: 20px;
}
Within the masthead div, and to the right of the masthead image, I'd like to have a search form.
Any ideas on how to style the form so that it fits and does not throw the menu below it off?
thanks