<?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: Sidebars failing on Sandbox 1.6.2 custom theme</title>
		<link>http://en.forums.wordpress.com/topic/sidebars-failing-on-sandbox-162-custom-theme</link>
		<description>WordPress.com Forums &#187; Topic: Sidebars failing on Sandbox 1.6.2 custom theme</description>
		<language>en</language>
		<pubDate>Sun, 26 May 2013 09:29:16 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/sidebars-failing-on-sandbox-162-custom-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>braintreemencap on "Sidebars failing on Sandbox 1.6.2 custom theme"</title>
			<link>http://en.forums.wordpress.com/topic/sidebars-failing-on-sandbox-162-custom-theme#post-939791</link>
			<pubDate>Wed, 11 Jul 2012 13:30:55 +0000</pubDate>
			<dc:creator>braintreemencap</dc:creator>
			<guid isPermaLink="false">939791@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Dear designsimply,</p>
<p>Thanks for your help - while I did in the end figure this out before I was just alerted of your post, I made a few changes based on your advice.</p>
<p>I guess I had just been working for a bit too long - couldn't see for all of the looking ;)</p>
<p>Thanks,<br />
Will
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Sidebars failing on Sandbox 1.6.2 custom theme"</title>
			<link>http://en.forums.wordpress.com/topic/sidebars-failing-on-sandbox-162-custom-theme#post-927618</link>
			<pubDate>Thu, 28 Jun 2012 15:37:47 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">927618@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>First, you've made the container tag 100% wide and then tried to place the sidebar to the left of it. When layout elements are floated and you're using more than 100% of the width, the elements will float around each other on the page and that's why your sidebar is falling.</p>
<p>Sometimes, it helps to put a temporary border around elements to help you visualize them. Here is an example you could try as a first step so you can see how the spacing is working with your current setup.</p>
<pre><code>#container {
	border: 2px dashed DodgerBlue;
}
.sidebar {
	border: 2px dashed Lime;
}</code></pre>
<p>Of course, remove those after your done looking at the spacing.</p>
<p>To get the current CSS you've added back on track try starting with these steps:</p>
<p>1. If you don't want the site to span the width of the entire browser window, set a pixel width on the wrapper ID and center it like this:</p>
<pre><code>#wrapper {
	width: 980px;
	margin: 0 auto;
}</code></pre>
<p>Adjust the 980px number to your liking.</p>
<p>2. Find the "#container" block in your CSS, and change the width to 74%</p>
<p>3. Find the "div#content" block in your CSS, and change the width to 100%</p>
<p>4. Find the "div#primary.sidebar" block in your CSS, and change the width to 25%
</p>
]]></description>
					</item>
		<item>
			<title>braintreemencap on "Sidebars failing on Sandbox 1.6.2 custom theme"</title>
			<link>http://en.forums.wordpress.com/topic/sidebars-failing-on-sandbox-162-custom-theme#post-927594</link>
			<pubDate>Thu, 28 Jun 2012 15:13:25 +0000</pubDate>
			<dc:creator>braintreemencap</dc:creator>
			<guid isPermaLink="false">927594@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I probably should have said: I would like the sidebar and text ending up centered, if possible.
</p>
]]></description>
					</item>
		<item>
			<title>braintreemencap on "Sidebars failing on Sandbox 1.6.2 custom theme"</title>
			<link>http://en.forums.wordpress.com/topic/sidebars-failing-on-sandbox-162-custom-theme#post-927592</link>
			<pubDate>Thu, 28 Jun 2012 15:12:02 +0000</pubDate>
			<dc:creator>braintreemencap</dc:creator>
			<guid isPermaLink="false">927592@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It seems virtually impossible to have a sidebar aligned to the left of the "container" box. No matter how much I try, it always goes beneath it, or in random places. I cannot fathom why this is, *shrugs*.</p>
<p>Any help would be greatly appreciated. The custom CSS is here:</p>
<p><code>&lt;br /&gt;
* {&lt;br /&gt;
	margin:0;&lt;br /&gt;
	padding:0;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#container {&lt;br /&gt;
	/*float:right;*/&lt;br /&gt;
	/*display:inline;*/&lt;br /&gt;
	background-color:teal;&lt;br /&gt;
    margin-right:auto;&lt;br /&gt;
    margin-left:auto;&lt;br /&gt;
	width:800px;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;div#content {&lt;br /&gt;
	width:100%;&lt;br /&gt;
	margin-left:auto;&lt;br /&gt;
	margin-right:auto;&lt;br /&gt;
	margin-top:1em;&lt;br /&gt;
	background-color:salmon;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;h1#blog-title a {&lt;br /&gt;
	font-size:0;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;div#blog-description {&lt;br /&gt;
	font-size:0;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;a:link {&lt;br /&gt;
	color:#A6003E;&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;a:visited {&lt;br /&gt;
	color:#A6003E;&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;a:hover {&lt;br /&gt;
	text-decoration:underline;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;a:active {&lt;br /&gt;
	color:#A6003E;&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#header {&lt;br /&gt;
	background-image:url(&#039;http://i.imgur.com/WWebL.png&#039;);&lt;br /&gt;
	background-repeat:no-repeat;&lt;br /&gt;
	background-position:top center;&lt;br /&gt;
	height:180px;&lt;br /&gt;
	padding-top:20px;&lt;br /&gt;
	margin-top:5px;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;.skip-link {&lt;br /&gt;
	position:absolute!important;&lt;br /&gt;
	clip:rect(1px 1px 1px 1px);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#access ul li {&lt;br /&gt;
	float:left;&lt;br /&gt;
	list-style:none;&lt;br /&gt;
	margin-right:20px;&lt;br /&gt;
	margin-bottom:0;&lt;br /&gt;
	padding:5px;&lt;br /&gt;
	width:80px;&lt;br /&gt;
	text-align:center;&lt;br /&gt;
	font-family:arial;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#access ul li a {&lt;br /&gt;
	color:#444;&lt;br /&gt;
	font-weight:bolder;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#access ul li a:hover {&lt;br /&gt;
	color:#75AADB;&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#access {&lt;br /&gt;
	margin-left:auto;&lt;br /&gt;
	margin-right:auto;&lt;br /&gt;
	padding-bottom:13px;&lt;br /&gt;
	width:100%;&lt;br /&gt;
	height:1em;&lt;br /&gt;
	padding-top:3px;&lt;br /&gt;
	font-size:12pt;&lt;br /&gt;
	border-bottom:1px solid gray;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;.menu {&lt;br /&gt;
	width:70%;&lt;br /&gt;
	margin-right:auto;&lt;br /&gt;
	margin-left:auto;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;div#primary.sidebar {&lt;br /&gt;
	background-color:tomato;&lt;br /&gt;
	overflow:hidden;&lt;br /&gt;
	width:200px;&lt;br /&gt;
	/*display:inline;*/&lt;br /&gt;
    /*margin-right:auto;&lt;br /&gt;
    margin-left:auto;*/&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;div#secondary.sidebar {&lt;br /&gt;
	display:none;&lt;br /&gt;
	clear:left;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;h2.entry-title {&lt;br /&gt;
	color:#75AAE5;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#footer {&lt;br /&gt;
	width:0;&lt;br /&gt;
	font-size:0;&lt;br /&gt;
}&lt;br /&gt;
</code>
</p>
]]></description>
					</item>

	</channel>
</rss>
