<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress.com Forums &#187; Topic: Help With Positioning</title>
		<link>http://en.forums.wordpress.com/topic/help-with-positioning</link>
		<description>WordPress.com Forums &#187; Topic: Help With Positioning</description>
		<language>en</language>
		<pubDate>Thu, 23 May 2013 07:33:23 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/help-with-positioning" rel="self" type="application/rss+xml" />

		<item>
			<title>thesacredpath on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-880241</link>
			<pubDate>Sun, 06 May 2012 20:23:51 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">880241@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome.
</p>
]]></description>
					</item>
		<item>
			<title>gnruble on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-880216</link>
			<pubDate>Sun, 06 May 2012 19:01:14 +0000</pubDate>
			<dc:creator>gnruble</dc:creator>
			<guid isPermaLink="false">880216@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks again!
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878394</link>
			<pubDate>Fri, 04 May 2012 04:05:15 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">878394@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>This is because you've put the sidebar outside of the overall wrapper that goes around all the elements of the page. Look in #sidebar and you will see a margin-left of <strong>-</strong>316px.</p>
<p>When you do things in the way you have, these are the kinds of issues you run into.</p>
<p>This is a <strong>total</strong> "hack" but it fixes it.</p>
<pre><code>#wrapper {
margin-left: 350px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>gnruble on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878324</link>
			<pubDate>Fri, 04 May 2012 00:30:11 +0000</pubDate>
			<dc:creator>gnruble</dc:creator>
			<guid isPermaLink="false">878324@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Just one more question - is there any way to allow scrolling when windows aren't at full screen? The sidebar gets hidden when the window is resized too small.</p>
<p>Thanks again
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878312</link>
			<pubDate>Fri, 04 May 2012 00:11:22 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">878312@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome.
</p>
]]></description>
					</item>
		<item>
			<title>gnruble on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878306</link>
			<pubDate>Thu, 03 May 2012 23:59:41 +0000</pubDate>
			<dc:creator>gnruble</dc:creator>
			<guid isPermaLink="false">878306@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks thesacredpath! That's perfect :D
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878303</link>
			<pubDate>Thu, 03 May 2012 23:54:23 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">878303@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The correct way to do this (it will require tweaking of margins, padding and such) is to float the sidebar left and float the content right such as below.</p>
<pre><code>.col-right {
float: left;
}

.col-left {
float: right;
}</code></pre>
<p>The above is all that is needed for the main repositioning. Then all you have to do is adjust the margins and padding and such to get things to look right.
</p>
]]></description>
					</item>
		<item>
			<title>gnruble on "Help With Positioning"</title>
			<link>http://en.forums.wordpress.com/topic/help-with-positioning#post-878301</link>
			<pubDate>Thu, 03 May 2012 23:44:30 +0000</pubDate>
			<dc:creator>gnruble</dc:creator>
			<guid isPermaLink="false">878301@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've gotten pretty close to the layout I want using CSS, but I cant do anything with the sidebar unless I set the position to absolute. But when it's set to absolute, the body overlaps the sidebar - so you'd have to view full screen for it to display correctly.</p>
<p>I've tried everything. Every forum post I've found around the Web is going on the premise that the user has full access to the html and all that jazz... Can someone please take a look at my page and tell me how I'd go about fixing this? <a href="http://macinphormer.com/">http://macinphormer.com/</a></p>
<p>I know you guys don't have access to premium themes, so you can't tell me <strong>exactly</strong> what to do, but I know someone could give me a general answer, or at least point me in the right direction. Thanks.</p>
<p>Here's the code, if that helps at all:</p>
<p><code>#sidebar {&lt;br /&gt;
	background:#FFFFFF;&lt;br /&gt;
	position:absolute;&lt;br /&gt;
	top:132px;&lt;br /&gt;
	left:-5px;&lt;br /&gt;
	width:230px;&lt;br /&gt;
	padding:10px;&lt;br /&gt;
	clip:auto;&lt;br /&gt;
	z-index:-1;&lt;br /&gt;
	overflow:hidden;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#main {&lt;br /&gt;
	width:600px;&lt;br /&gt;
	padding-top:0;&lt;br /&gt;
	padding-left:50px;&lt;br /&gt;
	padding-right:50px;&lt;br /&gt;
	overflow:hidden;&lt;br /&gt;
}</code>
</p>
]]></description>
					</item>

	</channel>
</rss>
