<?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 Topic: Unable to style added subsidiaries in footer</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 01:23:12 +0000</pubDate>

<item>
<title>em hr on "Unable to style added subsidiaries in footer"</title>
<link>http://themeshaper.com/forums/topic/unable-to-style-added-subsidiaries-in-footer#post-27734</link>
<pubDate>Sat, 15 Dec 2012 18:09:00 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">27734@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Please &#60;a href=&#34;http://themeshaper.com/forums/topic/please-read-this-before-adding-new-topics-thematic-has-moved&#34;&#62; read this&#60;/a&#62; and come to then new &#60;a href=&#34;http://thematictheme.com/forums/&#34;&#62;ThematicTheme Forums&#60;/a&#62; for support.
&#60;/p&#62;</description>
</item>
<item>
<title>PitaMaria on "Unable to style added subsidiaries in footer"</title>
<link>http://themeshaper.com/forums/topic/unable-to-style-added-subsidiaries-in-footer#post-27676</link>
<pubDate>Mon, 19 Nov 2012 00:17:21 +0000</pubDate>
<dc:creator>PitaMaria</dc:creator>
<guid isPermaLink="false">27676@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;On my testing page at &#60;a href=&#34;http://andycampbellcreative.com/Watermark/&#34; rel=&#34;nofollow&#34;&#62;http://andycampbellcreative.com/Watermark/&#60;/a&#62; I've successfully added two new widgetized areas to my footer #subsidiary via the code below. Problem is, any new styling I specify in my CSS is being ignored, and I suspect it's because of a problem with how this code defines my two new divs #4th-subsidiary-aside and #5th-subsidiary-aside ...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Adding 4th and 5th subsidiary widgetized areas to the footer
function add_4th_subsidiary_aside($content) {
    $content[&#38;#39;4th Subsidiary Aside&#38;#39;] = array(
        &#38;#39;admin_menu_order&#38;#39; =&#38;gt; 510,
		&#38;#39;args&#38;#39; =&#38;gt; array (
			&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;4th Subsidiary Aside&#38;#39;,
			&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;4th-subsidiary-aside&#38;#39;,
            &#38;#39;description&#38;#39; =&#38;gt; __(&#38;#39;The 4th widget area in the footer.&#38;#39;, &#38;#39;thematic&#38;#39;),
			&#38;#39;before_widget&#38;#39; =&#38;gt; thematic_before_widget(),
			&#38;#39;after_widget&#38;#39; =&#38;gt; thematic_after_widget(),
			&#38;#39;before_title&#38;#39; =&#38;gt; thematic_before_title(),
			&#38;#39;after_title&#38;#39; =&#38;gt; thematic_after_title(),
		),
		&#38;#39;action_hook&#38;#39;	=&#38;gt; &#38;#39;widget_area_subsidiaries&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;thematic_4th_subsidiary_aside&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 75,
    );
    return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;add_4th_subsidiary_aside&#38;#39;);

// Define the 4th Subsidiary Aside
function thematic_4th_subsidiary_aside() {
	if (is_active_sidebar(&#38;#39;4th-subsidiary-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;4th-subsidiary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;4th-subsidiary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;4th-subsidiary-aside&#38;#39;);
	}
}
function add_5th_subsidiary_aside($content) {
    $content[&#38;#39;5th Subsidiary Aside&#38;#39;] = array(
        &#38;#39;admin_menu_order&#38;#39; =&#38;gt; 520,
		&#38;#39;args&#38;#39; =&#38;gt; array (
			&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;5th Subsidiary Aside&#38;#39;,
			&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;5th-subsidiary-aside&#38;#39;,
            &#38;#39;description&#38;#39; =&#38;gt; __(&#38;#39;The 5th widget area in the footer.&#38;#39;, &#38;#39;thematic&#38;#39;),
			&#38;#39;before_widget&#38;#39; =&#38;gt; thematic_before_widget(),
			&#38;#39;after_widget&#38;#39; =&#38;gt; thematic_after_widget(),
			&#38;#39;before_title&#38;#39; =&#38;gt; thematic_before_title(),
			&#38;#39;after_title&#38;#39; =&#38;gt; thematic_after_title(),
		),
		&#38;#39;action_hook&#38;#39;	=&#38;gt; &#38;#39;widget_area_subsidiaries&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;thematic_5th_subsidiary_aside&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 79,
    );
    return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;add_5th_subsidiary_aside&#38;#39;);

// Define the 5th Subsidiary Aside
function thematic_5th_subsidiary_aside() {
	if (is_active_sidebar(&#38;#39;5th-subsidiary-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;5th-subsidiary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;5th-subsidiary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;5th-subsidiary-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;No matter what styling I add to #4th-subsidiary-aside or #5th-subsidiary-aside nothing sticks. I've read everything I can find on the mater here in the forums (i.e. &#60;a href=&#34;http://themeshaper.com/forums/topic/how-can-i-add-multiple-subsidiaries,&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-can-i-add-multiple-subsidiaries,&#60;/a&#62; &#60;a href=&#34;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas&#60;/a&#62; and &#60;a href=&#34;http://themeshaper.com/forums/topic/can-i-make-a-5-column-subsidiary-widget&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/can-i-make-a-5-column-subsidiary-widget&#60;/a&#62;) but couldn't resolve my issue(s). Any help you fine folks could give me would be greatly appreciated. Thanks in advance.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
