Hello,
I hope someone can give me a basic idea of how to style a drop down search box. I am not a pro at css so, with that in mind......
The following is the search box code that I picked up on a tutorial.
<div id="main-search">
<form action="" method="get" class="search">
<label for="headerSearch">Search:</label>
<input type="hidden" name="mod" value="search" class="searchSelect" />
<select name="source" class="searchSelect">
<option value="People">People</option>
<option value="Blogs">Blogs</option>
<option value="Views">Views</option>
<option value="Groups">Groups</option>
<option value="Groups Forums">Groups Forums</option>
<option value="Companies">Companies</option>
<option value="Meetups">Meetups</option>
<option value="Help">Help</option>
<option value="Google">Google</option>
</select>
<div id="search-bar">
<input name="q" value='Search Coming Soon' class="search-style" />
<input type="submit" value="Search" class="searchSubmit" />
</form>
</div></div>You'll notice that I tried to add the css to it to create a search bar similar to myspaces. Their search bar has the options and input box combined. Of course I couldn't figure out how to align the options, search bar input, and the search button. I looked on every tutorial but, couldn't find anything that helped. If I leave the form plain then it aligns fine but, really generic. It also creates a space between the options, input box, and the search submit button. If I showed you the css markup for this you might laugh and it's no help either. Any help is appreciated. If someone could show me a generic css markup that could help alot.