<?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: How can I get content/an element/image/etc. OUTSIDE of #content div?</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 27 May 2013 02:54:33 +0000</pubDate>

<item>
<title>Greenbear on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26743</link>
<pubDate>Wed, 02 May 2012 02:08:31 +0000</pubDate>
<dc:creator>Greenbear</dc:creator>
<guid isPermaLink="false">26743@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ahh...ok.  Good to know.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26707</link>
<pubDate>Sun, 29 Apr 2012 19:16:24 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26707@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;no, the OP wanted to display the date outside of the #content div.  and when you picked up the thread you wanted to similarly display something outside of the #content div.  i showed how to move the markup outside of #content instead of trying to bootleg is with CSS absolute positioning or negative margins or overflow.
&#60;/p&#62;</description>
</item>
<item>
<title>Greenbear on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26706</link>
<pubDate>Sun, 29 Apr 2012 17:51:18 +0000</pubDate>
<dc:creator>Greenbear</dc:creator>
<guid isPermaLink="false">26706@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Helga, but I think you have posted a reply to a different thread?  Or am I missing something?&#60;/p&#62;
&#60;p&#62;A follow up to my follow up...a quick note on the bottom of the #content, it can come up short if there are any floating divs that would normally be caught by the overflow...simply add a div at the bottom with a clear:both to draw the #content down.  A side effect of WP is that when blank divs are entered into the html they get lost if switched to visual...simply place a . between the clearing div tags and style the color the same as your background and it holds when in visual mode (mostly for clients who are more WYSIWYG oriented).
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26519</link>
<pubDate>Sat, 21 Apr 2012 18:03:34 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26519@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;so i was mistaken a year ago (must've been a newb back then).  you need to add the date to the thematic_abovecontent hook like so:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function kia_add_date(){
	if(!is_single()) return;
	echo thematic_postmeta_entrydate();
}
add_action(&#38;#39;thematic_abovecontent&#38;#39;,&#38;#39;kia_add_date&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i made the assumption that this was only going to happen on single posts.  then i presume you'll want to remove the date from its default position which you can achieve like so:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_remove_date($postmeta) {

	if(!is_single()) return $postmeta;

	ob_start(); ?&#38;gt;

	&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;
		&#38;lt;?php echo thematic_postmeta_authorlink(); ?&#38;gt;
		&#38;lt;?php echo thematic_postmeta_editlink();?&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-meta --&#38;gt;

	&#38;lt;?php
	$postmeta = ob_get_contents();
	ob_end_clean();
	return $postmeta;
}
add_filter(&#38;#39;thematic_postheader_postmeta&#38;#39;,&#38;#39;kia_remove_date&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;now that the markup has been rearranged it should be super simple to style as desired
&#60;/p&#62;</description>
</item>
<item>
<title>Greenbear on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26515</link>
<pubDate>Sat, 21 Apr 2012 16:10:31 +0000</pubDate>
<dc:creator>Greenbear</dc:creator>
<guid isPermaLink="false">26515@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok, I've figured this out and thought I would pass on my findings for anyone else who runs into this.&#60;/p&#62;
&#60;p&#62;It appears that it's an overflow issue.  I can only get it to work when the overflow is set to visible for both the #content and #main ids.  This may require some #content bottom margin though as the main will lose it's margin-bottom.  It may also create other problems...but that's how it breaks out.
&#60;/p&#62;</description>
</item>
<item>
<title>Greenbear on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-26501</link>
<pubDate>Sat, 21 Apr 2012 00:50:56 +0000</pubDate>
<dc:creator>Greenbear</dc:creator>
<guid isPermaLink="false">26501@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I just happen to be having this problem myself so I thought I'd chime in here.&#60;/p&#62;
&#60;p&#62;I can't seem to get the content to go outside of the #content no matter what I try (ie. position absolute or relative) I've set the margin right to a negative (relative), tried overflow:visible, tried resetting the width of #main, #container etc... all to no effect, the content I am trying to set outside still gets cut at the outside of the #content or #container edge.&#60;/p&#62;
&#60;p&#62;I am interested in helgatheviking's suggestion but am not sure how to proceed there...any suggestions on how to break out?
&#60;/p&#62;</description>
</item>
<item>
<title>Solomon on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-19121</link>
<pubDate>Fri, 11 Feb 2011 21:08:36 +0000</pubDate>
<dc:creator>Solomon</dc:creator>
<guid isPermaLink="false">19121@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Negative margin? Absolute positioning? Depending on what, exactly, you're trying to do. Might one of those techniques work?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-19115</link>
<pubDate>Fri, 11 Feb 2011 17:01:02 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">19115@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you could get it out of the .hentry div by overriding the loop.
&#60;/p&#62;</description>
</item>
<item>
<title>AnotherAndrew on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-19111</link>
<pubDate>Fri, 11 Feb 2011 16:26:49 +0000</pubDate>
<dc:creator>AnotherAndrew</dc:creator>
<guid isPermaLink="false">19111@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Trying to do the same. Did you find a way?
&#60;/p&#62;</description>
</item>
<item>
<title>js09 on "How can I get content/an element/image/etc. OUTSIDE of #content div?"</title>
<link>http://themeshaper.com/forums/topic/how-can-i-get-contentan-elementimageetc-outside-of-content-div#post-12608</link>
<pubDate>Tue, 25 May 2010 19:49:43 +0000</pubDate>
<dc:creator>js09</dc:creator>
<guid isPermaLink="false">12608@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I want to have the date be displayed outside the #content div. Like a post-it not hanging on the side of the main blog. I tried z-index but that was a no go. !imporant didn't work either.&#60;/p&#62;
&#60;p&#62;Suggestions? I'm specifically referring to '.entry-date'
&#60;/p&#62;</description>
</item>

</channel>
</rss>
