<?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>Lewis Bilsland &#187; Wordpress</title>
	<atom:link href="http://www.lewisbilsland.co.uk/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lewisbilsland.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 16 May 2010 22:28:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress from Sub directory to Root folder</title>
		<link>http://www.lewisbilsland.co.uk/wordpress/wordpress-from-sub-to-root-folder/</link>
		<comments>http://www.lewisbilsland.co.uk/wordpress/wordpress-from-sub-to-root-folder/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 12:20:56 +0000</pubDate>
		<dc:creator>Lewis</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lewisbilsland.co.uk/?p=144</guid>
		<description><![CDATA[If you work on a test site for your new wordpress website there comes a point when you need to make the site live and move from the test folder and into the root. There [...]]]></description>
			<content:encoded><![CDATA[<p>If you work on a test site for your new wordpress website there comes a point when you need to make the site live and move from the test folder and into the root. There are a few steps to follow but it&#8217;s straightforward and the only time consuimng part is waiting for the many wordpress files to upload.</p>
<p><strong>1.</strong> Firstly take a backup of your test site folder. If something happens at least you can restore everythign back to the original state and try again.</p>
<p><strong>2.</strong> Copy all the files of /blog folder into the main root of your site. Make sure you copy the .htaccess file too. Make sure you remove and index.html folders or index.php and any image folders that do not need to be there.</p>
<p><strong>3. </strong>Open your wp-config.php file of the files you just moved over to the root folder and the line below, it needs to be added towards the base of the page and will be the last define statement:</p>
<p>define(&#8216;RELOCATE&#8217;,true);</p>
<p>when you have done that save the file and upload to the root</p>
<p><strong>4.</strong> Now open your browser and open the page http://www.yourdomain.com/wp-login.php and enter your admin login details.</p>
<p><strong>5.</strong> In your admin area go to the General Settings and make sure in WordPress address (URL) field, you have http://www.yourdomain.com and remove the url placed in the Blog address field. Make sure there is no trailing &#8220;/&#8221; in either of the fields.</p>
<p><strong>6.</strong> Check your .htaccess file in the root directory and make the content like this:</p>
<p># BEGIN WordPress</p>
<p>&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On</p>
<p>RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f</p>
<p>RewriteCond %{REQUEST_FILENAME} !-d</p>
<p>RewriteRule . /index.php [L]</p>
<p>&lt;/IfModule&gt;</p>
<p># END WordPress</p>
<p>Once this has been done you are now ready to test, you may notice that some images placed in your pages have been broken, all you need to do is click on each and point them to your new folder, you will be able to do this within the media library. Or alternatively you can leave your wp-content folder/uploads intact within your subfolder and remove all other files.</p>
<p>Any new images you place in your site will be uploaded to the root upload folder.</p>
<p><strong>7. </strong>Finally again open wp-config.php and remove</p>
<p>define(&#8216;RELOCATE&#8217;,true);</p>
<p>save the file and upload.</p>
<p>all done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewisbilsland.co.uk/wordpress/wordpress-from-sub-to-root-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read more function</title>
		<link>http://www.lewisbilsland.co.uk/wordpress/read-more-function/</link>
		<comments>http://www.lewisbilsland.co.uk/wordpress/read-more-function/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 21:52:47 +0000</pubDate>
		<dc:creator>Lewis</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.lewisbilsland.co.uk/?p=102</guid>
		<description><![CDATA[I decided to place some excerpts on my home page, this helps give users an insight to the blog before clicking through, it&#8217;s something that gives a reader more choice which can&#8217;t be a bad [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to place some excerpts on my home page, this helps give users an insight to the blog before clicking through, it&#8217;s something that gives a reader more choice which can&#8217;t be a bad thing.</p>
<p>To do this you need to insert the following code into your function.php file, there is a part of the code where you can design your own arrow or more link button:</p>
<pre class="php">
add_filter<span class="phpOperator">(</span><span class="phpString">'excerpt_length'</span>, <span class="phpString">'my_excerpt_length'</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunctionKeyword">function</span> my_excerpt_length<span class="phpOperator">(</span>$length<span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpKeyword">
return </span>35<span class="phpText">;</span> <span class="phpOperator">}</span>
<span class="phpComment">//<span class="phpFunctionKeyword">function</span> to replace invalid ellipsis with text
</span><span class="phpFunctionKeyword">function</span> elpie_excerpt<span class="phpOperator">(</span>$text<span class="phpOperator">)</span>
<span class="phpOperator">{</span>
<span class="phpKeyword">
return </span><span class="phpFunction">str_replace</span><span class="phpOperator">(</span><span class="phpString">'<span class="phpOperator">[</span>.<span class="phpOperator">.</span>.<span class="phpOperator">]</span>'</span>, <span class="phpString">'<span class="phpOperator">&lt;</span>a href=<span class="phpString">"'</span>.get_permalink<span class="phpOperator">(</span><span class="phpOperator">)</span>.<span class="phpString">'"&gt;&lt;img src="yourpathhere/readmore.jpg" alt=""</span> /<span class="phpOperator">&gt;</span><span class="phpOperator">&lt;</span>/a<span class="phpOperator">&gt;</span>'</span>, $text<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
add_filter<span class="phpOperator">(</span><span class="phpString">'the_excerpt'</span>, <span class="phpString">'elpie_excerpt'</span><span class="phpOperator">)</span><span class="phpText">;</span>
</pre>
<p><img class="alignnone size-full wp-image-111" title="spacer" src="http://www.lewisbilsland.co.uk/wp-content/uploads/2010/01/spacer.jpg" alt="" width="647" height="38" /></p>
<p>Now all you need to do is edit your page template to include the following code, you can wrap with a css style to colour the fonts, rollovers etc:</p>
<pre class="php">
<span class="htmlOtherTag">&lt;ul id=<span class="htmlAttributeValue">&quot;recent-items&quot;</span>&gt;</span>
<span class="htmlOtherTag">&lt;ul&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
$recentPosts <span class="phpOperator">=</span><span class="phpKeyword"> new </span><span class="htmlText">WP_Query</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
$recentPosts<span class="phpOperator">-<span class="phpOperator">&gt;</span></span><span class="htmlText">query</span><span class="phpOperator">(</span><span class="phpString">'showposts=<span class="phpNumber">2</span>'</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> while </span><span class="phpOperator">(</span>$recentPosts<span class="phpOperator">-<span class="phpOperator">&gt;</span></span><span class="htmlText">have_posts</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">:</span> $recentPosts<span class="phpOperator">-<span class="phpOperator">&gt;</span></span><span class="htmlText">the_post</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_permalink</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>&quot;</span> rel=<span class="htmlAttributeValue">&quot;bookmark&quot;</span>&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_title</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;br /&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_excerpt</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlOtherTag">&lt;/li&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> endwhile<span class="phpText">;</span></span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;/ul&gt;</span>
<span class="htmlOtherTag">&lt;/ul&gt;</span>
</pre>
<p><img class="alignnone size-full wp-image-111" title="spacer" src="http://www.lewisbilsland.co.uk/wp-content/uploads/2010/01/spacer.jpg" alt="" width="647" height="38" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewisbilsland.co.uk/wordpress/read-more-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nextgen Gallery</title>
		<link>http://www.lewisbilsland.co.uk/wordpress/nextgen-gallery/</link>
		<comments>http://www.lewisbilsland.co.uk/wordpress/nextgen-gallery/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 21:36:44 +0000</pubDate>
		<dc:creator>Lewis</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lewisbilsland.co.uk/?p=48</guid>
		<description><![CDATA[The best slideshow that I have found for wordpress is the nextgen gallery, the main plus point is that it can be controlled via the admin area, making it easy for clients to upload images [...]]]></description>
			<content:encoded><![CDATA[<p>The best slideshow that I have found for wordpress is the <a href="http://code.google.com/p/nextgen-gallery/" target="_blank">nextgen gallery</a>, the main plus point is that it can be controlled via the admin area, making it easy for clients to upload images to specific pages, it can be fully customised, with options for multiple slides, captions and transitions.</p>
<p>It uses the the <a href="http://www.longtailvideo.com/players/jw-image-rotator/" target="_blank">JW image Rotator</a> which costs around £35.00 for a licensed version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewisbilsland.co.uk/wordpress/nextgen-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling comments</title>
		<link>http://www.lewisbilsland.co.uk/wordpress/styling-comments/</link>
		<comments>http://www.lewisbilsland.co.uk/wordpress/styling-comments/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:39:22 +0000</pubDate>
		<dc:creator>Lewis</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lewisbilsland.co.uk/?p=28</guid>
		<description><![CDATA[Wordpress is great when used as a cms, one thing many forget to apply is styling to the comments pages, comments can be fully configured and styled to tie in with the overall look and [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress is great when used as a cms, one thing many forget to apply is styling to the comments pages, comments can be fully configured and styled to tie in with the overall look and feel of a new site, using graphics and css styling can also enhance the usability of the comment feature, to style the comments on my site i used the following code:</p>
<h2>The php code</h2>
<p>This was added to the comments.php file:</p>
<pre class="php"><span class="htmlOtherTag">&lt;ol&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> foreach </span><span class="phpOperator">(</span>$comments<span class="phpKeyword"> as </span>$comment<span class="phpOperator">)</span> <span class="phpOperator">:</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;li <span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span> <span class="phpFunction">echo</span> $oddcomment; <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span></span>id=<span class="htmlAttributeValue">&quot;comment-<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_ID</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>&quot;</span>&gt;
<span class="htmlOtherTag">&lt;cite&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> if<span class="phpOperator">(</span></span><span class="phpFunction"><span class="phpFunctionKeyword">function</span>_exists</span><span class="phpOperator">(</span><span class="phpString">'get_avatar'</span><span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span> <span class="phpFunction">echo</span><span class="htmlText"> get_avatar</span><span class="phpOperator">(</span>$comment, <span class="phpString">'35'</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpOperator">}</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;span&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_author_link</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlOtherTag">&lt;/span&gt;</span><span class="htmlOtherTag">&lt;br /&gt;</span><span class="htmlOtherTag">&lt;span&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_time</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlOtherTag">&lt;/span&gt;</span> on <span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#comment-<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_ID</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>&quot;</span> title=<span class="htmlAttributeValue">&quot;&quot;</span>&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_date</span><span class="phpOperator">(</span><span class="phpString">'F jS, Y'</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlAnchorTag">&lt;/a&gt;</span> <span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> edit_comment_link</span><span class="phpOperator">(</span><span class="phpString">'edit'</span>,<span class="phpString">'&#038;nbsp<span class="phpText">;</span>&#038;nbsp<span class="phpText">;</span>'</span>,<span class="phpString">''</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;/cite&gt;</span>
<span class="htmlOtherTag">&lt;div&gt;</span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> comment_text</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlOtherTag">&lt;/div&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> if </span><span class="phpOperator">(</span>$comment<span class="phpOperator">-<span class="phpOperator">&gt;</span></span><span class="htmlText">comment_approved </span><span class="phpOperator"><span class="phpOperator">=</span>=</span> <span class="phpString">'<span class="phpNumber">0</span>'</span><span class="phpOperator">)</span> <span class="phpOperator">:</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;em&gt;</span>Your comment is awaiting moderation.<span class="htmlOtherTag">&lt;/em&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> endif<span class="phpText">;</span></span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;/li&gt;</span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpComment">/* Changes every other comment to a different <span class="phpKeyword">class </span>*/</span>
$oddcomment <span class="phpOperator">=</span> <span class="phpOperator">(</span> <span class="phpFunction">empty</span><span class="phpOperator">(</span> $oddcomment <span class="phpOperator">)</span> <span class="phpOperator">)</span> <span class="phpOperator">?</span> <span class="phpString">'class=<span class="phpString">"alt"</span> '</span> <span class="phpOperator">:</span> <span class="phpString">''</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="phpKeyword"> endforeach<span class="phpText">;</span></span> <span class="phpComment">/* end<span class="phpKeyword"> for </span>each comment */</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlOtherTag">&lt;/ol&gt;</span>
</pre>
<h2><img class="alignnone size-full wp-image-111" title="spacer" src="http://www.lewisbilsland.co.uk/wp-content/uploads/2010/01/spacer.jpg" alt="" width="647" height="38" /></h2>
<h2>Stylesheet</h2>
<p>All you need to do is add this to your stylesheet, and create a background image for the comment list ul, the comments are also gravatar enabled.</p>
<pre class="css">
<span class="cssSelector">.commenttext{</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 10px 0px 0px 0px</span><span class="cssRest">;</span>
<span class="cssProperty">line-height</span><span class="cssRest">:</span><span class="cssValue"> 18px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentsheading {</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 3px 5px 3px 0px</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0px 0px 8px 0px</span><span class="cssRest">;</span>
<span class="cssProperty">text-decoration</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.alt {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 10px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist {</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssProperty">text-align</span><span class="cssRest">:</span><span class="cssValue"> justify</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li {</span>
<span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> #f3efec url(<span class="cssString">&#039;images/comment_background.jpg&#039;</span>) repeat-x left top</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 15px 0 10px</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 15px 15px 10px 15px</span><span class="cssRest">;</span>
<span class="cssProperty">list-style</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li ul li {</span>
<span class="cssProperty">margin-right</span><span class="cssRest">:</span><span class="cssValue"> -5px</span><span class="cssRest">;</span>
<span class="cssProperty">margin-left</span><span class="cssRest">:</span><span class="cssValue"> 10px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist p {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 10px 5px 10px 0px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.children {</span> <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">#commentform p {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 5px 0</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.nocomments {</span>
<span class="cssProperty">text-align</span><span class="cssRest">:</span><span class="cssValue"> center</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentmetadata {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> block</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li, #commentform input, #commentform textarea {</span>
<span class="cssProperty">font</span><span class="cssRest">:</span><span class="cssValue"> 0.9em Helvetica, Arial, sans-serif</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li ul li {</span>
<span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 12px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li {</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist li .avatar {</span>
<span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0px 10px 0px 0px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist cite, .commentlist cite a {</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
<span class="cssProperty">font-style</span><span class="cssRest">:</span><span class="cssValue"> normal</span><span class="cssRest">;</span>
<span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 12px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentlist p {</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> normal</span><span class="cssRest">;</span>
<span class="cssProperty">line-height</span><span class="cssRest">:</span><span class="cssValue"> 18px</span><span class="cssRest">;</span>
<span class="cssProperty">text-transform</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#commentform p {</span>
<span class="cssProperty">font-family</span><span class="cssRest">:</span><span class="cssValue"> Helvetica, Arial, sans-serif</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.commentmetadata {</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> normal</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#commentform input {</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 170px</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 2px</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 5px 5px 1px 0</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#commentform {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 5px 10px 0 0</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#commentform textarea {</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 100%</span><span class="cssRest">;</span>
<span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#respond:after {</span>
<span class="cssProperty">content</span><span class="cssRest">:</span><span class="cssValue"> <span class="cssString">"."</span></span><span class="cssRest">;</span>
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> block</span><span class="cssRest">;</span>
<span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
<span class="cssProperty">clear</span><span class="cssRest">:</span><span class="cssValue"> both</span><span class="cssRest">;</span>
<span class="cssProperty">visibility</span><span class="cssRest">:</span><span class="cssValue"> hidden</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#commentform #submit {</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0 0 5px auto</span><span class="cssRest">;</span>
<span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
</pre>
<p><img class="alignnone size-full wp-image-111" title="spacer" src="http://www.lewisbilsland.co.uk/wp-content/uploads/2010/01/spacer.jpg" alt="" width="647" height="38" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewisbilsland.co.uk/wordpress/styling-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
