<?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: Removing side page margins</title>
		<link>http://en.forums.wordpress.com/topic/removing-side-page-margins</link>
		<description>WordPress.com Forums &#187; Topic: Removing side page margins</description>
		<language>en</language>
		<pubDate>Wed, 19 Jun 2013 14:14:33 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/removing-side-page-margins" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1110381</link>
			<pubDate>Wed, 02 Jan 2013 18:34:38 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1110381@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Cool. :)
</p>
]]></description>
					</item>
		<item>
			<title>tiagodovale on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1110376</link>
			<pubDate>Wed, 02 Jan 2013 18:30:38 +0000</pubDate>
			<dc:creator>tiagodovale</dc:creator>
			<guid isPermaLink="false">1110376@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That did it!! :)<br />
Thanks!!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1110348</link>
			<pubDate>Wed, 02 Jan 2013 18:17:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1110348@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>There's also some padding on the body tag in that theme. Maybe remove that as well?</p>
<pre><code>#page {
     max-width: none;
}

body {
	padding: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>tiagodovale on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1110203</link>
			<pubDate>Wed, 02 Jan 2013 16:26:55 +0000</pubDate>
			<dc:creator>tiagodovale</dc:creator>
			<guid isPermaLink="false">1110203@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi: thanks for your help!</p>
<p>That code removes the header's max width of 1000 pixels, but there's always a margins between the headers's sides and the browser window frame (let's call it that).</p>
<p>What I was trying to do was having the header and footer occupy the full width of the page, with no margins (as I was able to do at the top, for instance, where the header is now touching the edge of the page without a margin)
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1110181</link>
			<pubDate>Wed, 02 Jan 2013 16:03:44 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1110181@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>When you say "the limit of the page" are you referring to the entire browser width? If so, keep in mind that different people will have different monitor sizes and the margins will look different depending on each setup. You could get rid of the size restriction of the "#page" element, but personally I think there's a better chance it will look good if you stick with the current layout. If you want to make "#page" full-width anyway, here's how to do it:</p>
<pre><code>#page {
     max-width: none;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>tiagodovale on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1108123</link>
			<pubDate>Mon, 31 Dec 2012 17:27:25 +0000</pubDate>
			<dc:creator>tiagodovale</dc:creator>
			<guid isPermaLink="false">1108123@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi! :) Thanks again!!</p>
<p>With your code the contents width adjusts to the header's width, but there's always a margin between the header's sides and the limit of the page...
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1108074</link>
			<pubDate>Mon, 31 Dec 2012 16:37:14 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1108074@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>To do that in the Twenty Eleven theme, you'll want to zero out the left and right margin for the "content" and "secondary" IDs. If you do that, you'll probably also want to adjust the width of the content area too. Start with this CSS to adjust pages that have a sidebar:</p>
<pre><code>#content {
	margin-left: 0;
	width: 75%;
}

#secondary {
	margin-right: 0;
}</code></pre>
<p>And use this for single posts without a sidebar:</p>
<pre><code>.singular #content {
	margin: 0;
}

.singular .entry-header,
.singular .entry-content,
.singular footer.entry-meta,
.singular #comments-title {
	width: 100%;
}</code></pre>
<p>Adjust the width as needed.
</p>
]]></description>
					</item>
		<item>
			<title>tiagodovale on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1097290</link>
			<pubDate>Mon, 17 Dec 2012 17:39:40 +0000</pubDate>
			<dc:creator>tiagodovale</dc:creator>
			<guid isPermaLink="false">1097290@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for replying :)</p>
<p>I'm afraid it doesn't do the trick... Top and Bottom respond, but the sides remain with a margin..</p>
<p>I don't know if it's a theme specific limitation or if there's something we're missing...
</p>
]]></description>
					</item>
		<item>
			<title>castelinokelvin on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1096971</link>
			<pubDate>Mon, 17 Dec 2012 08:44:07 +0000</pubDate>
			<dc:creator>castelinokelvin</dc:creator>
			<guid isPermaLink="false">1096971@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I guess you have added the margin as '0 auto' correct?<br />
I guess you can give it as<br />
<pre><code>#page {
margin: 0 !important;
}</code></pre>
<p>instead if you want to remove the margin on all sides.
</p>
]]></description>
					</item>
		<item>
			<title>tiagodovale on "Removing side page margins"</title>
			<link>http://en.forums.wordpress.com/topic/removing-side-page-margins#post-1092774</link>
			<pubDate>Wed, 12 Dec 2012 02:05:54 +0000</pubDate>
			<dc:creator>tiagodovale</dc:creator>
			<guid isPermaLink="false">1092774@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi guys!</p>
<p>I've been fighting with my page's margins.</p>
<p>I was able to remove the top and bottom ones with<br />
<pre><code>#page {
	margin-top: 0;
	margin-bottom: 0;
}</code></pre>
<p>but no matter what I try I can't remove the left and right ones...</p>
<p>Any ideas?<br />
Thank you guys
</p>
]]></description>
					</item>

	</channel>
</rss>
