<?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: lewism</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 22 May 2013 23:01:02 +0000</pubDate>

<item>
<title>helgatheviking on "full post and then excerpts on category pages"</title>
<link>http://themeshaper.com/forums/topic/full-post-and-then-excerpts-on-category-pages#post-25084</link>
<pubDate>Mon, 30 Jan 2012 15:02:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25084@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;cool share.  i will have to check that out, i've been wondering how to do that myself.
&#60;/p&#62;</description>
</item>
<item>
<title>petskratt on "full post and then excerpts on category pages"</title>
<link>http://themeshaper.com/forums/topic/full-post-and-then-excerpts-on-category-pages#post-25083</link>
<pubDate>Mon, 30 Jan 2012 12:06:44 +0000</pubDate>
<dc:creator>petskratt</dc:creator>
<guid isPermaLink="false">25083@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;grrreat, thanks for code sample :-)&#60;/p&#62;
&#60;p&#62;and now to answer the original question with said sample - this modification will show first post on category archive as full and rest as excerpts:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// category pages with full content

function childtheme_content( $content ) {
	global $loopcounter;
	if ( is_category() &#38;#38; !$loopcounter ) {
		$content= &#38;#39;full&#38;#39;;
		$loopcounter++;
	}
	return $content;
}

add_filter( &#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39; );&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>bhomatude on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23871</link>
<pubDate>Sat, 19 Nov 2011 23:33:19 +0000</pubDate>
<dc:creator>bhomatude</dc:creator>
<guid isPermaLink="false">23871@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I ended up using this solution:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/thematic_close_wrapper-move-footer-out-of-wrapper-by-code#post-18881&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/thematic_close_wrapper-move-footer-out-of-wrapper-by-code#post-18881&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;combined with this sticky footer css:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.cssstickyfooter.com/using-sticky-footer-code.html&#34; rel=&#34;nofollow&#34;&#62;http://www.cssstickyfooter.com/using-sticky-footer-code.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So far so good!
&#60;/p&#62;</description>
</item>
<item>
<title>bhomatude on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23870</link>
<pubDate>Sat, 19 Nov 2011 21:34:58 +0000</pubDate>
<dc:creator>bhomatude</dc:creator>
<guid isPermaLink="false">23870@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for the reply, Helga... Yes I do want the footer to always be visible and always stuck to the bottom of the browser (even when dynamically resizing the browser)... And also allow for scrollable content above, if necessary. There are various jquery plugins that seem to do it that I think I'll have to look into.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23869</link>
<pubDate>Sat, 19 Nov 2011 19:34:47 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23869@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#34;If you resize the browser (safari/FF) the footer stays pinned to the bottom but you must now scroll to find it. Refreshing the browser, no matter what size it is, will place the footer at the bottom.&#34;&#60;/p&#62;
&#60;p&#62;the point of the sticky footer is that it is always at the bottom of the content and not floating in the middle of a short page.  on a page with long enough content the content pushes the footer below the viewport anyway and it doesn't matter.  the point &#60;em&#62;isn't&#60;/em&#62; to always be fixed to the bottom of the viewport, which sounds like what you are after.  in that case you do need position: absolute.
&#60;/p&#62;</description>
</item>
<item>
<title>bhomatude on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23868</link>
<pubDate>Sat, 19 Nov 2011 18:51:31 +0000</pubDate>
<dc:creator>bhomatude</dc:creator>
<guid isPermaLink="false">23868@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm still trying to find an elegant way to do this! Both Chris' and Helga's solutions work... BUT only when you first load the page. &#60;/p&#62;
&#60;p&#62;If you resize the browser (safari/FF) the footer stays pinned to the bottom but you must now scroll to find it. Refreshing the browser, no matter what size it is, will place the footer at the bottom.&#60;/p&#62;
&#60;p&#62;Any other ideas... So far, the only one that worked for me was just position:absolute but that broke in IE7 and it's not great because of the potential overlapping of elements.
&#60;/p&#62;</description>
</item>
<item>
<title>Dominor Novus on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23435</link>
<pubDate>Wed, 12 Oct 2011 02:45:04 +0000</pubDate>
<dc:creator>Dominor Novus</dc:creator>
<guid isPermaLink="false">23435@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Correction:&#60;br /&#62;
The solution posted by Chris works exactly in FF.&#60;/p&#62;
&#60;p&#62;In Chrome it's about 10px off.&#60;br /&#62;
IE is about 50px off.&#60;br /&#62;
Safari is over 100px.&#60;/p&#62;
&#60;p&#62;Any ideas why this is happening?
&#60;/p&#62;</description>
</item>
<item>
<title>Dominor Novus on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-23434</link>
<pubDate>Wed, 12 Oct 2011 02:23:31 +0000</pubDate>
<dc:creator>Dominor Novus</dc:creator>
<guid isPermaLink="false">23434@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can anyone help me in EXACTLY aligning the footer. &#60;/p&#62;
&#60;p&#62;Both solutions provided in this thread result in the bottom 20px or so the footer being off the page.
&#60;/p&#62;</description>
</item>
<item>
<title>mrmikeman on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-23210</link>
<pubDate>Sat, 24 Sep 2011 06:51:45 +0000</pubDate>
<dc:creator>mrmikeman</dc:creator>
<guid isPermaLink="false">23210@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;im trying to do this same thing now and i add the code above and i get a syntax error on&#60;/p&#62;
&#60;p&#62;function my_header_widgets() {&#60;/p&#62;
&#60;p&#62;that line ^
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-22181</link>
<pubDate>Thu, 07 Jul 2011 02:36:54 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22181@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeah?  good to hear.  also have i mentioned how much i really like your home page design?
&#60;/p&#62;</description>
</item>
<item>
<title>4rederick on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-22180</link>
<pubDate>Wed, 06 Jul 2011 21:19:08 +0000</pubDate>
<dc:creator>4rederick</dc:creator>
<guid isPermaLink="false">22180@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Worked great for me, Helga. Thank you.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.josephfrederick.com&#34; rel=&#34;nofollow&#34;&#62;www.josephfrederick.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer/page/2#post-22177</link>
<pubDate>Wed, 06 Jul 2011 15:43:53 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22177@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thanks sergio for helping me test this!  anyone else want to lend a hand.  here's my latest version.  seems to work for me, and almost works for sergio (though not in child themes apparently)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// KIA Sticky Footer
function kia_sticky() { ?&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

    jQuery.noConflict();

    jQuery(document).ready(function($){

		$.getDocHeight = function(){
			return Math.max(
				$(document).height(),
				$(window).height(),
				/* For opera: */
				document.documentElement.clientHeight
			);
		};

		matchHeight();

		function matchHeight() {

			//available height of window - #header and #footer
			var mainHeight = $.getDocHeight() - $(&#38;quot;#header&#38;quot;).outerHeight() - $(&#38;quot;#leader&#38;quot;).outerHeight() - $(&#38;quot;#footer&#38;quot;).outerHeight() - parseInt($(&#38;quot;#footer&#38;quot;).css(&#38;quot;margin-top&#38;quot;)) - 1 - parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-top&#38;quot;))- parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-bottom&#38;quot;)) - $(&#38;quot;#wpadminbar&#38;quot;).outerHeight() ;

			$(&#38;#39;#main&#38;#39;).css(&#38;#39;min-height&#38;#39;, mainHeight );

		}

		$(window).resize(matchHeight);
});

&#38;lt;/script&#38;gt;

&#38;lt;?php
}
add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;kia_sticky&#38;#39;);
// End KIA Sticky Footer&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>sergiovieira on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-22176</link>
<pubDate>Wed, 06 Jul 2011 14:26:31 +0000</pubDate>
<dc:creator>sergiovieira</dc:creator>
<guid isPermaLink="false">22176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@helgatheviking I think I missed your reply there, now it makes sense. :)
&#60;/p&#62;</description>
</item>
<item>
<title>sergiovieira on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-22172</link>
<pubDate>Wed, 06 Jul 2011 13:22:16 +0000</pubDate>
<dc:creator>sergiovieira</dc:creator>
<guid isPermaLink="false">22172@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This works for me:&#60;/p&#62;
&#60;p&#62;I removed all the reference to #leader which I believe was a bug:&#60;/p&#62;
&#60;p&#62;#header&#34;).outerHeight()*removed this* - jQuery(&#34;#leader&#34;).outerHeight() *removed this*- jQuery(&#34;#footer&#34;)&#60;/p&#62;
&#60;p&#62;changed the $ to jQuery&#60;/p&#62;
&#60;p&#62;// KIA Sticky Footer&#60;br /&#62;
function kia_sticky() { ?&#38;gt;&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;    jQuery.noConflict();&#60;/p&#62;
&#60;p&#62;    jQuery(document).ready(function(){&#60;br /&#62;
        matchHeight();&#60;br /&#62;
	function matchHeight() {&#60;/p&#62;
&#60;p&#62;		//available height of window - #header and #footer&#60;br /&#62;
		var mainHeight = jQuery(document).height() - jQuery(&#34;#header&#34;).outerHeight() - jQuery(&#34;#footer&#34;).outerHeight() - parseInt(jQuery(&#34;#footer&#34;).css(&#34;margin-top&#34;)) - 1 - parseInt(jQuery(&#34;#main&#34;).css(&#34;padding-top&#34;))- parseInt(jQuery(&#34;#main&#34;).css(&#34;padding-bottom&#34;));&#60;/p&#62;
&#60;p&#62;		//adjust for logged in viewers&#60;br /&#62;
		if(jQuery(&#34;#wpadminbar&#34;).length){&#60;br /&#62;
			mainHeight = mainHeight - parseInt(jQuery(&#34;#wpadminbar&#34;).outerHeight());&#60;br /&#62;
		}&#60;/p&#62;
&#60;p&#62;		//height of actual #main content&#60;br /&#62;
		var mainReal = jQuery(&#34;#main&#34;).outerHeight(true);&#60;/p&#62;
&#60;p&#62;		//height of actual $main content + padding&#60;br /&#62;
		var mainPadded = (mainReal + 1 + parseInt(jQuery(&#34;#main&#34;).css(&#34;padding-top&#34;)) + parseInt(jQuery(&#34;#main&#34;).css(&#34;padding-bottom&#34;)));&#60;/p&#62;
&#60;p&#62;		//if #main is smaller than the available window space, beef up it's height&#60;br /&#62;
		if ( mainPadded &#38;lt; mainHeight) {&#60;br /&#62;
			jQuery('#main').css('min-height',mainHeight);&#60;br /&#62;
		}&#60;br /&#62;
	}&#60;br /&#62;
	jQuery(window).resize(matchHeight);&#60;br /&#62;
});&#60;/p&#62;
&#60;p&#62;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
}&#60;br /&#62;
add_action('wp_head', 'kia_sticky');&#60;br /&#62;
// End KIA Sticky Footer
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-22171</link>
<pubDate>Wed, 06 Jul 2011 12:36:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22171@http://themeshaper.com/forums/</guid>
<description>&#60;pre&#62;&#60;code&#62;//available height of window - #header and #footer
	var mainHeight = $(document).height() - $(&#38;quot;#header&#38;quot;).outerHeight() - $(&#38;quot;#leader&#38;quot;).outerHeight() - $(&#38;quot;#footer&#38;quot;).outerHeight() - parseInt($(&#38;quot;#footer&#38;quot;).css(&#38;quot;margin-top&#38;quot;)) - 1 - parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-top&#38;quot;))- parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-bottom&#38;quot;));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;note that #header is already accounted for.  #leader is from one of the thematic child themes (power blog maybe?) if you aren't using that it could probably be deleted.  this &#60;/p&#62;
&#60;p&#62;isn't supposed to absolutely stick the footer to the bottom of the screen, it is supposed to push the footer down when the content is too short, so you don't get unstyled space below the #footer.  so you should only see an effect on a short page.  i'm testing it w/ the full-width template (no sidebar) and 1 line of text in the content.
&#60;/p&#62;</description>
</item>
<item>
<title>sergiovieira on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-22170</link>
<pubDate>Wed, 06 Jul 2011 09:06:52 +0000</pubDate>
<dc:creator>sergiovieira</dc:creator>
<guid isPermaLink="false">22170@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;//available height of window - #header and #footer&#60;br /&#62;
		var mainHeight = $(document).height() - $(&#34;#header&#34;).outerHeight() - $(&#34;#leader&#34;)&#60;/p&#62;
&#60;p&#62;Where you have #leader do you mean #header?&#60;/p&#62;
&#60;p&#62;Is this supposed to work only when the page is shorter or also when the page is longer and you want to always see the footer?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-22165</link>
<pubDate>Wed, 06 Jul 2011 04:54:07 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22165@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;anybody want to help me test this?  It appears to be working for me in Chrome, FF, IE9 and via IE's dev tools &#60;em&#62;looks&#60;/em&#62; like it works back to IE7.  there is no accompanying CSS.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// KIA Sticky Footer
function kia_sticky() { ?&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

    jQuery.noConflict();

    jQuery(document).ready(function($){
        matchHeight();
	function matchHeight() {

		//available height of window - #header and #footer
		var mainHeight = $(document).height() - $(&#38;quot;#header&#38;quot;).outerHeight() - $(&#38;quot;#leader&#38;quot;).outerHeight() - $(&#38;quot;#footer&#38;quot;).outerHeight() - parseInt($(&#38;quot;#footer&#38;quot;).css(&#38;quot;margin-top&#38;quot;)) - 1 - parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-top&#38;quot;))- parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-bottom&#38;quot;));

		//adjust for logged in viewers
		if($(&#38;quot;#wpadminbar&#38;quot;).length){
			mainHeight = mainHeight - parseInt($(&#38;quot;#wpadminbar&#38;quot;).outerHeight());
		}

		//height of actual #main content
		var mainReal = $(&#38;quot;#main&#38;quot;).outerHeight(true);

		//height of actual $main content + padding
		var mainPadded = (mainReal + 1 + parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-top&#38;quot;)) + parseInt($(&#38;quot;#main&#38;quot;).css(&#38;quot;padding-bottom&#38;quot;)));

		//if #main is smaller than the available window space, beef up it&#38;#39;s height
		if ( mainPadded &#38;lt; mainHeight) {
			$(&#38;#39;#main&#38;#39;).css(&#38;#39;min-height&#38;#39;,mainHeight);
		}
	}
	$(window).resize(matchHeight);
});

&#38;lt;/script&#38;gt;

&#38;lt;?php
}
add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;kia_sticky&#38;#39;);
// End KIA Sticky Footer&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>4rederick on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-21868</link>
<pubDate>Wed, 15 Jun 2011 15:51:45 +0000</pubDate>
<dc:creator>4rederick</dc:creator>
<guid isPermaLink="false">21868@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Did we ever come up with a solution to this? I'd be mighty MIGHTY curious! Does the answer still lie in adding a function? &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://josephfrederick.com/photography&#34; rel=&#34;nofollow&#34;&#62;http://josephfrederick.com/photography&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;...Someone suggested adding an empty div between the footer div and the footer content, which I actually have (though I doubt there is a solution there).
&#60;/p&#62;</description>
</item>
<item>
<title>alex456 on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-20379</link>
<pubDate>Thu, 07 Apr 2011 23:09:43 +0000</pubDate>
<dc:creator>alex456</dc:creator>
<guid isPermaLink="false">20379@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;kingsinger, you need to try out Total Widget Control.  I think it will make working on widget placement a lot easier for you.
&#60;/p&#62;</description>
</item>
<item>
<title>louisJ on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-19947</link>
<pubDate>Wed, 23 Mar 2011 15:57:54 +0000</pubDate>
<dc:creator>louisJ</dc:creator>
<guid isPermaLink="false">19947@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The code here works better for me!&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas#post-6660&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas#post-6660&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>louisJ on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-19923</link>
<pubDate>Tue, 22 Mar 2011 20:54:43 +0000</pubDate>
<dc:creator>louisJ</dc:creator>
<guid isPermaLink="false">19923@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I am a noob, I added Chris' code in my child theme functions.php but I don't see the new area for the header widget with firebug...no header-aside appears in the code.&#60;/p&#62;
&#60;p&#62;Can somebody help me please?&#60;/p&#62;
&#60;p&#62;By the way there are a lot of 'init' functions in the wordpress directory, which one of those is hooked here?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Sticky Footer"</title>
<link>http://themeshaper.com/forums/topic/sticky-footer#post-19694</link>
<pubDate>Sun, 13 Mar 2011 16:16:15 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">19694@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;resurrecting this post to 1. say that i was a dummy and that chris's code (first one) &#60;em&#62;does&#60;/em&#62; do something.&#60;/p&#62;
&#60;p&#62;and &#60;/p&#62;
&#60;p&#62;2. it isn't quite right however as it sticks the footer to just below the viewport.  any thoughts on how to stick the footer to the bottom of the viewport?
&#60;/p&#62;</description>
</item>
<item>
<title>gino on "Adding tags around WP generated code +Mootools"</title>
<link>http://themeshaper.com/forums/topic/adding-tags-around-wp-generated-code-mootools#post-19572</link>
<pubDate>Tue, 08 Mar 2011 15:31:42 +0000</pubDate>
<dc:creator>gino</dc:creator>
<guid isPermaLink="false">19572@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Helga&#60;/p&#62;
&#60;p&#62;I have only really just started using hook and filters but &#60;a href=&#34;http://visualizing.thematic4you.com/&#34; rel=&#34;nofollow&#34;&#62;http://visualizing.thematic4you.com/&#60;/a&#62; is very useful.&#60;/p&#62;
&#60;p&#62;Cheers&#60;/p&#62;
&#60;p&#62;Gino
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding tags around WP generated code +Mootools"</title>
<link>http://themeshaper.com/forums/topic/adding-tags-around-wp-generated-code-mootools#post-19571</link>
<pubDate>Tue, 08 Mar 2011 15:24:14 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">19571@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;take a look at:&#60;br /&#62;
&#60;a href=&#34;http://visualizing.thematic4you.com/&#34; rel=&#34;nofollow&#34;&#62;http://visualizing.thematic4you.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;you can see the hooks of where you'd want to put stuff.  to wrap up #primary you'd open at thematic_abovemainasides and close at thematic_betweenmainasides
&#60;/p&#62;</description>
</item>
<item>
<title>gino on "Adding tags around WP generated code +Mootools"</title>
<link>http://themeshaper.com/forums/topic/adding-tags-around-wp-generated-code-mootools#post-19568</link>
<pubDate>Tue, 08 Mar 2011 15:12:35 +0000</pubDate>
<dc:creator>gino</dc:creator>
<guid isPermaLink="false">19568@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi guys&#60;/p&#62;
&#60;p&#62;I was wondering if anybody has fixed this.&#60;/p&#62;
&#60;p&#62;I am trying to do exactly the same thing- ie:create a div around the primary widget area but I have not cracked it yet.&#60;/p&#62;
&#60;p&#62;Hope someone has!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Gino
&#60;/p&#62;</description>
</item>
<item>
<title>benfrain.com on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-19552</link>
<pubDate>Mon, 07 Mar 2011 17:26:50 +0000</pubDate>
<dc:creator>benfrain.com</dc:creator>
<guid isPermaLink="false">19552@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;One more point - didn't spot the post by cannobbio. Anyone finding this post in the future - make sure you paste the code from his post otherwise you will suffer validation errors as the first post is missing the code to make closing and tags. Here is the working code again:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// This will create your widget area
function my_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;my_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);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>benfrain.com on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-19361</link>
<pubDate>Thu, 24 Feb 2011 21:47:25 +0000</pubDate>
<dc:creator>benfrain.com</dc:creator>
<guid isPermaLink="false">19361@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Aha - managed to suss it. This hook thing is pretty impressive. Any future readers who need the answer...&#60;/p&#62;
&#60;p&#62;To create this widget area (#header-aside) as the first div within #header and therefore above the logo area etc&#60;/p&#62;
&#60;p&#62;Just amend the code Chris used on the first page of the thread and change the hook number from '8' to '1' - Amazing stuff. Thanks for this great resource people - I'm learning loads! &#60;/p&#62;
&#60;p&#62;// This will create your widget area&#60;br /&#62;
function my_widgets_init() {&#60;br /&#62;
    register_sidebar(array(&#60;br /&#62;
       	'name' =&#38;gt; 'Header Aside',&#60;br /&#62;
       	'id' =&#38;gt; 'header-aside',&#60;br /&#62;
       	'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widgetcontainer %2$s&#34;&#38;gt;',&#60;br /&#62;
       	'after_widget' =&#38;gt; &#34;&#34;,&#60;br /&#62;
		'before_title' =&#38;gt; &#34;&#38;lt;h3 class=\&#34;widgettitle\&#34;&#38;gt;&#34;,&#60;br /&#62;
		'after_title' =&#38;gt; &#34;&#38;lt;/h3&#38;gt;\n&#34;,&#60;br /&#62;
    ));&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
add_action( 'init', 'my_widgets_init' );&#60;/p&#62;
&#60;p&#62;// adding the widget area to your child theme&#60;br /&#62;
function my_header_widgets() {&#60;br /&#62;
if ( function_exists('dynamic_sidebar') &#38;#38;&#38;#38; is_sidebar_active('header-aside') ) {&#60;br /&#62;
    echo '&#38;lt;div id=&#34;header-aside&#34; class=&#34;aside&#34;&#38;gt;'. &#34;\n&#34; . '&#38;lt;ul class=&#34;xoxo&#34;&#38;gt;' . &#34;\n&#34;;&#60;br /&#62;
    dynamic_sidebar('header-aside');&#60;br /&#62;
    echo '' . &#34;\n&#34; . '&#38;lt;/div&#38;gt;&#38;lt;!-- #header-aside .aside --&#38;gt;'. &#34;\n&#34;;&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_header', 'my_header_widgets', 8);
&#60;/p&#62;</description>
</item>
<item>
<title>benfrain.com on "widgets in the header"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-the-header/page/3#post-19354</link>
<pubDate>Thu, 24 Feb 2011 16:44:45 +0000</pubDate>
<dc:creator>benfrain.com</dc:creator>
<guid isPermaLink="false">19354@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry to drag up an old thread but can someone enlighten me...&#60;/p&#62;
&#60;p&#62;I'd like my #header-aside DIV to be BEFORE my #branding DIV (as I'm going for a full length banner across the top of my site). How do I do this?&#60;/p&#62;
&#60;p&#62;More specifically, what do I need to change in Chris's code to swap up the order. Spent a few hours banging my head against the table - someone please point me to the light!&#60;/p&#62;
&#60;p&#62;Thanks - Ben
&#60;/p&#62;</description>
</item>
<item>
<title>acvessen on "Cutting off or resizing images in 0.9.7.7?"</title>
<link>http://themeshaper.com/forums/topic/cutting-off-or-resizing-images-in-0977#post-19340</link>
<pubDate>Wed, 23 Feb 2011 22:45:17 +0000</pubDate>
<dc:creator>acvessen</dc:creator>
<guid isPermaLink="false">19340@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello em hr, edelen and Dave&#60;/p&#62;
&#60;p&#62;The images in my website are being stretched to a larger size for some reason too and its driving me crazy because I can’t find out why, except for that it is a “browser thing” because (as Dave mentioned) it doesn’t happen in Safari or Chrome. &#60;/p&#62;
&#60;p&#62;This happens on pages where a list of thumbnails are shown (http://www.beesknees.nl/portfolio/) AND on pages where the image is displayed in full size (http://www.beesknees.nl/2009/07/10/digimeente-application-govunited/). &#60;/p&#62;
&#60;p&#62;I’m using a child theme of thematic and had already deleted the “auto” from the height of .entry-content. The plugins I use on some of these pages (Portfolio Slideshow or Post Page Associator) have nothing to do with the problem, it happens to images on pages where these are not used (and I have already pestered the developers about this problem before I realized this).&#60;/p&#62;
&#60;p&#62;Can anyone help? Thanks, Colette
&#60;/p&#62;</description>
</item>
<item>
<title>Dave on "Cutting off or resizing images in 0.9.7.7?"</title>
<link>http://themeshaper.com/forums/topic/cutting-off-or-resizing-images-in-0977#post-19133</link>
<pubDate>Sat, 12 Feb 2011 10:18:14 +0000</pubDate>
<dc:creator>Dave</dc:creator>
<guid isPermaLink="false">19133@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello em hr and edelen&#60;/p&#62;
&#60;p&#62;I am interested to know if you resolved your image handling issues within thematic. I am experiencing similar problems of failed image scaling, aspect ratio preservation, tables with images within not scaling to page content area and so forth.&#60;/p&#62;
&#60;p&#62;In my instance, it seems to be confined to when images are contained within tables and div's and viewed on IE and Firefox. &#60;/p&#62;
&#60;p&#62;Displays perfectly on Safari and Chrome browsers.&#60;/p&#62;
&#60;p&#62;Is this only addressable via implementation of a child theme filtering or is there a more elegant fix?&#60;/p&#62;
&#60;p&#62;Thank you for any insight on this. &#60;/p&#62;
&#60;p&#62;Regards, Dave
&#60;/p&#62;</description>
</item>

</channel>
</rss>
