<?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 for Genesis Tutorials</title>
	<atom:link href="http://genesistutorials.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://genesistutorials.com</link>
	<description>Tips, Tricks, and How-tos for the Genesis Theme Framework</description>
	<lastBuildDate>Wed, 02 May 2012 21:59:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Genesis Structural Wraps &amp; Creating a Full Width Genesis Child Theme by Christopher</title>
		<link>http://genesistutorials.com/genesis-structural-wraps-creating-a-full-width-genesis-child-theme/comment-page-1/#comment-4428</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Wed, 02 May 2012 21:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=502#comment-4428</guid>
		<description>April, you are very welcome.
Each additional section will just be to further constrain the widths. If you are to inspect your site you will search that each the main sections of genesis have a wrap div inside. For example: 
[html]
&lt;div id=&quot;header&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
[/html]
[html]
&lt;div id=&quot;nav&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
[/html]
[html]
&lt;div id=&quot;footer&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
[/html]

adding the following CSS: 
[css]
.wrap {
    margin: 0 auto;
    width: 960px;
}
[/css]
contrains the inside of each those sections to the set width, but allowing the outside container to span the full width. 

If there is a #footer .wrap { ... } or the like for the other sections it should be fine to leave them. Only ones to be concerned of are if a width is set to #header { ... }, #nav { ... }, ect., without targeting its inner wrap class since that will constrain the entire width of the section. 

