<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jeff Malterre &#187; elegant grunge</title>
	<atom:link href="http://www.jeffmalterre.com/tag/elegant-grunge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffmalterre.com</link>
	<description>accessible web programmer, SEO specialist, e-commerce professional</description>
	<lastBuildDate>Tue, 05 Oct 2010 18:23:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WP Wall plugin + Elegant Grunge theme &#8211; fixed W3C xHTML validation error</title>
		<link>http://www.jeffmalterre.com/2008/11/20/wp-wall-plugin-elegant-grunge-theme-fixed-w3c-xhtml-validation-error/</link>
		<comments>http://www.jeffmalterre.com/2008/11/20/wp-wall-plugin-elegant-grunge-theme-fixed-w3c-xhtml-validation-error/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:48:08 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[sibble.com]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[elegant grunge]]></category>
		<category><![CDATA[invalid markup]]></category>
		<category><![CDATA[wp wall]]></category>

		<guid isPermaLink="false">http://www.sibble.com/?p=641</guid>
		<description><![CDATA[I recently installed a plugin called WP Wall (you should now notice it in the sidebar.)  I&#8217;m pretty happy with how it worked out, but I noticed there was a problem validating my markup after installing this plugin. The problem was simple, an input tag had and ID and name of &#8220;page&#8221;.  This ID was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently installed a plugin called <a title="WP Wall - WordPress Plugin" href="http://www.prelovac.com/vladimir/wordpress-plugins/wp-wall" target="_blank">WP Wall</a> (you should now notice it in the sidebar.)  I&#8217;m pretty happy with how it worked out, but I noticed there was a problem validating my markup after installing this plugin.</p>
<p>The problem was simple, an input tag had and ID and name of &#8220;page&#8221;.  This ID was already in use by my <a title="Wordpress" href="http://www.wordpress.org" target="_blank">WordPress</a> theme (<a title="Elegant Grunge - WordPress theme" href="http://michael.tyson.id.au/wordpress/themes/elegant-grunge/" target="_blank">Elegant Grunge</a>), and as we all know no two tags can have the same ID.  Generally speaking, <em>page</em> is a pretty common identifier and I&#8217;m not surprised that it was already in use.</p>
<h3>To fix:</h3>
<p style="padding-left: 30px;"><strong>Open wp-wall.php, and go to line 243</strong></p>
<p style="padding-left: 60px;">Change:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>243
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span><span style="color: #339933;">.=</span><span style="color: #0000ff;">'&amp;lt;input type=&quot;hidden&quot; name=&quot;page&quot; id=&quot;page&quot;value=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$page</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; /&amp;gt;'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p style="padding-left: 60px;">To:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>243
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span><span style="color: #339933;">.=</span><span style="color: #0000ff;">'&amp;lt;input type=&quot;hidden&quot; name=&quot;wallpage&quot; id=&quot;wallpage&quot; value=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$page</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; /&amp;gt;'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p style="padding-left: 30px;"><strong>Open wp-wall.js.php, and go to line 117</strong></p>
<p style="padding-left: 60px;">Change:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>117
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> page<span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#wallcomments #page'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p style="padding-left: 60px;">To:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>117
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> page<span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#wallcomments #wallpage'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>I changed the identifier from <em>page</em> to <em>wallpage</em>, but you can use anything you like as long as something else isn&#8217;t already using that specific identifier.  Hopefully this won&#8217;t cause any conflicts within the WP Wall plugin, only time will tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2008/11/20/wp-wall-plugin-elegant-grunge-theme-fixed-w3c-xhtml-validation-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elegant Grunge WordPress theme &#8211; Fixed image caption box.</title>
		<link>http://www.jeffmalterre.com/2008/11/18/elegant-grunge-wordpress-theme-fixed-image-caption-box/</link>
		<comments>http://www.jeffmalterre.com/2008/11/18/elegant-grunge-wordpress-theme-fixed-image-caption-box/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 05:32:45 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Snippet]]></category>
		<category><![CDATA[elegant grunge]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sibble.com/?p=361</guid>
		<description><![CDATA[I noticed a problem with the caption boxes that WordPress creates, and the image box model around the images in posts. adding this to styles.css: .wp-caption &#123; padding-right:15px; padding-left:5px; &#125; will change this: to this: Let me know if anyone runs into any problems.]]></description>
			<content:encoded><![CDATA[<p>I noticed a problem with the caption boxes that WordPress creates, and the image box model around the images in posts.</p>
<p>adding this to styles.css:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.wp-caption</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span><span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>will change this:</p>
<div id="attachment_371" class="wp-caption aligncenter" style="width: 190px"><a href="http://www.sibble.com/wp-content/theme-fix1.jpg"><img class="size-medium wp-image-371" title="before fix" src="http://www.sibble.com/wp-content/theme-fix1-300x232.jpg" alt="before fix" width="180" height="139" /></a><p class="wp-caption-text">before fix</p></div>
<p>to this:</p>
<div id="attachment_431" class="wp-caption aligncenter" style="width: 183px"><a href="http://www.sibble.com/wp-content/theme-fix2.jpg"><img class="size-medium wp-image-431" title="after fix" src="http://www.sibble.com/wp-content/theme-fix2-300x232.jpg" alt="after fix" width="173" height="134" /></a><p class="wp-caption-text">after fix</p></div>
<p>Let me know if anyone runs into any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2008/11/18/elegant-grunge-wordpress-theme-fixed-image-caption-box/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

