<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Revolution Theme full width Page Template</title>
	<atom:link href="http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/</link>
	<description>Wordpress site design and development, plugins, code ideas, template tags and css resources for bloggers</description>
	<lastBuildDate>Tue, 07 Feb 2012 22:11:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ade</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-5525</link>
		<dc:creator>Ade</dc:creator>
		<pubDate>Tue, 04 Aug 2009 08:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-5525</guid>
		<description>@ Niklas,

Check you have followed all the steps, especially the bit about adding the Template Name to the top of the new template file. This name needs to be unique too.</description>
		<content:encoded><![CDATA[<p>@ Niklas,</p>
<p>Check you have followed all the steps, especially the bit about adding the Template Name to the top of the new template file. This name needs to be unique too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niklas</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-5506</link>
		<dc:creator>Niklas</dc:creator>
		<pubDate>Sun, 02 Aug 2009 15:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-5506</guid>
		<description>Thanks for the article, but i have followed the steps like it says, and now i cant choose any page template when creating or editing one. 

I removed the new one that i had created following the tutorial here and still the page templates wont show in the page options.</description>
		<content:encoded><![CDATA[<p>Thanks for the article, but i have followed the steps like it says, and now i cant choose any page template when creating or editing one. </p>
<p>I removed the new one that i had created following the tutorial here and still the page templates wont show in the page options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ade</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-5490</link>
		<dc:creator>Ade</dc:creator>
		<pubDate>Sat, 01 Aug 2009 13:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-5490</guid>
		<description>Hi Phillip,

Glad you liked the article. 

You will probably have CSS inheritance issues with your method. Although it&#039;s more long-winded, I would change the div id=content to div id=fullwidth.

Then copy all of your #content styles and rename the copies #fullwidth, and change any width settings to suit your page layout.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Phillip,</p>
<p>Glad you liked the article. </p>
<p>You will probably have CSS inheritance issues with your method. Although it&#8217;s more long-winded, I would change the div id=content to div id=fullwidth.</p>
<p>Then copy all of your #content styles and rename the copies #fullwidth, and change any width settings to suit your page layout.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phillip Hofmeyr</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-5485</link>
		<dc:creator>Phillip Hofmeyr</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-5485</guid>
		<description>noticed that some of my code was not displayed... will re-write it in a way that it won&#039;t get &#039;rejected&#039;.

The page.php file of the them i am using has the following code at the top:
div with the id=content
I have changed this in my custom template page to:
div with the id=content and then class=fullwidth

hope that makes it clearer...</description>
		<content:encoded><![CDATA[<p>noticed that some of my code was not displayed&#8230; will re-write it in a way that it won&#8217;t get &#8216;rejected&#8217;.</p>
<p>The page.php file of the them i am using has the following code at the top:<br />
div with the id=content<br />
I have changed this in my custom template page to:<br />
div with the id=content and then class=fullwidth</p>
<p>hope that makes it clearer&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phillip Hofmeyr</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-5484</link>
		<dc:creator>Phillip Hofmeyr</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-5484</guid>
		<description>Hi there. this is really useful post and i am trying to apply the logic to a different theme.
The page.php file of the them i am using has the following code at the top:
 
I have changed this in my custom template page to:
 
however, where i am struggling, is how to add this fullwidth class in the right way to my ccs file?
I just know where or how to stick it in?

i imagine it would go somewhere in this area:
/* Deal with content (all styles used in index.php) */ #content {
	text-align:left;	
	width:570px;	
	padding:5px 10px;		
	float:left;		
	margin-top:5px;	
	min-height:570px;	
	
	border-left:1px solid #e1e0e0;
}
html&gt;body #content{width:570px;}
#content h1{
	margin: 10px 0 10px 0;	
	font-family: Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	text-shadow:#999999;	
	font-size:20px;
}

Desparate for help!</description>
		<content:encoded><![CDATA[<p>Hi there. this is really useful post and i am trying to apply the logic to a different theme.<br />
The page.php file of the them i am using has the following code at the top:</p>
<p>I have changed this in my custom template page to:</p>
<p>however, where i am struggling, is how to add this fullwidth class in the right way to my ccs file?<br />
I just know where or how to stick it in?</p>
<p>i imagine it would go somewhere in this area:<br />
/* Deal with content (all styles used in index.php) */ #content {<br />
	text-align:left;<br />
	width:570px;<br />
	padding:5px 10px;<br />
	float:left;<br />
	margin-top:5px;<br />
	min-height:570px;	</p>
<p>	border-left:1px solid #e1e0e0;<br />
}<br />
html&gt;body #content{width:570px;}<br />
#content h1{<br />
	margin: 10px 0 10px 0;<br />
	font-family: Arial, Helvetica, sans-serif;<br />
	text-transform:uppercase;<br />
	text-shadow:#999999;<br />
	font-size:20px;<br />
}</p>
<p>Desparate for help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edwin</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-3776</link>
		<dc:creator>Edwin</dc:creator>
		<pubDate>Sat, 23 May 2009 07:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-3776</guid>
		<description>Thanks, this is what I am looking for... this is also worked with another wordpress themes I used right now.</description>
		<content:encoded><![CDATA[<p>Thanks, this is what I am looking for&#8230; this is also worked with another wordpress themes I used right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-2454</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 10 Apr 2009 11:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-2454</guid>
		<description>Don,

Agreed - not so easy with this theme.
 
Revolution 2 Album uses a background image to &quot;frame&quot; the images. Therefore it&#039;s a bit trickier than with other themes to create a full width page - you need to create a new background image to deal with the wider page. 

Using page.php would be starting point. Your best bet is to post a question over at http://www.studiopress/support

Ade.</description>
		<content:encoded><![CDATA[<p>Don,</p>
<p>Agreed &#8211; not so easy with this theme.</p>
<p>Revolution 2 Album uses a background image to &#8220;frame&#8221; the images. Therefore it&#8217;s a bit trickier than with other themes to create a full width page &#8211; you need to create a new background image to deal with the wider page. </p>
<p>Using page.php would be starting point. Your best bet is to post a question over at <a href="http://www.studiopress/support" rel="nofollow">http://www.studiopress/support</a></p>
<p>Ade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-2389</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Wed, 08 Apr 2009 19:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-2389</guid>
		<description>Revolution 2 Album is a thorn in my side. I definitely need a full page solution for this theme.</description>
		<content:encoded><![CDATA[<p>Revolution 2 Album is a thorn in my side. I definitely need a full page solution for this theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-937</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 27 Jan 2009 06:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-937</guid>
		<description>Hi Elliot,

The Revolution 2 Album templates are quite different to more traditional themes, so the method described above would need additional steps to create the same concept in this theme. If you provide some more info as to what you want (and a URL would be useful too) I can give you some pointers.

Ade.</description>
		<content:encoded><![CDATA[<p>Hi Elliot,</p>
<p>The Revolution 2 Album templates are quite different to more traditional themes, so the method described above would need additional steps to create the same concept in this theme. If you provide some more info as to what you want (and a URL would be useful too) I can give you some pointers.</p>
<p>Ade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elliot</title>
		<link>http://www.studiograsshopper.ch/code-snippets/revolution-theme-full-width-page-template/#comment-927</link>
		<dc:creator>elliot</dc:creator>
		<pubDate>Sun, 25 Jan 2009 21:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.studiograsshopper.ch/?p=514#comment-927</guid>
		<description>Hi - Thanks for posting this.  I&#039;m trying to add a full width page template to my Revolution 2 Album theme but am struggling.  I tried following the steps here but have problems.  As the core of the theme is photo based when i remove it, the whitespace just takes over!

Any ideas or help you can give me (e.g. an example full_page.php) would be awesome :) 

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi &#8211; Thanks for posting this.  I&#8217;m trying to add a full width page template to my Revolution 2 Album theme but am struggling.  I tried following the steps here but have problems.  As the core of the theme is photo based when i remove it, the whitespace just takes over!</p>
<p>Any ideas or help you can give me (e.g. an example full_page.php) would be awesome <img src='http://www.studiograsshopper.ch/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