Let me know if this makes sense, if not I can create a little graphic when I have some free time to further explain.</description>
		<content:encoded><![CDATA[<p>April, you are very welcome.<br />
Each additional section will just be to further constrain the widths. If you are to inspect your site you will search that each the main sections of genesis have a wrap div inside. For example: </p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;header&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
</pre>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;nav&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
</pre>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;footer&quot;&gt;
     &lt;div class=&quot;wrap&quot;&gt;
          ...
     &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>adding the following CSS: </p>
<pre class="brush: css; title: ; notranslate">
.wrap {
    margin: 0 auto;
    width: 960px;
}
</pre>
<p>contrains the inside of each those sections to the set width, but allowing the outside container to span the full width. </p>
<p>If there is a #footer .wrap { &#8230; } or the like for the other sections it should be fine to leave them. Only ones to be concerned of are if a width is set to #header { &#8230; }, #nav { &#8230; }, ect., without targeting its inner wrap class since that will constrain the entire width of the section. </p>
<p>Let me know if this makes sense, if not I can create a little graphic when I have some free time to further explain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Genesis Structural Wraps &amp; Creating a Full Width Genesis Child Theme by April</title>
		<link>http://genesistutorials.com/genesis-structural-wraps-creating-a-full-width-genesis-child-theme/comment-page-1/#comment-4427</link>
		<dc:creator>April</dc:creator>
		<pubDate>Wed, 02 May 2012 21:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=502#comment-4427</guid>
		<description>Thanks so much for the tutorial!  I am a little confused on step 3.  Where exactly am I supposed to add that?  I don&#039;t have a .wrap under any of those sections.  I did a search, and it only appears 4 times.  (all by something to do with my footer and footer widgets)  Am I just supposed to go into each section and add that whole code in that section?  Sorry if that&#039;s a dumb question.  I am REALLY new to this</description>
		<content:encoded><![CDATA[<p>Thanks so much for the tutorial!  I am a little confused on step 3.  Where exactly am I supposed to add that?  I don&#8217;t have a .wrap under any of those sections.  I did a search, and it only appears 4 times.  (all by something to do with my footer and footer widgets)  Am I just supposed to go into each section and add that whole code in that section?  Sorry if that&#8217;s a dumb question.  I am REALLY new to this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Mike Gosling</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3735</link>
		<dc:creator>Mike Gosling</dc:creator>
		<pubDate>Mon, 02 Apr 2012 02:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3735</guid>
		<description>OK Christopher, Understand. Thanks for coming back to me on this. I&#039;ve now added the following code to elminate the date and all is ok!

add_filter(&#039;genesis_post_info&#039;, &#039;custom_post_info&#039;);
function custom_post_info($post_info) {
$post_info = __(&#039;By&#039;, &#039;genesis&#039;) . &#039; [post_author_posts_link] &#039; . &#039; [post_comments] [post_edit]&#039;;
return $post_info;
}</description>
		<content:encoded><![CDATA[<p>OK Christopher, Understand. Thanks for coming back to me on this. I&#8217;ve now added the following code to elminate the date and all is ok!</p>
<p>add_filter(&#8216;genesis_post_info&#8217;, &#8216;custom_post_info&#8217;);<br />
function custom_post_info($post_info) {<br />
$post_info = __(&#8216;By&#8217;, &#8216;genesis&#8217;) . &#8216; [post_author_posts_link] &#8216; . &#8216; [post_comments] [post_edit]&#8216;;<br />
return $post_info;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Christopher</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3734</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Mon, 02 Apr 2012 01:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3734</guid>
		<description>For the twitter button I actually ended up creating a twitter plugin that displays the button with a shortcode and added that post info filter. Could do something simliar. I have a tutorial in draft that is over a year old. Maybe I should dust that off. Definitely possible though.</description>
		<content:encoded><![CDATA[<p>For the twitter button I actually ended up creating a twitter plugin that displays the button with a shortcode and added that post info filter. Could do something simliar. I have a tutorial in draft that is over a year old. Maybe I should dust that off. Definitely possible though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Andrew</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3733</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 02 Apr 2012 00:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3733</guid>
		<description>I found it. It&#039;s in Genesis Simple Edits. Do you know if it&#039;s possible to add facebook or twitter share buttons there? I started thinking about putting them in the byline when I was looking at the the Visual Hook Guide, because it has a twitter link on the right side of the byline.</description>
		<content:encoded><![CDATA[<p>I found it. It&#8217;s in Genesis Simple Edits. Do you know if it&#8217;s possible to add facebook or twitter share buttons there? I started thinking about putting them in the byline when I was looking at the the Visual Hook Guide, because it has a twitter link on the right side of the byline.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Christopher</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3731</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Sun, 01 Apr 2012 23:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3731</guid>
		<description>It may be possible that it is being modified by a plugin. Try removing it all together with [php 1=&quot;&#039;genesis_post_info&#039;);[/php&quot; language=&quot;/remove_action(&#039;genesis_before_post_content&#039;,&quot;] if it doesn&#039;t remove it means it has been removed and modified from somewhere else. If you are running any genesis specific plugins I would check those files for &quot;genesis_post_info&quot;. If it does get removed try setting a priority on the filter like [php]add_filter(&#039;genesis_post_info&#039;, &#039;custom_post_info&#039;, 20 );[/php]  the 20 will make the filter run later, can even set it at 100 to make sure it runs after all other modifications to the post info.</description>
		<content:encoded><![CDATA[<p>It may be possible that it is being modified by a plugin. Try removing it all together with
<pre class="brush: php; title: ; notranslate"> if it doesn't remove it means it has been removed and modified from somewhere else. If you are running any genesis specific plugins I would check those files for &quot;genesis_post_info&quot;. If it does get removed try setting a priority on the filter like [php]add_filter('genesis_post_info', 'custom_post_info', 20 );</pre>
<p>  the 20 will make the filter run later, can even set it at 100 to make sure it runs after all other modifications to the post info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Christopher</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3730</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Sun, 01 Apr 2012 23:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3730</guid>
		<description>Try this, *Edit: http://pastebin.com/vg6jA8zn *

Sorry for not answering sooner, work got too crazy the other day and just started going back through my comments responding to any I missed.

Edit:
I found the issue. There were fancy quotes in the snippet.  I have updated the code in the link above and should work correctly now. </description>
		<content:encoded><![CDATA[<p>Try this, *Edit: <a href="http://pastebin.com/vg6jA8zn" rel="nofollow">http://pastebin.com/vg6jA8zn</a> *</p>
<p>Sorry for not answering sooner, work got too crazy the other day and just started going back through my comments responding to any I missed.</p>
<p>Edit:<br />
I found the issue. There were fancy quotes in the snippet.  I have updated the code in the link above and should work correctly now. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Mike Gosling</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3729</link>
		<dc:creator>Mike Gosling</dc:creator>
		<pubDate>Sun, 01 Apr 2012 23:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3729</guid>
		<description>Hi Christopher,

Not sure why you have not answered my post. You say, &quot;Place it at the bottom of your child themes functions.php before the “?&gt;” if there is one; if not you can still put it at the end.&quot;
My Focus theme functions.php does not have &quot;?&gt;&quot; at the end.
I added the script as you suggested days ago and the site froze up, which resulted in my post above.
Am I missing something here? Am I required to pay a fee to get my script altered which I pasted at http://pastebin.com/bZ2fNSiW
Sorry, I just don&#039;t get why you have replied to other posts here and not mine.
Please advise.</description>
		<content:encoded><![CDATA[<p>Hi Christopher,</p>
<p>Not sure why you have not answered my post. You say, &#8220;Place it at the bottom of your child themes functions.php before the “?&gt;” if there is one; if not you can still put it at the end.&#8221;<br />
My Focus theme functions.php does not have &#8220;?&gt;&#8221; at the end.<br />
I added the script as you suggested days ago and the site froze up, which resulted in my post above.<br />
Am I missing something here? Am I required to pay a fee to get my script altered which I pasted at <a href="http://pastebin.com/bZ2fNSiW" rel="nofollow">http://pastebin.com/bZ2fNSiW</a><br />
Sorry, I just don&#8217;t get why you have replied to other posts here and not mine.<br />
Please advise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Andrew</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3728</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sun, 01 Apr 2012 23:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3728</guid>
		<description>I&#039;m confused now, because I&#039;ve tried altering the $post_info part of my functions file, but nothing is changing on my site. The variables also don&#039;t seem to match what&#039;s currently being displayed. 

Here&#039;s what in the function file:
$post_info = &#039;by [post_author_posts_link] on [post_date] [post_comments] [post_edit]&#039;;

But as I said earlier my byline looks like this:
March 30, 2012 By Andrew Leave a Comment

Is it possible the byline is being set somewhere else in the copyblogger template?</description>
		<content:encoded><![CDATA[<p>I&#8217;m confused now, because I&#8217;ve tried altering the $post_info part of my functions file, but nothing is changing on my site. The variables also don&#8217;t seem to match what&#8217;s currently being displayed. </p>
<p>Here&#8217;s what in the function file:<br />
$post_info = &#8216;by [post_author_posts_link] on [post_date] [post_comments] [post_edit]&#8216;;</p>
<p>But as I said earlier my byline looks like this:<br />
March 30, 2012 By Andrew Leave a Comment</p>
<p>Is it possible the byline is being set somewhere else in the copyblogger template?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Filter the Byline in Genesis by Christopher</title>
		<link>http://genesistutorials.com/filtering-the-byline-in-genesis/comment-page-1/#comment-3726</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Sun, 01 Apr 2012 22:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://genesistutorials.com/?p=84#comment-3726</guid>
		<description>Andrew, thanks for commenting. Yes, some child themes have already altered some the default genesis functions, so always want to look for that first.</description>
		<content:encoded><![CDATA[<p>Andrew, thanks for commenting. Yes, some child themes have already altered some the default genesis functions, so always want to look for that first.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

