<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Topic: Jack Hammer Discussions</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Jack Hammer Discussions</description>
<language>en</language>
<pubDate>Sat, 30 Aug 2008 14:12:42 +0000</pubDate>

<item>
<title>JeffVoegtlin on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12697</link>
<pubDate>Mon, 17 Dec 2007 03:45:23 +0000</pubDate>
<dc:creator>JeffVoegtlin</dc:creator>
<guid isPermaLink="false">12697@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Trent, I can't complain about free help.&#60;/p&#62;
&#60;p&#62;While there are some things that would be nice to have, I'm fairly happy with the looks of things right now.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12552</link>
<pubDate>Tue, 11 Dec 2007 23:40:12 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">12552@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I apologize Jeff for not getting back to you.   To be honest, I have a theme there with all kinds of issues that I am &#34;still&#34; working out.    I'm thinking there is a better way to do this!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12522</link>
<pubDate>Sun, 09 Dec 2007 23:37:25 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12522@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Look at the rendered source of the page (the HTML source) and look for &#60;code&#62;&#38;lt;br /&#38;gt;&#60;/code&#62; or &#60;code&#62;&#38;lt;p&#38;gt;&#60;/code&#62; tags - those will cause line wrapping.  The other possibility is that the container that is holding the search form (the div) is too small, so it wraps.
&#60;/p&#62;</description>
</item>
<item>
<title>JeffVoegtlin on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12515</link>
<pubDate>Sun, 09 Dec 2007 20:58:04 +0000</pubDate>
<dc:creator>JeffVoegtlin</dc:creator>
<guid isPermaLink="false">12515@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That helped alot.  Thanks.  I decided right now it's better not to have the search box.  But I know where it is.  Later, if I can figure it out, I'll add it in.&#60;/p&#62;
&#60;p&#62;I was able to do all the things you suggested and it looked much better.  But I still could not get it all on one line when I am logged in.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12512</link>
<pubDate>Sun, 09 Dec 2007 15:29:44 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12512@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;For the size of the input text box, you need to change this in your theme's search-form.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;input size=&#38;quot;38&#38;quot; maxlength=&#38;quot;100&#38;quot; name=&#38;quot;q&#38;quot; value=&#38;quot;&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
&#38;nbsp;&#60;br /&#62;
Change the 38 to something smaller and the size of the box displayed will be smaller.&#60;/p&#62;
&#60;p&#62;Then, right below that in the file, you need to change this:&#60;br /&#62;
&#60;code&#62;&#38;lt;input value=&#38;quot;Search »&#38;quot; class=&#38;quot;inputButton&#38;quot; type=&#38;quot;submit&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
to this:&#60;br /&#62;
&#60;code&#62;&#38;lt;input value=&#38;quot;Go!&#38;quot; class=&#38;quot;inputButton&#38;quot; type=&#38;quot;submit&#38;quot; &#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;To get everything on one line, you need to remove all the paragraph tags around those two form fields in your search.php.  Each form element is in its own paragraph &#60;code&#62;&#60;/code&#62; so there are lilne breaks there.  Remove the [p] and [/p] tags and see what it looks like.  You will most likely need to add a space between the form input and the Go button after that, but I think it will do what you want.  It will look something like this when you're done:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;form action=&#38;quot;&#38;lt;?php bb_option(&#38;#39;uri&#38;#39;); ?&#38;gt;search.php&#38;quot; method=&#38;quot;get&#38;quot;&#38;gt;
        &#38;lt;?php _e(&#38;#39;Search:&#38;#39;); ?&#38;gt;
                &#38;lt;input type=&#38;quot;text&#38;quot; size=&#38;quot;23&#38;quot; maxlength=&#38;quot;100&#38;quot; name=&#38;quot;q&#38;quot; value=&#38;quot;&#38;lt;?php echo attribute_escape( $q ); ?&#38;gt;&#38;quot; /&#38;gt;

        &#38;lt;?php if( empty($q) ) : ?&#38;gt;
        &#38;lt;p class=&#38;quot;submit&#38;quot;&#38;gt;&#38;lt;input type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php echo attribute_escape( __(&#38;#39;Go!&#38;#39;) ); ?&#38;gt;&#38;quot; class=&#38;quot;inputButton&#38;quot; /&#38;gt;

        &#38;lt;?php else : ?&#38;gt;
        &#38;lt;p class=&#38;quot;submit&#38;quot;&#38;gt;&#38;lt;input type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php echo attribute_escape( __(&#38;#39;Search again &#38;amp;raquo;&#38;#39;) ); ?&#38;gt;&#38;quot; class=&#38;quot;inputButton&#38;quot; /&#38;gt;

        &#38;lt;?php endif; ?&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>JeffVoegtlin on "Jack Hammer Discussions"</title>
<link>http://bbpress.org/forums/topic/jack-hammer-discussions#post-12505</link>
<pubDate>Sun, 09 Dec 2007 05:11:54 +0000</pubDate>
<dc:creator>JeffVoegtlin</dc:creator>
<guid isPermaLink="false">12505@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know if my forums qualify to be listed here, but I'm going to anyway.  Trent has helped me quite a bit and I figured some other things out myself.  I'd appreciate any comments, or suggestions.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://jackhammr.org/bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://jackhammr.org/bbpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm using Trent's onvertigo theme, which works well with my blog theme, regulus.&#60;/p&#62;
&#60;p&#62;Does anyone know how I can edit the search_form?  I'd like the input box to be shorter and I'd like the button to say &#34;Go!&#34; and be on the same line as the box.  And I'd like all of that to be on the same line as the User Information.&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
</item>

</channel>
</rss>
