<?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: Add div inside #main</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 08:42:22 +0000</pubDate>

<item>
<title>Iceman on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15904</link>
<pubDate>Thu, 30 Sep 2010 02:40:57 +0000</pubDate>
<dc:creator>Iceman</dc:creator>
<guid isPermaLink="false">15904@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry, when i said &#34;not working&#34; really it means &#34;working not properly&#34;. Using my code, the newdivtwo don't appear and mess up all the page (styles, positions...)&#60;br /&#62;
I'll try this and soon leave the answer, thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15899</link>
<pubDate>Wed, 29 Sep 2010 18:14:07 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15899@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if that is exactly the code that you are using then you aren't closing your divs properly and WP could be messing that up.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function newdiv() {
echo &#38;quot;&#38;lt;div id=&#38;#39;maintopper&#38;#39;&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;
}
add_action(&#38;#39;thematic_abovecontainer&#38;#39;,&#38;#39;newdiv&#38;#39;);

function newdivtwo() {
echo &#38;quot;&#38;lt;div id=&#38;#39;mainbase&#38;#39;&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;
}
add_action(&#38;#39;thematic_belowcontainer&#38;#39;,&#38;#39;newdivtwo&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or i dont think you are doing this but if you want to wrap everything inside of #main in another div you'd do&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function newdiv() {
echo &#38;quot;&#38;lt;div id=&#38;#39;main-inside&#38;#39;&#38;gt;&#38;quot;;
}
add_action(&#38;#39;thematic_abovecontainer&#38;#39;,&#38;#39;newdiv&#38;#39;);

function newdivtwo() {
echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
}
add_action(&#38;#39;thematic_belowcontainer&#38;#39;,&#38;#39;newdivtwo&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15898</link>
<pubDate>Wed, 29 Sep 2010 16:54:59 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15898@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;may be a float issue with the exisiting content area and sidebar.&#60;br /&#62;
have you tried clearing floats for the belowcontainer div
&#60;/p&#62;</description>
</item>
<item>
<title>Iceman on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15882</link>
<pubDate>Tue, 28 Sep 2010 21:12:54 +0000</pubDate>
<dc:creator>Iceman</dc:creator>
<guid isPermaLink="false">15882@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Oh yeah? Well, i'll try i little more, first attempt didn't worked... It was:&#60;br /&#62;
To insert my div above (works fine)&#60;code&#62;&#60;br /&#62;
function newdiv() {&#60;br /&#62;
	echo &#34;&#38;lt;div id='maintopper'&#38;gt;&#34;;&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_abovecontainer','newdiv');&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;so, to put the div below, tried (not working)&#60;br /&#62;
&#60;code&#62;function newdivtwo() {&#60;br /&#62;
	echo &#34;&#38;lt;div id='mainbase'&#38;gt;&#34;;&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_belowcontainer','newdivtwo');&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15881</link>
<pubDate>Tue, 28 Sep 2010 21:04:37 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15881@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;there is a &#34;belowcontainer&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>Iceman on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15880</link>
<pubDate>Tue, 28 Sep 2010 20:22:36 +0000</pubDate>
<dc:creator>Iceman</dc:creator>
<guid isPermaLink="false">15880@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Unfortunately, there's no &#34;belowcontainer&#34;. Something i could do similar to this?
&#60;/p&#62;</description>
</item>
<item>
<title>Iceman on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15879</link>
<pubDate>Tue, 28 Sep 2010 20:12:20 +0000</pubDate>
<dc:creator>Iceman</dc:creator>
<guid isPermaLink="false">15879@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Haha, works perfectly! I thought that &#34;abovecontainer&#34; could put the div above the main one, and not inside it, so i don't tried haha&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15878</link>
<pubDate>Tue, 28 Sep 2010 19:40:25 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15878@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;try abovecontainer
&#60;/p&#62;</description>
</item>
<item>
<title>Iceman on "Add div inside #main"</title>
<link>http://themeshaper.com/forums/topic/add-div-inside-main#post-15877</link>
<pubDate>Tue, 28 Sep 2010 18:13:16 +0000</pubDate>
<dc:creator>Iceman</dc:creator>
<guid isPermaLink="false">15877@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, sorry... one more question!&#60;br /&#62;
How can i put a new div INSIDE the main? i'm trying to create a background effect with  superposition of images... maybe with a clean div bringing my png image over the original main, that shows the base image... anyway, i don't want to use the belowheader.&#60;br /&#62;
Thanks a lot.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
