<?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>ThemeShaper Forums User Favorites: srinair</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 14:30:58 +0000</pubDate>

<item>
<title>eastjane on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-10084</link>
<pubDate>Tue, 23 Feb 2010 05:52:50 +0000</pubDate>
<dc:creator>eastjane</dc:creator>
<guid isPermaLink="false">10084@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok I got it! Thanks for your help. I did the following:&#60;/p&#62;
&#60;p&#62;In function.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// This will create your widget area
function search_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Header Aside&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;header-aside&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/li&#38;gt;\n&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;search_widgets_init&#38;#39; );

// adding the widget area to your child theme
function my_header_widgets() {
	if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;header-aside&#38;#39;) ) {
		echo &#38;#39;&#38;lt;div id=&#38;quot;header-aside&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
		dynamic_sidebar(&#38;#39;header-aside&#38;#39;);
		echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/ul&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
		echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #header-aside .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
	}
}
add_action(&#38;#39;thematic_header&#38;#39;, &#38;#39;my_header_widgets&#38;#39;, 8);

function remove_branding() {
		remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_brandingopen&#38;#39;,1);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_branding&#38;#39;);

function my_brandingopen() { ?&#38;gt;
	&#38;lt;div id=&#38;quot;header_box&#38;quot;&#38;gt;
    	&#38;lt;div id=&#38;quot;branding&#38;quot;&#38;gt;
&#38;lt;?php }
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;my_brandingopen&#38;#39;,1);

/* add search form to header
*/
function add_searchbar(){
include (TEMPLATEPATH . &#38;#39;/searchform.php&#38;#39;);
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;add_searchbar&#38;#39;, 8);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#header_box {
	clear: both;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 960px;
}

/* Moves blog name &#38;#38; description to the left */
#branding {
	float: left;
	width: 620px;
	margin: 0 0 0 10px;
	padding:8px 0 1px;
}

/* Moves the new widgetized area to the right and levels it with #branding */
#header-aside {
  float: right;
  width: 300px;
  padding: 88px 0 44px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for your help!
&#60;/p&#62;</description>
</item>
<item>
<title>Erin on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-10082</link>
<pubDate>Tue, 23 Feb 2010 04:50:52 +0000</pubDate>
<dc:creator>Erin</dc:creator>
<guid isPermaLink="false">10082@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You need to add a searchbar to your header before you can style it. Here is how I did it: Add to function.php:&#60;/p&#62;
&#60;p&#62;/* add search form to header&#60;br /&#62;
 */&#60;br /&#62;
function add_searchbar(){&#60;br /&#62;
	include (TEMPLATEPATH . '/searchform.php');&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_header','add_searchbar');&#60;/p&#62;
&#60;p&#62;Then, style in your childtheme's stylesheet.
&#60;/p&#62;</description>
</item>
<item>
<title>eastjane on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-10081</link>
<pubDate>Tue, 23 Feb 2010 04:10:54 +0000</pubDate>
<dc:creator>eastjane</dc:creator>
<guid isPermaLink="false">10081@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Please help me, I am really stuck on this problem. None of the methods talked about in this post:http://themeshaper.com/forums/topic/widgets-in-the-header work for me.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Jane
&#60;/p&#62;</description>
</item>
<item>
<title>eastjane on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-9956</link>
<pubDate>Fri, 19 Feb 2010 08:44:57 +0000</pubDate>
<dc:creator>eastjane</dc:creator>
<guid isPermaLink="false">9956@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes something along those lines is what I am looking for. I would appreciate your help.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>srinair on "Extremely slow loading website"</title>
<link>http://themeshaper.com/forums/topic/extremely-slow-loading-website#post-9953</link>
<pubDate>Fri, 19 Feb 2010 07:18:52 +0000</pubDate>
<dc:creator>srinair</dc:creator>
<guid isPermaLink="false">9953@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;So, it seems like only those in the Indian sub continent and the Middle East are the one's affected :( thanks again!&#60;/p&#62;
&#60;p&#62;Ran a &#34;Full Page&#34; test on Pingdom Tools and got the following:&#60;br /&#62;
&#60;a href=&#34;http://tools.pingdom.com/fpt/?url=www.srinair.com/&#38;#38;id=1862547&#34; rel=&#34;nofollow&#34;&#62;http://tools.pingdom.com/fpt/?url=www.srinair.com/&#38;#38;id=1862547&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The initial load time is like 10 seconds. Is this because I am using the index.php redirect for WordPress? I had installed WP in a sub-directory, but did not want my URL to look like &#34;www.srinair.com/wpdirectory&#34; when people visited it. So, followed directions found at &#60;a href=&#34;http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory&#60;/a&#62; to redirect &#60;a href=&#34;http://www.srinair.com&#34; rel=&#34;nofollow&#34;&#62;www.srinair.com&#60;/a&#62; to &#34;www.srinair.com/wpdirectory&#34;. Could this be the problem? Seems like it if you look at the test chart above.&#60;/p&#62;
&#60;p&#62;Don't know. Anyone?&#60;/p&#62;
&#60;p&#62;Thanks.&#60;br /&#62;
Sri
&#60;/p&#62;</description>
</item>
<item>
<title>srinair on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-9951</link>
<pubDate>Fri, 19 Feb 2010 07:14:43 +0000</pubDate>
<dc:creator>srinair</dc:creator>
<guid isPermaLink="false">9951@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey there,&#60;/p&#62;
&#60;p&#62;Check my site - &#60;a href=&#34;http://www.srinair.com.&#34; rel=&#34;nofollow&#34;&#62;www.srinair.com.&#60;/a&#62; Is this what you want to do as well?&#60;/p&#62;
&#60;p&#62;If so, then you have to add code to functions.php in your child theme along with the necessary CSS styles in your style.css file.&#60;/p&#62;
&#60;p&#62;Let me know and I'll share with you what I have and the little I know.&#60;/p&#62;
&#60;p&#62;Sri
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Extremely slow loading website"</title>
<link>http://themeshaper.com/forums/topic/extremely-slow-loading-website#post-9950</link>
<pubDate>Fri, 19 Feb 2010 07:13:57 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">9950@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;no i'm in Oz&#60;/p&#62;
&#60;p&#62;fast internet here.
&#60;/p&#62;</description>
</item>
<item>
<title>eastjane on "Moving search to top right corner"</title>
<link>http://themeshaper.com/forums/topic/moving-search-to-top-right-corner#post-9949</link>
<pubDate>Fri, 19 Feb 2010 07:11:17 +0000</pubDate>
<dc:creator>eastjane</dc:creator>
<guid isPermaLink="false">9949@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I would like to move the search box to the top right corner of my site. I don't have a live site just yet so I am copying my code below. I tried the methods talked about in this post:http://themeshaper.com/forums/topic/widgets-in-the-header, but was not successful. &#60;/p&#62;
&#60;p&#62;I am using the Child theme development format.&#60;/p&#62;
&#60;p&#62;My style.css looks something like this. (after all the import statements on top)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*Have a clickable logo on the left most site */
#blog-title a {
display:block;
text-indent:-4000px;
width: 317px;
height: 200px;
}
#wrapper {
background:url(&#38;#39;images/logo.jpg&#38;#39;) no-repeat top left;
background-position: 5% 0%;
}

#branding {
padding:8px 0 1px;
}
/*Don&#38;#39;t need secondary*/
#secondary {display:none;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And my functions.php is empty.&#60;/p&#62;
&#60;p&#62;I am new to web development. I would appreciate any help.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Jane
&#60;/p&#62;</description>
</item>
<item>
<title>srinair on "Extremely slow loading website"</title>
<link>http://themeshaper.com/forums/topic/extremely-slow-loading-website#post-9948</link>
<pubDate>Fri, 19 Feb 2010 06:51:56 +0000</pubDate>
<dc:creator>srinair</dc:creator>
<guid isPermaLink="false">9948@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Jamie,&#60;/p&#62;
&#60;p&#62;Thanks a lot for checking it out. Are you located in the US? I have a feeling that loading the site from India (where I am) and the Middle East (I used to live in the UAE/Dubai), takes way too long. I don't know if there is anything I can do it to fix it.&#60;/p&#62;
&#60;p&#62;Honestly, from India and from the UAE, my site can take close to a minute to fully load up.&#60;/p&#62;
&#60;p&#62;Thanks again!&#60;/p&#62;
&#60;p&#62;Anyone else has any thoughts?&#60;/p&#62;
&#60;p&#62;Sri
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Extremely slow loading website"</title>
<link>http://themeshaper.com/forums/topic/extremely-slow-loading-website#post-9947</link>
<pubDate>Fri, 19 Feb 2010 05:40:10 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">9947@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;no problems loading here, took about 2-3 sec.&#60;/p&#62;
&#60;p&#62;must be your isp, pc or something else on your end...&#60;/p&#62;
&#60;p&#62;sometimes i get days when sites just don't load.
&#60;/p&#62;</description>
</item>
<item>
<title>srinair on "Extremely slow loading website"</title>
<link>http://themeshaper.com/forums/topic/extremely-slow-loading-website#post-9941</link>
<pubDate>Fri, 19 Feb 2010 02:12:32 +0000</pubDate>
<dc:creator>srinair</dc:creator>
<guid isPermaLink="false">9941@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi folks,&#60;/p&#62;
&#60;p&#62;I sure could use some help.&#60;/p&#62;
&#60;p&#62;I created a simple child theme using thematic (which I think is awesome!). My problem is that my web site takes way too long to load (over 30 secs)!&#60;/p&#62;
&#60;p&#62;URL - &#60;a href=&#34;http://www.srinair.com&#34; rel=&#34;nofollow&#34;&#62;http://www.srinair.com&#60;/a&#62;&#60;br /&#62;
Hosting - EasyCGI&#60;br /&#62;
WordPress Version - 2.9.2 (index.php in the root directory, pointing to the sub folder where WP is actually installed)&#60;br /&#62;
Plugins Installed - All in One SEO Pack (v1.6.10.1), Contact Form 7(v2.1.1), W3 Total Cache (Disabled)(v0.8.5.1), WP-Polls(v2.5), Akismet (v2.2.7)&#60;/p&#62;
&#60;p&#62;I have tried the following to speed things up:&#60;/p&#62;
&#60;p&#62;1) Enable GZIP compression&#60;/p&#62;
&#60;p&#62;Custom PHP.INI with the following:&#60;/p&#62;
&#60;p&#62;zlib.output_compression = On&#60;br /&#62;
zlib.output_handler = On&#60;br /&#62;
zlib.output_compression_level = 6&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.srinair.com/phpinfo.php&#34; rel=&#34;nofollow&#34;&#62;http://www.srinair.com/phpinfo.php&#60;/a&#62; - In case you want to see my PHP settings.&#60;/p&#62;
&#60;p&#62;I believe this only compresses the PHP, HTML files and NOT CSS or Javascript.&#60;/p&#62;
&#60;p&#62;2) W3 Total Cache Plugin&#60;br /&#62;
My attempts to &#34;minify&#34; CSS and Javascript resulted in the style sheets screwing up and Javascript errors when the site loaded up. Enabled cache, but hasn't led to any improvements, so disabled at the moment.&#60;/p&#62;
&#60;p&#62;3) Using the Firebug add-on in Firefox, I get a score of 73/100 after running &#34;Page Speed&#34;. I get a red exclamation against the following:&#60;/p&#62;
&#60;p&#62;- Leverage browser caching&#60;br /&#62;
- Combine external CSS&#60;br /&#62;
- Combine external JavaScript&#60;br /&#62;
- Enable compression (shouldn't enabling GZIP take care of this?)&#60;/p&#62;
&#60;p&#62;I am at a loss right now. Not an expert in PHP, MySQL, CSS, Javascript, WordPress or Thematic/Child Themes!&#60;/p&#62;
&#60;p&#62;Any help or suggestion anyone can give would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks.&#60;br /&#62;
Sri
&#60;/p&#62;</description>
</item>

</channel>
</rss>
