<?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 Tag: widget area</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 21:54:15 +0000</pubDate>

<item>
<title>helgatheviking on "Add new widget area"</title>
<link>http://themeshaper.com/forums/topic/add-new-widget-area#post-27522</link>
<pubDate>Fri, 03 Aug 2012 23:20:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">27522@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thematic has moved: &#60;a href=&#34;http://thematictheme.com/&#34; rel=&#34;nofollow&#34;&#62;http://thematictheme.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>fosstux on "Add new widget area"</title>
<link>http://themeshaper.com/forums/topic/add-new-widget-area#post-27510</link>
<pubDate>Wed, 18 Jul 2012 12:17:21 +0000</pubDate>
<dc:creator>fosstux</dc:creator>
<guid isPermaLink="false">27510@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I'm really new to thematic, so bear with me:&#60;/p&#62;
&#60;p&#62;I'd like to add an extra widget area inside the mail div and before the container div. I'd like to add header images there.&#60;/p&#62;
&#60;p&#62;But how can I do this?&#60;/p&#62;
&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;Christopher
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Widget Area Placement....again"</title>
<link>http://themeshaper.com/forums/topic/widget-area-placementagain#post-24639</link>
<pubDate>Wed, 04 Jan 2012 21:44:03 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24639@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Talking to myself (I do that a lot)..&#60;/p&#62;
&#60;p&#62;OK, so I simply &#34;did it the wordpress way&#34; and rather than use the add_left_sidebar function above, I simple changed to:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
'before_widget' =&#38;gt; '&#38;lt;div id=&#34;left_sidebar&#34;&#38;gt;' ,&#60;br /&#62;
'after_widget' =&#38;gt; '&#38;lt;/div&#38;gt;' ,&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then used dynamic_sidebar('left-sidebar'); in my custom style hook function.&#60;/p&#62;
&#60;p&#62;Book it, Danno.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Widget Area Placement....again"</title>
<link>http://themeshaper.com/forums/topic/widget-area-placementagain#post-24636</link>
<pubDate>Wed, 04 Jan 2012 20:45:27 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24636@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK, so I create a working widget area thusly:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
//register sidebar widget&#60;br /&#62;
function left_sidebar( ) {&#60;br /&#62;
register_sidebar (array (&#60;br /&#62;
'name' =&#38;gt; 'Left Sidebar',&#60;br /&#62;
'id' =&#38;gt; 'left-sidebar',&#60;br /&#62;
'description' =&#38;gt; __( 'A widget area in left sidebar', 'thematic'),&#60;br /&#62;
'before_widget' =&#38;gt; thematic_before_widget( ) ,&#60;br /&#62;
'after_widget' =&#38;gt; thematic_after_widget( ) ,&#60;br /&#62;
'before_title' =&#38;gt; thematic_before_title( ) ,&#60;br /&#62;
'after_title' =&#38;gt; thematic_after_title( ) )&#60;br /&#62;
) ;&#60;br /&#62;
}&#60;br /&#62;
add_action('init', 'left_sidebar') ;&#60;/p&#62;
&#60;p&#62;//add Left Sidebar area&#60;br /&#62;
function add_left_sidebar( ) {&#60;br /&#62;
if (is_sidebar_active('left-sidebar')) {&#60;br /&#62;
       echo thematic_before_widget_area('left-sidebar');&#60;br /&#62;
       dynamic_sidebar('left-sidebar');&#60;br /&#62;
       echo thematic_after_widget_area('left-sidebar');&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_abovecontent', 'add_left_sidebar');&#60;br /&#62;
&#60;/code&#62;&#60;code&#62;&#60;/p&#62;
&#60;p&#62;That's fine and dandy and works like a charm, however, instead of Thematic placing it in a pre-determined widget area,  I want to place it in a custom action hook - something like get_sidebar('add_left-sidebar'); &#60;/p&#62;
&#60;p&#62;Placing dynamic_sidebar('left-sidebar'); in the hook sorta works, but I don't think that's right.&#60;/p&#62;
&#60;p&#62;Thanks again and sorry to be such a pest.&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24313</link>
<pubDate>Thu, 15 Dec 2011 02:25:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24313@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it's bloated b/c you don't need 2 functions to hook into thematic_abovemainasides.  if you need 2 divs, just put them both in one function.
&#60;/p&#62;</description>
</item>
<item>
<title>Gigi on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24312</link>
<pubDate>Thu, 15 Dec 2011 02:22:01 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">24312@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well I found a way but I'm not sure if it's bloated or not.  This is what I have:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// ADD DIV ABOVE AND BELOW PRIMARY ASIDE STARTS HERE

// Begin div ABOVE primary aside
function start_aside_top() { ?&#38;gt;

&#38;lt;!-- aside wrap starts here --&#38;gt;
&#38;lt;div id=&#38;quot;aside-wrap-top&#38;quot;&#38;gt;

&#38;lt;?php } // end of our new function start_aside_top

// Add starting div to above primary aside
add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;start_aside_top&#38;#39;);

// Begin closing div to above primary aside
function end_aside_top() { ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;!-- aside wrap ends here --&#38;gt;

&#38;lt;?php } // end of our new function end_aside_top

add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;end_aside_top&#38;#39;); 

// Begin div BELOW primary aside
function start_aside_bottom() { ?&#38;gt;

&#38;lt;!-- aside wrap starts here --&#38;gt;
&#38;lt;div id=&#38;quot;aside-wrap-bottom&#38;quot;&#38;gt;

&#38;lt;?php } // end of our new function start_aside_bottom

// Add starting div
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;start_aside_bottom&#38;#39;);

// Begin closing div
function end_aside_bottom() { ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;!-- aside wrap ends here --&#38;gt;

&#38;lt;?php } // end of our new function end_aside_bottom

// Add closing div
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;end_aside_bottom&#38;#39;); 

// ADD DIV ABOVE AND BELOW PRIMARY ASIDE ENDS HERE&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Gigi on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-24310</link>
<pubDate>Thu, 15 Dec 2011 00:16:28 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">24310@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Is there any way to see the code for Helga's suggestion: &#34;open the div on the thematic_abovemainasides hook and close the div on the thematic_betweenmainasides hook.&#34; I tried a couple of ways but came up empty handed...
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23924</link>
<pubDate>Thu, 24 Nov 2011 03:44:32 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23924@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;As far as I can tell, yes.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23923</link>
<pubDate>Thu, 24 Nov 2011 02:17:05 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23923@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;good point.  you might not need to filter anything.  does the overflow:hidden trick work on all browsers?
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23922</link>
<pubDate>Thu, 24 Nov 2011 01:46:08 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23922@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;While researching the micro clear fix hack I found a comment on &#60;a href=&#34;http://css-tricks.com/snippets/css/clear-fix/&#34;&#62;css-tricks.com&#60;/a&#62; that I also found useful.  With the above method of filtering the widget area the div cleared the list items.  With the use of overflow:hidden in the css for the ul of the widget this will fix it also.
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23921</link>
<pubDate>Thu, 24 Nov 2011 00:51:06 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23921@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;That works splendidly!  Thank you so much! =)
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23917</link>
<pubDate>Wed, 23 Nov 2011 18:29:49 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23917@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am at work now,(procrastinating just like you!) So I will give this a go when I get home tonight and mark this resolved or pick your brain a little harder.  Thanks a million for your time!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23916</link>
<pubDate>Wed, 23 Nov 2011 18:12:47 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23916@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you just happened to catch me when i am intentionally trying to procrastinate.  ;)&#60;/p&#62;
&#60;p&#62;so i am going to guess that you are floating the widgets inside the widget area and need to clear those floats in which case i'd probably go w/ a clearfix versus adding markup since i find adding markup is inelegant.  ;) &#60;/p&#62;
&#60;p&#62;in this thread you will see how to filter the class name of a widget area&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-rename-widget-area-classes#post-11326&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-rename-widget-area-classes#post-11326&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;so:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;thematic_before_widget_area&#38;#39;, &#38;#39;kia_pagetop_class&#38;#39;);

function kia_pagetop_class($content) {
	$kia_class = str_replace(&#38;#39;page-top&#38;quot; class=&#38;quot;aside&#38;#39;, &#38;#39;page-top&#38;quot; class=&#38;quot;aside cf&#38;#39;, $content);
	return $kia_class;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then in your stylesheet&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* &#60;a href=&#34;http://nicolasgallagher.com/micro-clearfix-hack/&#34; rel=&#34;nofollow&#34;&#62;http://nicolasgallagher.com/micro-clearfix-hack/&#60;/a&#62; */
/* For modern browsers */
.cf:before,
.cf:after {
    content:&#38;quot;&#38;quot;;
    display:table;
}

.cf:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i've also used the perishable press method w/ great success:&#60;br /&#62;
&#60;a href=&#34;http://perishablepress.com/press/2009/12/06/new-clearfix-hack/&#34; rel=&#34;nofollow&#34;&#62;http://perishablepress.com/press/2009/12/06/new-clearfix-hack/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;if that doesn't do what you want then i'll try to actually add the extra div
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23915</link>
<pubDate>Wed, 23 Nov 2011 17:45:59 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23915@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;From what I could tell this is what I need to be looking for for closing the widget areas (widgets-extensions.php):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function thematic_after_widget_area($hook) {
	$content = &#38;quot;\n&#38;quot; . &#38;quot;\t&#38;quot; . &#38;#39;&#38;lt;/ul&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	if ($hook == &#38;#39;primary-aside&#38;#39;) {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #primary .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	} elseif ($hook == &#38;#39;secondary-aside&#38;#39;) {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #secondary .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	} elseif ($hook == &#38;#39;1st-subsidiary-aside&#38;#39;) {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #first .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	} elseif ($hook == &#38;#39;2nd-subsidiary-aside&#38;#39;) {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #second .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	} elseif ($hook == &#38;#39;3rd-subsidiary-aside&#38;#39;) {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #third .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	} else {
		$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #&#38;#39; . $hook . &#38;#39; .aside --&#38;gt;&#38;#39; .&#38;quot;\n&#38;quot;;
	}
	return apply_filters(&#38;#39;thematic_after_widget_area&#38;#39;, $content);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I would like to add &#60;code&#62;&#38;lt;div class=&#38;quot;clear&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62; right before the &#60;code&#62;&#38;lt;/ul&#38;gt;&#60;/code&#62;, and like I said I would like to be able to only apply this to the page-top widget area.
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23914</link>
<pubDate>Wed, 23 Nov 2011 17:31:50 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23914@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you for the quick response! After all the reading that I have done I figured if helgatheviking responded I would be on my way to figuring this out. I have read your primer and found it very helpful, just not connecting the dots of how to use it for any given condition.&#60;/p&#62;
&#60;p&#62;What I am doing is moving the page-top widget to above_container and to create a full width widget area to float 3 (or 4 etc.) list items in.  I have been able to do all of that except add a clear inside the unordered list. I was hoping this would be an easier fix than creating a new widget area, but a few hours later and I am starting to second guess that.&#60;/p&#62;
&#60;p&#62;Should I not be trying to additional markup to things, even if my child theme?  I have added a class of container to the wrapper with the thought of implementing the 960 system as that is what the HTML mock up that I am basing my child theme on.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23912</link>
<pubDate>Wed, 23 Nov 2011 17:20:28 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23912@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;can i ask why?  strikes me that there is probably another way to do whatever it is you are trying to do that doesn't involve adding additional markup&#60;/p&#62;
&#60;p&#62;also since thematic_after_widget_area &#34;returns&#34; something.... that's usually a tip off that you need to filter something.  &#60;/p&#62;
&#60;p&#62;read up on filters w/ my &#34;primer&#34;&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>amish1 on "Adding to thematic_after_widget_area content"</title>
<link>http://themeshaper.com/forums/topic/adding-to-below_widget-_area-content#post-23910</link>
<pubDate>Wed, 23 Nov 2011 16:32:44 +0000</pubDate>
<dc:creator>amish1</dc:creator>
<guid isPermaLink="false">23910@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have searched this forum high and low, and though I have learned TONS there are still a few things that I am not getting.  I think if someone can answer my question it should tie together everything that I have done so far.  I have been able to move things to other hooks, and I have also modified my #wrapper div to also contain a custom class.  What I am trying to do now is add '&#38;lt;div class=&#34;clear&#34;&#38;gt;&#38;lt;/div&#38;gt;' before closing the UL in the widget areas (thematic_after_widget_area).  I have found the function but I am having trouble making it out what I need because the function uses return instead of echo (which differs from the tuts that I have found on here.)  Also is there any way to add this to the after_widget_area of only one widget area (page-top).  I apologize if my question has been answered or this is remedial, but I am seeing the benefits of thematic and I am hoping, like I said, that this ties it all together.  Thanks in advance for any assistance.
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21556</link>
<pubDate>Mon, 30 May 2011 19:07:42 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">21556@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Perfect. Loving the ease of this framework. Thank you kindly. Take care...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21555</link>
<pubDate>Mon, 30 May 2011 18:12:01 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">21555@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;open the div on the thematic_abovemainasides hook and close the div on the thematic_betweenmainasides hook.
&#60;/p&#62;</description>
</item>
<item>
<title>optimus203 on "Wrap #primary in a new Div"</title>
<link>http://themeshaper.com/forums/topic/wrap-primary-in-a-new-div#post-21554</link>
<pubDate>Mon, 30 May 2011 17:58:00 +0000</pubDate>
<dc:creator>optimus203</dc:creator>
<guid isPermaLink="false">21554@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey everyone. I'm new to Thematic and PHP, and hoping to get some help on this small issue. I'm trying to wrap the #primary widget div in a new div. Can anyone provide the proper function to help make this happen? Any help would be greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>him on "Best method to add content above MAIN"</title>
<link>http://themeshaper.com/forums/topic/best-method-to-add-content-above-main#post-15235</link>
<pubDate>Tue, 31 Aug 2010 08:40:00 +0000</pubDate>
<dc:creator>him</dc:creator>
<guid isPermaLink="false">15235@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Got it done, thanks to 'Seijun' via his post -&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/widgets-in-below_header#post-9882&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/widgets-in-below_header#post-9882&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;and TS Custom widgets plugin did the rest!
&#60;/p&#62;</description>
</item>
<item>
<title>him on "Best method to add content above MAIN"</title>
<link>http://themeshaper.com/forums/topic/best-method-to-add-content-above-main#post-15234</link>
<pubDate>Tue, 31 Aug 2010 08:36:13 +0000</pubDate>
<dc:creator>him</dc:creator>
<guid isPermaLink="false">15234@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Got it done, thanks to 'Seijun' via his post -&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/widgets-in-below_header#post-9882&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/widgets-in-below_header#post-9882&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;and TS Custom widgets plugin did the rest!
&#60;/p&#62;</description>
</item>
<item>
<title>him on "Best method to add content above MAIN"</title>
<link>http://themeshaper.com/forums/topic/best-method-to-add-content-above-main#post-15233</link>
<pubDate>Tue, 31 Aug 2010 07:50:27 +0000</pubDate>
<dc:creator>him</dc:creator>
<guid isPermaLink="false">15233@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@tarpontech - custom page templates isn't working.&#60;/p&#62;
&#60;p&#62;Below header is one way that might work, but i don't know how to write a function for it.
&#60;/p&#62;</description>
</item>
<item>
<title>tarpontech on "Best method to add content above MAIN"</title>
<link>http://themeshaper.com/forums/topic/best-method-to-add-content-above-main#post-15213</link>
<pubDate>Mon, 30 Aug 2010 16:06:15 +0000</pubDate>
<dc:creator>tarpontech</dc:creator>
<guid isPermaLink="false">15213@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;option 2 via conditional tags seems to be the better choice imo.  Its either that or custom page templates.
&#60;/p&#62;</description>
</item>
<item>
<title>him on "Best method to add content above MAIN"</title>
<link>http://themeshaper.com/forums/topic/best-method-to-add-content-above-main#post-15210</link>
<pubDate>Mon, 30 Aug 2010 12:16:31 +0000</pubDate>
<dc:creator>him</dc:creator>
<guid isPermaLink="false">15210@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;On a new project, Im using a custom template for a static home page. And I have 8 section pages using another custom template. And the rest of the pages are styled normally. &#60;/p&#62;
&#60;p&#62;I want to add a full-width content box above MAIN, or the first thing in MAIN. I know it can be done in several ways:&#60;/p&#62;
&#60;p&#62;- calling below_header&#60;br /&#62;
- Page top&#60;/p&#62;
&#60;p&#62;But I want to use different content in all the 8 section pages, on this location. And it has to be shown above the YOAST breadcrumbs that im using. And yoast uses the below_header action.&#60;/p&#62;
&#60;p&#62;So is the best way to do it via &#60;/p&#62;
&#60;p&#62;- controlling it in the css?&#60;br /&#62;
- calling below header and then controlling which content is called on each of 8 pages?&#60;br /&#62;
- or is there another way?
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Removing asides"</title>
<link>http://themeshaper.com/forums/topic/removing-asides#post-15156</link>
<pubDate>Fri, 27 Aug 2010 18:13:30 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15156@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;silent ones i hope
&#60;/p&#62;</description>
</item>
<item>
<title>rscamero92 on "Removing asides"</title>
<link>http://themeshaper.com/forums/topic/removing-asides#post-15154</link>
<pubDate>Fri, 27 Aug 2010 18:11:37 +0000</pubDate>
<dc:creator>rscamero92</dc:creator>
<guid isPermaLink="false">15154@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yeah I seem to be having allot of brain farts lately lol ;)
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Removing asides"</title>
<link>http://themeshaper.com/forums/topic/removing-asides#post-15153</link>
<pubDate>Fri, 27 Aug 2010 18:08:28 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15153@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;brain fart lols
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Removing asides"</title>
<link>http://themeshaper.com/forums/topic/removing-asides#post-15152</link>
<pubDate>Fri, 27 Aug 2010 18:08:17 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15152@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;glad you found a solution. if you get time, mark this post as resolved
&#60;/p&#62;</description>
</item>
<item>
<title>rscamero92 on "Removing asides"</title>
<link>http://themeshaper.com/forums/topic/removing-asides#post-15145</link>
<pubDate>Fri, 27 Aug 2010 16:12:51 +0000</pubDate>
<dc:creator>rscamero92</dc:creator>
<guid isPermaLink="false">15145@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Nevermind I found the code I needed.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
