<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>Yakezie.com - Topic: Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/</link>
	<description><![CDATA[Selflessly Helping Others]]></description>
	<generator>Simple:Press Version 4.5.1</generator>
	<atom:link href="https://yakezie.com/forums/?help-desk&#038;moving-google-custom-search-in-thesis&#038;xfeed=topic" rel="self" type="application/rss+xml" />
<item>
	<title>Eric - PersonalProfitability.com on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57815</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57815</guid>
	<description><![CDATA[<p>Got it! Thanks. I have to Tweak the size of the input box a bit but it is now in the right place.</p>
]]></description>
	<pubDate>Tue, 27 Dec 2011 10:07:59 +0000</pubDate>
</item>
<item>
	<title>The College Investor on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57316</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57316</guid>
	<description><![CDATA[<p>DIY Forums have a lot of good info on this.</p>
]]></description>
	<pubDate>Wed, 21 Dec 2011 12:25:34 +0000</pubDate>
</item>
<item>
	<title>The College Investor on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57315</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57315</guid>
	<description><![CDATA[<p>You need to make a custom function for the Googe Search.  Here is what the Google Search custom function should look like:</p>
<blockquote><p>
function googly() { <br />
?&#62; <br />
&#60;div class="goog"&#62; <br />
&#60;form action="http://www.google.com/cse" id="cse-search-box"&#62; <br />
  &#60;div&#62; <br />
    &#60;input type="hidden" name="cx" value="value_for_my_site" /&#62; <br />
    &#60;input type="hidden" name="ie" value="UTF-8" /&#62; <br />
    &#60;input type="text" name="q" size="31" /&#62; <br />
    &#60;input type="submit" name="sa" value="Search" /&#62; <br />
  &#60;/div&#62; <br />
&#60;/form&#62; <br />
&#60;/div&#62; <br />
&#60;script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&#38;lang=en"&#62;&#60;/script&#62; <br />
&#60;?php <br />
}</p>
</blockquote>
<p>Then, you need to use the code above to add it to your Nav Bar.  It won&#039;t kill your site.  You may need to play with the CSS to make it look right though.</p>
]]></description>
	<pubDate>Wed, 21 Dec 2011 12:25:21 +0000</pubDate>
</item>
<item>
	<title>Eric - PersonalProfitability.com on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57290</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57290</guid>
	<description><![CDATA[<p>I have this code in the Before Sidebar 1 hook with the Open Hooks plugin:</p>
<blockquote><p>
&#60;form action="http://www.narrowbridge.net/results" id="cse-search-box"&#62;  &#60;div&#62;    &#60;input type="hidden" name="cx" value="partner-pub-0128772486725372:svqi7brbp9c" /&#62;    &#60;input type="hidden" name="cof" value="FORID:11" /&#62;    &#60;input type="hidden" name="ie" value="ISO-8859-1" /&#62;    &#60;input type="text" name="q" size="20" /&#62;    &#60;input type="submit" name="sa" value="Search" /&#62;  &#60;/div&#62;&#60;/form&#62;&#60;script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&#38;lang=en"&#62;&#60;/script&#62;</p>
</blockquote>
<p>If I drop that code into the bold part in Custom Functions will it work right?</p>
<blockquote><p>
remove_action(&#039;thesis_hook_before_header&#039;, &#039;thesis_nav_menu&#039;);add_action(&#039;thesis_hook_after_header&#039;, &#039;thesis_nav_menu&#039;);<br />
function add_search_nav() { ?&#62;	&#60;li class="search"&#62;&#60;?php <strong>thesis_search_form();</strong> ?&#62;&#60;/li&#62;&#60;?php }<br />
add_action(&#039;thesis_hook_last_nav_item&#039;,&#039;add_search_nav&#039;);</p>
</blockquote>
<p>I don&#039;t want to kill my site by doing it wrong. Thanks.</p>
]]></description>
	<pubDate>Wed, 21 Dec 2011 08:51:33 +0000</pubDate>
</item>
<item>
	<title>The College Investor on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57171</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57171</guid>
	<description><![CDATA[<p>Try this.  It is for Thesis search, but I&#039;m sure you can modify it for Google Search.</p>
<p>&#160;</p>
<blockquote><p>
remove_action(&#039;thesis_hook_before_header&#039;, &#039;thesis_nav_menu&#039;);add_action(&#039;thesis_hook_after_header&#039;, &#039;thesis_nav_menu&#039;);<br />
function add_search_nav() { ?&#62;	&#60;li class="search"&#62;&#60;?php thesis_search_form(); ?&#62;&#60;/li&#62;&#60;?php }<br />
add_action(&#039;thesis_hook_last_nav_item&#039;,&#039;add_search_nav&#039;);</p>
</blockquote>
]]></description>
	<pubDate>Tue, 20 Dec 2011 17:52:33 +0000</pubDate>
</item>
<item>
	<title>Eric - PersonalProfitability.com on Moving Google Custom Search in Thesis</title>
	<link>https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57151</link>
	<category>Help Desk</category>
	<guid isPermaLink="true">https://yakezie.com/forums/help-desk/moving-google-custom-search-in-thesis/#p57151</guid>
	<description><![CDATA[<p>I just added back a Google Custom Search (AdSense Search) box on my site. I put it above the sidebar using Thesis Hooks, but I want to place it in the side of my navbar where the Subscribe link currently is (I know how to remove that, it is a placeholder).</p>
<p>Any ideas?</p>
]]></description>
	<pubDate>Tue, 20 Dec 2011 14:17:17 +0000</pubDate>
</item>
</channel>
</rss>
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: yakezie.com @ 2026-04-08 18:58:52 by W3 Total Cache
-->