I am setting up a new blog/site at http://mdcaz.org. I am hoping to move the search bar above the large image and then have the message appear here a normal blog post would appear. Does that make sense? Any and all help is greatly appreciated. Thanks!
Brent
DanPhalen
Member
Posted 5 years ago #
Beautiful image, by the way.
Move your <form> block up inside the logo div thusly.
<div id="logo">
<h2>search words</h2>
<form method="get" id="searchform" action="http://mdcaz.org/">
<div><input value="" name="s" id="s" type="text">
<input id="searchsubmit" value="Search" type="submit">
</div>
</form>
</div>
If you like, you can also change the position of the search block by modifying your style.css file. My example justifies it right, but it also screws up any <h2> header text you care to add. If you exclude header text, it will appear where most people look for a search form.
#logo {
width: 754px;
height: 60px;
margin: 0 auto;
padding: 2px;
text-align: right;
}
Hope this helps.
Oh terrific! Thank you so much! That's almost perfect. Is it possible to move it down slightly, closer to the image?
I think I got it. Thanks again!