Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2005-10-22 00:13:38
- kelper
- Member
- Registered: 2005-05-27
- Posts: 28
How would I get the the "search bar" on the same line?
Well, not really the search bar, more like the text before it. It always wraps to the next line.
I want the search to look like:
Find Deal On _________ Search
It ends up looking like:
Find Deal On
_________ Search
How would I get them all on the same line?
Offline
#2 2005-10-22 00:24:41
- Mary
- Sock Enthusiast
- Registered: 2004-06-27
- Posts: 6,236
Re: How would I get the the "search bar" on the same line?
Don’t use the search_input tag, create the html markup yourself. View Source of your page, and copy your search form, then customize it and replace the search_input tag with your html.
Offline
Re: How would I get the the "search bar" on the same line?
Or you could wrap a div with an id or class around the search input tag and then make your CSS look like this:
#form-search form {
display: inline;
}
Your HTML could look like this:
<div id="form-search">
<txp:search_input />
</div>
Offline