<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress.com Forums &#187; Topic: Horizontal Menu &amp; Integrated Search Form?</title>
		<link>http://en.forums.wordpress.com/topic/horizontal-menu-038-integrated-search-form</link>
		<description>WordPress.com Forums &#187; Topic: Horizontal Menu &amp; Integrated Search Form?</description>
		<language>en</language>
		<pubDate>Thu, 20 Jun 2013 01:52:36 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/horizontal-menu-038-integrated-search-form" rel="self" type="application/rss+xml" />

		<item>
			<title>katm on "Horizontal Menu &amp; Integrated Search Form?"</title>
			<link>http://en.forums.wordpress.com/topic/horizontal-menu-038-integrated-search-form#post-82577</link>
			<pubDate>Tue, 29 May 2007 05:36:30 +0000</pubDate>
			<dc:creator>katm</dc:creator>
			<guid isPermaLink="false">82577@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You need to be over at <a href="http://wordpress.org/support" rel="nofollow">http://wordpress.org/support</a> as you're self hosted.
</p>
]]></description>
					</item>
		<item>
			<title>ryvius on "Horizontal Menu &amp; Integrated Search Form?"</title>
			<link>http://en.forums.wordpress.com/topic/horizontal-menu-038-integrated-search-form#post-82574</link>
			<pubDate>Tue, 29 May 2007 05:22:57 +0000</pubDate>
			<dc:creator>ryvius</dc:creator>
			<guid isPermaLink="false">82574@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I self hosted, and sorry for the bad code paste.  I'm new at the forum markup code game I guess.  </p>
<p>Its pretty much the same deal, except the links have the actual code displayed instead of HTMLized of course.</p>
<p>I just tried stretching the form tag to encompass both the horizontal menu and the input tags.</p>
<p>&#60;form method="get" id="searchform" action="&#60;?php echo $_SERVER['PHP_SELF']; ?&#62;"&#62;</p>
<p>Menu link #1, Menu link #2, Menu link #3, etc</p>
<p>&#60;input type="text" value="&#60;?php echo wp_specialchars($s, 1); ?&#62;" name="s" id="s" size="15" align="right" /&#62; &#60;input type="submit" id="sidebarsubmit" value="Search" style="font-size: 10px;" /&#62;</p>
<p>&#60;/form&#62;</p>
<p>The end result is I get this: Menu item #1, #2, #3, [Search Field here]</p>
<p>I want to align the search field to the far right side (text is aligned to the left) on this horizontal menu.  CSS align tags aren't helping in that regard.</p>
<p>Any new ideas?
</p>
]]></description>
					</item>
		<item>
			<title>katm on "Horizontal Menu &amp; Integrated Search Form?"</title>
			<link>http://en.forums.wordpress.com/topic/horizontal-menu-038-integrated-search-form#post-82562</link>
			<pubDate>Tue, 29 May 2007 05:02:45 +0000</pubDate>
			<dc:creator>katm</dc:creator>
			<guid isPermaLink="false">82562@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Is your blog hosted here at wp.com?  Or did you download a template from wp.org and self-host?</p>
<p>If you're hosted here, it won't work.  Forms are stripped out for security reasons.  There is a search widget you can put in your sidebar.
</p>
]]></description>
					</item>
		<item>
			<title>ryvius on "Horizontal Menu &amp; Integrated Search Form?"</title>
			<link>http://en.forums.wordpress.com/topic/horizontal-menu-038-integrated-search-form#post-82549</link>
			<pubDate>Tue, 29 May 2007 04:51:01 +0000</pubDate>
			<dc:creator>ryvius</dc:creator>
			<guid isPermaLink="false">82549@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've been trying to integrate a search form on a standard horizontal menu for the last two days and have been having little success.</p>
<p>I've tried various CSS align commands, repositioned the form include within the menu ULs and without.</p>
<p>Can anyone suggest a new approach for me to try to take?</p>
<p>Menu Item #1 &#124; Menu Item #2 &#124; Menu Item #3 &#124; Search Form (aligned far right preferably)</p>
<p>My Header code:</p>
<p>&#60;backticks&#62;<br />
&#60;div class="header"&#62;<br />
		&#60;div class="path"&#62;</p>
<p>				<a>/"&#62;Home</a>
<ul><a href="">Photography</a></ul>
<ul><a href="">Portfolio</a></ul>
<ul><a href="">Risk</a></ul>
<ul><a href="">About</a></ul>
<p>							&#60;form method="get" id="searchform" action="&#60;?php echo $_SERVER['PHP_SELF']; ?&#62;"&#62;</p>
<p>								&#60;input type="text" value="&#60;?php echo wp_specialchars($s, 1); ?&#62;" name="s" id="s" size="19" /&#62; &#60;input type="submit" id="sidebarsubmit" value="Search" style="font-size: 10px;" /&#62;</p>
<p>							&#60;/form&#62;<br />
		&#60;/div&#62;<br />
	&#60;/div&#62;<br />
&#60;backticks&#62;</p>
<p>And the relevant CSS:</p>
<p>[backticks]<br />
/* Horizontal Menu Structure */<br />
.path {<br />
	vertical-align: bottom;<br />
	color: #FFF;<br />
	font: normal 1.1em 'Trebuchet MS', Verdana, sans-serif;<br />
	padding: 4px 12px;<br />
	padding-top: 375px;<br />
	padding-bottom: 10px;<br />
	padding-right: 10px;<br />
	padding-left: 10px;<br />
}<br />
.path li,.path ul {display: inline;}<br />
.path a {<br />
	color: #FAFAFA;<br />
	text-decoration: none;<br />
	margin-right: 25px;<br />
}<br />
.path a:hover {<br />
	color: #FFE;<br />
	text-decoration: underline;<br />
}</p>
<p>/* Main Content Structure */<br />
.main {<br />
	background: url('img/main.gif') repeat-y;<br />
	padding: 8px 12px 0px 15px;<br />
}<br />
#searchform {padding: 10px;}<br />
[/backticks]</p>
<p>Any help would *greatly* be appreciated!</p>
<p>Ryvius
</p>
]]></description>
					</item>

	</channel>
</rss>
