<?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: New Widget area gone in ie6, under</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 18:34:27 +0000</pubDate>

<item>
<title>Seijun on "New Widget area gone in ie6, under"</title>
<link>http://themeshaper.com/forums/topic/new-widget-area-gone-in-ie6-under#post-11287</link>
<pubDate>Thu, 08 Apr 2010 06:44:31 +0000</pubDate>
<dc:creator>Seijun</dc:creator>
<guid isPermaLink="false">11287@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It turns out that in ie6 and under if an element with absolute positioning is side-by-side with a floated element, the one with AP can sometimes vanish. To solve this something needs to be placed between the two or around one to make a &#34;buffer&#34;. In this case, I just moved the header-aside AP style over to the widget IN my header aside (I only use it for one widget).
&#60;/p&#62;</description>
</item>
<item>
<title>Seijun on "New Widget area gone in ie6, under"</title>
<link>http://themeshaper.com/forums/topic/new-widget-area-gone-in-ie6-under#post-11274</link>
<pubDate>Wed, 07 Apr 2010 23:12:48 +0000</pubDate>
<dc:creator>Seijun</dc:creator>
<guid isPermaLink="false">11274@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I added a new widget area with this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// This will create your header-aside widget area
function add_header_aside($content) {
	$content[&#38;#39;Header Aside&#38;#39;] = array(
		&#38;#39;args&#38;#39; =&#38;gt; 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; 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;thematic_abovemainasides&#38;#39;,
		&#38;#39;function&#38;#39;		=&#38;gt; &#38;#39;thematic_header_aside&#38;#39;,
		&#38;#39;priority&#38;#39;		=&#38;gt; 8,
	);
	return $content;
}
add_filter(&#38;#39;thematic_widgetized_areas&#38;#39;, &#38;#39;add_header_aside&#38;#39;);

// And this is our new function that displays the widgetized area
function thematic_header_aside() {
	if (is_sidebar_active(&#38;#39;header-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;header-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;header-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;header-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and styled with this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#header-aside{
 position:absolute;
 top:19px;
 right:18px;
 text-align:right;
 }

#header-aside .widget_text h3{font-size:12px;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In ie6 and under, the widget area is gone. It's still there in the source code, but not on the page.&#60;br /&#62;
Website is &#60;a href=&#34;http://wolfdogrescue.net/adoption/all-available/&#34; rel=&#34;nofollow&#34;&#62;http://wolfdogrescue.net/adoption/all-available/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
