<?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>PixoPoint &#187; theme</title> <atom:link href="http://pixopoint.com/tag/theme/feed/" rel="self" type="application/rss+xml" /><link>http://pixopoint.com</link> <description>Specialists in the design, coding and implementation of websites</description> <lastBuildDate>Wed, 25 Apr 2012 21:30:59 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Auto-update plugin created</title><link>http://pixopoint.com/2011/10/05/auto-update-plugin-created/</link> <comments>http://pixopoint.com/2011/10/05/auto-update-plugin-created/#comments</comments> <pubDate>Wed, 05 Oct 2011 10:13:25 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[auto-update]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[theme]]></category> <category><![CDATA[wordpress.org]]></category><guid isPermaLink="false">http://pixopoint.com/?p=2020</guid> <description><![CDATA[We have a new plugin called the &#8220;PixoPoint Auto-update plugin&#8221; available. It makes it easier to setup themes and plugins to auto-update themselves without needing to be hosted in the WordPress.org plugin or theme repositories. Check it out now! ]]></description> <content:encoded><![CDATA[<p>We have a new plugin called the &#8220;<a href="http://pixopoint.com/products/auto-update/">PixoPoint Auto-update plugin</a>&#8221; available. It makes it easier to setup themes and plugins to auto-update themselves without needing to be hosted in the WordPress.org plugin or theme repositories.</p><p><strong><a href="http://pixopoint.com/products/auto-update/">Check it out now!</a> </strong></p><div id="attachment_2009" class="wp-caption aligncenter" style="width: 490px"><a href="http://pixopoint.com/uploads/auto-update-plugin-screenshot.png"><img class="size-medium wp-image-2009" title="PixoPoint Auto-update-plugin" src="http://pixopoint.com/uploads/auto-update-plugin-screenshot-480x469.png" alt="" width="480" height="469" /></a><p class="wp-caption-text">The admin page for the auto-update plugin</p></div> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2011/10/05/auto-update-plugin-created/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PixoPoint Add Span Tags to Titles plugin released</title><link>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/</link> <comments>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/#comments</comments> <pubDate>Sun, 19 Dec 2010 06:15:24 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[functions.php]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[release]]></category> <category><![CDATA[span]]></category> <category><![CDATA[tags]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=1681</guid> <description><![CDATA[We needed a super small WordPress plugin for a client of ours which allowed us to have control over the CSS of individual words in each page title. We did this by applying a filter to the the_title() function which split each word out and [...]]]></description> <content:encoded><![CDATA[<p>We needed a super small WordPress plugin for a client of ours which allowed us to have control over the CSS of individual words in each page title. We did this by applying a filter to the <strong>the_title()</strong> function which split each word out and I applied a span tag with a unique class to each one. This plugin is available on the <a href="http://pixopoint.com/products/add-spans-to-titles/">&#8220;PixoPoint Add Span Tags to Titles plugin&#8221; page</a>.</p><p>If you would like to use the functionality of the plugin but prefer to include such functionality in your theme, then simply include the following code in your themes functions.php file:</p><pre class="brush: php; title: ;">/**
 * Primary span tag adding function
 * Code from PixoPoint Add Span Tags to Titles plugin (http://pixopoint.com/products/add-spans-to-titles/)
 */
function pixopoint_add_spans_around_words( $name ) {

	// Initially check that it doesn't contain HTML as that's bound to mess things up
	$check = strip_tags( $name );
	if ( $check != $name )
		return $name; // Just spit out original string if HTML was included - no sanitization as assumes that user intended to include HTML

	$name = explode( ' ', $name ); // Explode inidivual words into array
	foreach ( $name as $number =&gt; $key ) {
		$new_name .= '&lt;span class=&quot;word-' . $number . '&quot;&gt;' . $key . '&lt;/span&gt;' . ' '; // Add span tags
	}
	return $new_name;
}
add_filter( 'the_title', 'pixopoint_add_spans_around_words' ); // Filtering the title
</pre><div id="attachment_1676" class="wp-caption aligncenter" style="width: 490px"><a href="http://pixopoint.com/uploads/pixopoint-add-span-tags.png"><img src="http://pixopoint.com/uploads/pixopoint-add-span-tags-480x246.png" alt="" title="PixoPoint Add Spans to Titles plugin" width="480" height="246" class="size-medium wp-image-1676" /></a><p class="wp-caption-text">PixoPoint Add Spans to Titles WordPress plugin in action</p></div> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Template Generator Update</title><link>http://pixopoint.com/2008/12/21/template-generator-update/</link> <comments>http://pixopoint.com/2008/12/21/template-generator-update/#comments</comments> <pubDate>Sun, 21 Dec 2008 08:29:21 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Generator]]></category> <category><![CDATA[bbpress]]></category> <category><![CDATA[css]]></category> <category><![CDATA[template]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=225</guid> <description><![CDATA[We&#8217;ve completed a large update today for the PixoPoint Template Generator. The changes include a huge number of bug fixes. Thank you very much to the dozens of you who have reported various bugs to us, without your help we wouldn&#8217;t have been able to [...]]]></description> <content:encoded><![CDATA[<p>We&#8217;ve completed a large update today for the <a title="PixoPoint template generator" href="http://pixopoint.com/generator/?generator=on">PixoPoint Template Generator</a>. The changes include a huge number of bug fixes. Thank you very much to the dozens of you who have reported various bugs to us, without your help we wouldn&#8217;t have been able to improve the system. If you have any questions or bug reports, please leave them in <a title="PixoPoint forum" href="http://pixopoint.com/forum/">the forum</a>.</p><p>Some new features have been added for premium subscribers including the ability to add the date, RSS feed links and search boxes to the header, plus breadcrumb links and a dropdown sub-menu.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/12/21/template-generator-update/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>New Aqua Vaccinium WordPress theme</title><link>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/</link> <comments>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/#comments</comments> <pubDate>Mon, 01 Dec 2008 01:49:54 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[aqua vaccinium]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[Generator]]></category> <category><![CDATA[template]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=199</guid> <description><![CDATA[The Aqua Vaccinium template features a smooth blue and green design and has a prominent dropdown menu built in (no plugin needed). The template was originally released as a standalone theme, but has been incorporated as one of the standard templates in the PixoPoint Template [...]]]></description> <content:encoded><![CDATA[<p>The Aqua Vaccinium template features a smooth blue and green design and has a prominent dropdown menu built in (no plugin needed). The template was <a title="Aqua Vaccinium WordPress theme" href="http://pixopoint.com/aqua-vaccinium-wordpress-theme/">originally released</a> as a standalone theme, but has been incorporated as one of the standard templates in the <a href="http://pixopoint.com/generator/">PixoPoint Template Generator</a>.</p><p><img class="aligncenter size-full attachment wp-att-162" title="Aqua Vaccinium WordPress theme" src="http://pixopoint.com/uploads/aquavaccinium1.png" alt="Aqua Vaccinium WordPress theme" width="439" height="442" /></p><h3>Download template as a WordPress theme</h3><p><a title="Download Aqua Vaccinium" href="http://pixopoint.com/uploads/aqua-vaccinium.zip">Download Aqua Vaccinium WordPress theme</a></p><h3>The big blue bar</h3><p>The blue section (below the main menu) is controlled via the &#8216;Main menu shadow&#8217; section in the &#8216;Main Menu&#8217; box in the template generator control panel.</p><p>If you require any (paid) customisations specific to your site, please get in touch via our <a href="http://pixopoint.com/contact/">contact form</a>.</p><h3>Naming</h3><p>The word Aqua came from the mixture of the blue and green tones of the design. The name Vaccinium is the genus for a variety of berries including blue berries which we baked a pie for in honour of the new theme.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>New Hellish Simplicity WordPress Theme</title><link>http://pixopoint.com/2008/11/30/new-hellish-simplicity-wordpress-theme/</link> <comments>http://pixopoint.com/2008/11/30/new-hellish-simplicity-wordpress-theme/#comments</comments> <pubDate>Mon, 01 Dec 2008 01:41:50 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[Generator]]></category> <category><![CDATA[hellish simplicity]]></category> <category><![CDATA[ryanhellyer.net]]></category> <category><![CDATA[template]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=197</guid> <description><![CDATA[Hellish Simplicity is a minimilistic two column design with a distinctive red, black and white design. It was created as the blog theme for http://ryanhellyer.net/ and by request was made available to the public as a free download and has now been added as one [...]]]></description> <content:encoded><![CDATA[<p>Hellish Simplicity is a minimilistic two column design with a distinctive red, black and white design. It was created as the blog theme for <a href="http://ryanhellyer.net/">http://ryanhellyer.net/</a> and by request was made available to the public as a <a href="http://pixopoint.com/hellish-simplicity-wordpress-theme/">free download</a> and has now been added as one of the default themes to the PixoPoint template generator.</p><p><a href="http://pixopoint.com/uploads/hellishsimplicity1.jpg"><img class="aligncenter size-full wp-image-160" title="hellishsimplicity1" src="http://pixopoint.com/uploads/hellishsimplicity1.jpg" alt="Hellish Simplicity WordPress theme" width="400" height="300" /></a></p><h3>Download template as a WordPress theme</h3><p><a href="http://pixopoint.com/uploads/hellish-simplicity.zip">Download Hellish Simplicity Version 2.0 (link coming soon)</a></p><h3>Modifying sidebar widths</h3><p>The grey border which runs down the sidebars in Hellish Simplicity are created via the sidebars graphical background. If you change the widths of these sidebars, you should modify/create a new graphic to match the new width.</p><h3>Copyright</h3><p>This theme was not originally released as a truly open source theme. However it is now available with a BSD license.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/11/30/new-hellish-simplicity-wordpress-theme/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Basic blue template</title><link>http://pixopoint.com/2008/11/30/basic-blue-template/</link> <comments>http://pixopoint.com/2008/11/30/basic-blue-template/#comments</comments> <pubDate>Mon, 01 Dec 2008 01:31:06 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[basic blue]]></category> <category><![CDATA[Generator]]></category> <category><![CDATA[template]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=202</guid> <description><![CDATA[Basic blue is a minimilistic two column template which was designed as a simple base for more advanced designs to be created from. Download template as a WordPress theme Download Basic blue 1.0 (link coming soon) Basic blue as a base This design was used [...]]]></description> <content:encoded><![CDATA[<p>Basic blue is a minimilistic two column template which was designed as a simple base for more advanced designs to be created from.</p><p><a href="http://pixopoint.com/uploads/basic_bluetemplate.jpg"><img class="size-full wp-image-203 alignright" style="float: right;" title="basic_bluetemplate" src="http://pixopoint.com/uploads/basic_bluetemplate.jpg" alt="" width="250" height="216" /></a></p><h3>Download template as a WordPress theme</h3><p><a href="">Download Basic blue 1.0 (link coming soon)</a></p><h3>Basic blue as a base</h3><p>This design was used as the base to create the other templates for the PixoPoint template generator including &#8216;Hellish Simplicity&#8217;, &#8216;Aqua Vaccinium&#8217; and &#8216;Yoghourt&#8217;. By simply editing the various options in the template generator, the Basic blue template was morphed into the other drastically different creations. With minimal work, you too can develop your own entirely new designs.</p><h3>Creating your own templates</h3><p>If you modify one of the core templates in such a way that you think it would be suitable as one of the core templates, then please post your saved XML file in our <a href="http://pixopoint.com/forum/">support forum</a>. If we think it is up to scratch, then we&#8217;ll consider adding it as one of the build in designs along with credit back to you as the author.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/11/30/basic-blue-template/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ice Edge WordPress Theme</title><link>http://pixopoint.com/2008/05/10/ice-edge-wordpress-theme/</link> <comments>http://pixopoint.com/2008/05/10/ice-edge-wordpress-theme/#comments</comments> <pubDate>Sat, 10 May 2008 11:30:35 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[cms]]></category> <category><![CDATA[ice edge]]></category> <category><![CDATA[simple cms]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=181</guid> <description><![CDATA[<a href='http://pixopoint.com/uploads/screenshot.png'><img src="http://pixopoint.com/uploads/screenshot-150x150.png" alt="" title="Ice Edge WordPress Theme" width="150" height="150" class="alignright size-thumbnail wp-image-180" /></a>The theme is designed for use with our <a href="http://pixopoint.com/simplecms/">Simple CMS WordPress Plugin</a>.<h3>Features</h3> As with the <a href="http://pixopoint.com/simplecms_theme/">Simple CMS theme</a>, "Ice Edge" does not display comments, tags or categories. This theme is designed to display WordPress Pages as part of a static website.<h3>Support</h3> Support for this theme is available in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes support board</a>. ]]></description> <content:encoded><![CDATA[<p>This theme has been used for the past year by our client <a href="http://freshedgehockey.com/">Fresh Edge Hockey</a>. The theme is designed for use with our <a href="http://pixopoint.com/simplecms/">Simple CMS WordPress Plugin</a>. It is designed purely for use on static websites and is not suitable for blogs or sites which require sidebars.</p><p><a href="http://pixopoint.com/uploads/screenshot.png"><img class="aligncenter size-full wp-image-180" title="Ice Edge WordPress Theme" src="http://pixopoint.com/uploads/screenshot.png" alt="" width="400" height="321" /></a></p><h3>Demo</h3><p><a href="http://pixopoint.com/demo/wordpress/index.php?wptheme=Ice%20Edge%20Theme">Ice Edge Theme Demo</a></p><h3>Download</h3><p><a href="http://pixopoint.com/uploads/ice_edge.zip">Ice Edge WordPress Theme</a></p><h3>Features</h3><p>As with the <a href="http://pixopoint.com/simplecms_theme/">Simple CMS theme</a>, &#8220;Ice Edge&#8221; does not display comments, tags or categories. This theme is only designed to display WordPress Pages as part of a static website.</p><h3>Support</h3><p>Support for this theme is available in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes support board</a>.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/05/10/ice-edge-wordpress-theme/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple CMS WordPress Theme</title><link>http://pixopoint.com/2008/03/14/simplecms_theme/</link> <comments>http://pixopoint.com/2008/03/14/simplecms_theme/#comments</comments> <pubDate>Sat, 15 Mar 2008 02:13:55 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[cms]]></category> <category><![CDATA[comments]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[simple]]></category> <category><![CDATA[simple cms]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/03/14/simplecms_theme/</guid> <description><![CDATA[<a href='http://pixopoint.com/uploads/simplecmsshot.jpg'><img src="http://pixopoint.com/uploads/simplecmsshot-150x150.jpg" alt="Simple CMS WordPress theme" title="simplecmsshot" width="150" height="150" class="alignright size-thumbnail attachment wp-att-165" /></a>The Simple CMS WordPress Theme is designed as a development theme for our <a href="http://pixopoint.com/simplecms/">Simple CMS WordPress plugin</a>. This theme is not designed to look pretty, but is a practical, simple theme to build your own designs from.<h3>Features</h3> The theme does not display comments, tags, categories or anything related to posts only. This theme is intended to display WordPress Pages and nothing else.The entire theme folder contains only four PHP files, unlike WordPress's default Kubrick theme which uses 16! Hopefully this will make building themes for static websites a lot easier as there is less junk to remove to create your simple static site. ]]></description> <content:encoded><![CDATA[<p>The Simple CMS WordPress Theme is designed as a development theme for our <a href="http://pixopoint.com/simplecms/">Simple CMS WordPress plugin</a>. This theme is not designed to look pretty, but is a practical, simple theme to build your own designs from.</p><p><img class="aligncenter size-full attachment wp-att-165" title="simplecmsshot" src="http://pixopoint.com/uploads/simplecmsshot.jpg" alt="Simple CMS WordPress theme" width="400" height="280" /></p><h3>Download</h3><p><a title="SimpleCMS WordPress Theme" href="http://pixopoint.com/uploads/simplecms_theme.zip">Simple CMS WordPress Theme Download</a></p><h3>Features</h3><p>The theme does not display comments, tags, categories or anything related to posts only. This theme is intended to display WordPress Pages and nothing else.</p><p>The entire theme folder contains only four PHP files, unlike WordPress&#8217;s default Kubrick theme which uses 16! Hopefully this will make building themes for static websites a lot easier as there is less junk to remove to create your simple static site.</p><p><strong>Note:</strong> Just like the <a title="Simple CMS WordPress Plugin" href="http://pixopoint.com/simplecms/">Simple CMS WordPress plugin</a>, this theme is only designed to work with WordPress Version 2.5 or above.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/03/14/simplecms_theme/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Hellish Simplicity WordPress Theme</title><link>http://pixopoint.com/2008/02/26/hellish-simplicity-wordpress-theme/</link> <comments>http://pixopoint.com/2008/02/26/hellish-simplicity-wordpress-theme/#comments</comments> <pubDate>Wed, 27 Feb 2008 01:30:04 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[demo]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[hellish simplicity]]></category> <category><![CDATA[theme]]></category> <category><![CDATA[widget]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/02/26/hellish-simplicity-wordpress-theme/</guid> <description><![CDATA[<a href='http://pixopoint.com/hellish-simplicity-wordpress-theme/'><img src="http://pixopoint.com/uploads/hellishsimplicity1-150x150.jpg" alt="Hellish Simplicity WordPress theme" title="Hellish Simplicity WordPress theme" width="150" height="150" class="alignright size-thumbnail attachment wp-att-160" /></a>Hellish Simplicity is a widget ready WordPress theme developed by PixoPoint lead developer <a href="http://ryanhellyer.net/">Ryan Hellyer</a> for his <a href="http://ryanhellyer.net/">personal blog</a>. Hellish simplicity is available in red and blue designs and comes supplied with a PSD file to allow you to change the text in the header logo.<h3>Free download</h3> <a title="WordPress Theme &#124; Hellish Simplicity &#124; download" href='http://pixopoint.com/uploads/hellishsimplicity_v121.zip'>Download Hellish Simplicity Version 1.2.1</a>The Hellish Simplicity theme is available for viewing on Ryan Hellyer's blog or you can see it in action on our <a href="http://pixopoint.com/demo/wordpress/">WordPress theme demo site</a>.]]></description> <content:encoded><![CDATA[<p>Continuing on from our <a title="Aqua Vaccinium WordPress theme" href="http://pixopoint.com/aqua-vaccinium-wordpress-theme/">Aqua Vaccinium WordPress theme</a>, is the release of PixoPoint lead developer Ryan Hellyer&#8217;s own personal blog theme. This theme was developed for use on <a href="http://ryanhellyer.net/">ryanhellyer.net</a> but by request has been made available to the public as a free download.</p><p><a href="http://pixopoint.com/uploads/hellishsimplicity1.jpg"><img class="aligncenter size-full attachment wp-att-160" title="hellishsimplicity1" src="http://pixopoint.com/uploads/hellishsimplicity1.jpg" alt="Hellish Simplicity WordPress theme" width="400" height="300" /></a></p><h3>Download</h3><p><a title="Download Hellish Simplicity WordPress theme version 1.3.1" href="http://pixopoint.com/uploads/hellishsimplicity_v131.zip">Download Hellish Simplicity Version 1.3.1</a><br /> <small>If you are using WordPress 2.3.3 or older, you will need to download <a title="WordPress Theme | Hellish Simplicity" href="http://pixopoint.com/uploads/hellishsimplicity_v121.zip">Download Hellish Simplicity Version 1.2.1</a> of the Hellish Simplicity WordPress Theme.</small></p><h3>Features</h3><p>Hellish Simplicity is widget ready and comes supplied with a PSD file to allow you to change the text in the header logo.</p><p>There is an options menu in the WordPress administration panel which gives allows you to toggle between blue and red versions of the theme. If you would like another colour combination then please leave let us know via <a title="PixoPoint themes forum" href="http://pixopoint.com/forum/index.php?board=1.0">our themes forum</a>.</p><p>The options menu also allows you to choose to use a logo or plain text in your header.</p><p><a href="http://pixopoint.com/uploads/hellishsimplicity_blue.jpg"><img class="aligncenter size-full attachment wp-att-159" title="hellishsimplicity_blue" src="http://pixopoint.com/uploads/hellishsimplicity_blue.jpg" alt="Hellish Simplicity WordPress theme: Blue version" width="400" height="300" /></a></p><h3>Live Demo</h3><p>The theme is available for viewing on <a href="http://ryanhellyer.net/">Ryan Hellyer&#8217;s blog</a> or you can see it in action on our <a href="http://pixopoint.com/demo/wordpress/index.php?wptheme=Hellish%20Simplicity">WordPress theme demo site</a>.</p><h3>Support</h3><p>If you have any difficulties, need help with modifying the theme or find any errrors then please leave a comment in our <a title="PixoPoint themes forum" href="http://pixopoint.com/forum/index.php?board=1.0">our themes forum</a>.</p><h3>Copyright</h3><p>Note that although we are providing this theme for free, PixoPoint still retain the copyright to the design. You may modify it for your own needs, but you may not provide it to others. This theme is only available from <a href="http://ryanhellyer.net/">ryanhellyer.net</a> or <a href="http://pixopoint.com/">pixopoint.com</a> and must not be downloaded from elsewhere.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/02/26/hellish-simplicity-wordpress-theme/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Aqua Vaccinium WordPress theme</title><link>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/</link> <comments>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/#comments</comments> <pubDate>Sat, 23 Feb 2008 16:35:33 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[aqua vaccinium]]></category> <category><![CDATA[code]]></category> <category><![CDATA[customisation]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[quote]]></category> <category><![CDATA[suckerfish]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/02/23/aqua-vaccinium-wordpress-theme/</guid> <description><![CDATA[<img src="http://pixopoint.com/uploads/aquavaccinium1-150x150.png" alt="Aqua Vaccinium WordPress theme" title="Aqua Vaccinium WordPress theme" width="150" height="150" class="alignright size-thumbnail attachment wp-att-162" />Aqua Vaccinium features a smooth blue and green theme and has a prominent Suckerfish dropdown menu built in (no plugin needed).Visit our <a href="http://pixopoint.com/demo/wordpress/" title="PixoPoint WordPress theme demo site">WordPress theme demo site</a> to see Aqua Vaccinium in action.We’ve tried to keep the theming as simple as possible to allow for easy customisation. There are only five template files, plus images, javascript and css files. The original build file for the logo (PSD format) is included, so you can edit it to match your own site name.The main dropdown menu is set to display categories by default, but you can insert other pages into your dropdown if you like. The blue section (below the main menu) displays either the blog description or the category description depending on what page you are on.]]></description> <content:encoded><![CDATA[<p>The &#8220;Aqua Vaccinium&#8221; WordPress theme was originally intended for use on a clients site, but they have since decided to go with a red theme and use Dreamweaver (ick!) instead of WordPress, so we have decided to release this theme to you for free.</p><p>Aqua Vaccinium features a smooth blue and green theme and has a prominent Suckerfish dropdown menu built in (no plugin needed).</p><p><img class="aligncenter size-full attachment wp-att-162" title="Aqua Vaccinium WordPress theme" src="http://pixopoint.com/uploads/aquavaccinium1.png" alt="Aqua Vaccinium WordPress theme" width="439" height="442" /></p><h3>Live Demo</h3><p>Visit our <a title="Aqua Vaccinium demo" href="http://pixopoint.com/demo/wordpress/index.php?wptheme=Aqua%20Vaccinium">WordPress theme demo site</a> to see Aqua Vaccinium in action.</p><h3>Download</h3><p><a title="Aqua Vaccinium download" href="http://pixopoint.com/uploads/aquavaccinium.zip">Aqua Vaccinium download</a></p><h3>Bugs/feature requests</h3><p>If you find a bug or would like an extra feature which isn&#8217;t present in the standard Aqua Vaccinium theme, feel free to leave a comment in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes forum</a>.</p><p>If you require any customisations specific to your site, please get in touch via our <a href="http://pixopoint.com/contact/">contact form</a>.</p><h3>Theme files</h3><p>We&#8217;ve tried to keep the theming as simple as possible to allow for easy customisation. There are only five template files, plus images, javascript and css files. I&#8217;ve included the original build file for the logo (PSD format), so you can edit it to match your own site name.</p><p>The main dropdown menu is set to display categories by default, but you can insert other pages into your dropdown if you like (leave a post in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes forum</a> if you need help with this).</p><p>The blue section (below the main menu) displays either the blog description or the category description depending on what page you are on. If the blog or category description is missing, this will be left blank.</p><h3>Naming</h3><p>The word Aqua came from the mixture of the blue and green tones of the design. The name Vaccinium is the genus for a variety of berries including blue berries which we baked a pie for in honour of the new theme.</p><p><a href="http://pixopoint.com/aqua-vaccinium-wordpress-theme/"><strong>more information »</strong></a></p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: pixopoint.com @ 2012-05-13 04:04:57 -->
