I'm trying to insert a search field in my header (black zone) but doesn't work. I want the search field inline with "SimpleCMS"...
See this screenshot to understand:

I want it on the same line as the header text...
There's my HTML code:
<div id="header"><h1><?php echo($header_text); ?></h1>
<div style="float: right;">
<form action="search.php" method="get">
<input type="text" name="q" id="q" value="Search..." />
<input type="submit" value="Search" />
</form>
</div>
</div>
And my CSS:
#header
{
padding: 5px 10px;
background: #000;
color: #FFF;
text-align: left;
}

?php echo($header_text); ?-part insert more than just the line saying "SimpleCMS"? Because if so your putting the link stuff saying "Home" and "Blog" and "Profile" into a<h1>element and if not where does it come from? – Nessuno Feb 1 '12 at 16:42$header_textis the "SimpleCMS" only... – Frederick Marcoux Feb 1 '12 at 16:44