<?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>Brisbane Web Design - Jellygnite - osCommerce File Browser, Javascript, PHP, Web Development</title>
	<atom:link href="http://www.jellygnite.com.au/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jellygnite.com.au/blog</link>
	<description>Advice on web design, osCommerce, javascript, PHP, web techniques and all things good</description>
	<lastBuildDate>Wed, 11 Aug 2010 04:43:38 +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>Prestashop display HTML in category description</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/prestashop-display-html-in-category-description/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/prestashop-display-html-in-category-description/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 04:42:49 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=19</guid>
		<description><![CDATA[When you enter a category into Prestashop you have the ability to enter a description. This only allows text though &#8211; no HTML.
Find out how to display HTML in Prestashop&#8217;s category description&#8230;
	
You need to make some changes to Prestashop&#8217;s core code so please be advised any future upgrades may overwrite your changes. Backup all files [...]]]></description>
			<content:encoded><![CDATA[<p>When you enter a category into Prestashop you have the ability to enter a description. This only allows text though &#8211; no HTML.</p>
<p>Find out how to display HTML in Prestashop&#8217;s category description&#8230;</p>
<p>	<span id="more-19"></span></p>
<p>You need to make some changes to Prestashop&#8217;s core code so please be advised any future upgrades may overwrite your changes. Backup all files before beginning!	</p>
<p>These changes have been tested with Prestashop version 1.3	</p>
<h3><strong>1. [admin folder]/tabs/AdminCategories.php</strong></h3>
<p>First we need to add <em>class=&#8221;rte&#8221;</em> to the text area as well as load the <span class="html">tinyMCE</span> script on the edit category page in the admin area. </p>
<p>Approx line 212,</p>
<p>	replace </p>
<pre class="html" name="code">&lt;textarea cols="40" rows="10" id="description_'.$language['id_lang'].'" name="description_'.$language['id_lang'].'"&gt;'.htmlentities(stripslashes($this-&gt;getFieldValue($obj, 'description', intval($language['id_lang']))), ENT_COMPAT, 'UTF-8').'&lt;/textarea&gt;</pre>
<p>with</p>
<pre class="html" name="code">&lt;textarea class="rte" cols="40" rows="10" id="description_'.$language['id_lang'].'" name="description_'.$language['id_lang'].'"&gt;'.htmlentities(stripslashes($this-&gt;getFieldValue($obj, 'description', intval($language['id_lang']))), ENT_COMPAT, 'UTF-8').'&lt;/textarea&gt;
&lt;script type="text/javascript" src="'.__PS_BASE_URI__.'js/tinymce/jscripts/tiny_mce/jquery.tinymce.js"&gt;&lt;/script&gt;
  &lt;script type="text/javascript"&gt;
  function tinyMCEInit(element)
  {
   $().ready(function() {
    $(element).tinymce({
     // Location of TinyMCE script
     script_url : \''.__PS_BASE_URI__.'js/tinymce/jscripts/tiny_mce/tiny_mce.js\',
     // General options
     theme : "advanced",
     plugins : "safari,pagebreak,style,layer,table,advimage,advlink,inlinepopups,media,searchreplace,contextmenu,paste,directionality,fullscreen",
     // Theme options
     theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
     theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,,|,forecolor,backcolor",
     theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,media,|,ltr,rtl,|,fullscreen",
     theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,pagebreak",
     theme_advanced_toolbar_location : "top",
     theme_advanced_toolbar_align : "left",
     theme_advanced_statusbar_location : "bottom",
     theme_advanced_resizing : false,
     content_css : "'.__PS_BASE_URI__.'themes/'._THEME_NAME_.'/css/global.css",
     width: "582",
     height: "auto",
     font_size_style_values : "8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt",
     // Drop lists for link/image/media/template dialogs
     template_external_list_url : "lists/template_list.js",
     external_link_list_url : "lists/link_list.js",
     external_image_list_url : "lists/image_list.js",
     media_external_list_url : "lists/media_list.js",
     elements : "nourlconvert",
     convert_urls : false,
     language : "'.(file_exists(_PS_ROOT_DIR_.'/js/tinymce/jscripts/tiny_mce/langs/'.$iso.'.js') ? $iso : 'en').'"
    });
   });
  }
  tinyMCEInit(\'textarea.rte\');
  &lt;/script&gt;</pre>
<h3><strong>2. classes/Category.php</strong></h3>
<p><strong>Now we change the field type of description:</strong> <em>&#8216;description&#8217; =&gt; &#8216;isCleanHtml&#8217;</em> becomes <em>&#8216;description&#8217; =&gt; &#8216;isString&#8217;</em></p>
<p>Approx. line 65, replace</p>
<pre class="html" name="code">protected 	$fieldsValidateLang = array('name' =&gt; 'isCatalogName', 'link_rewrite' =&gt; 'isLinkRewrite', 'description' =&gt; 'isCleanHtml',
'meta_title' =&gt; 'isGenericName', 'meta_description' =&gt; 'isGenericName', 'meta_keywords' =&gt; 'isGenericName');</pre>
<p>with</p>
<pre class="html" name="code">protected 	$fieldsValidateLang = array('name' =&gt; 'isCatalogName', 'link_rewrite' =&gt; 'isLinkRewrite', 'description' =&gt; 'isString',
'meta_title' =&gt; 'isGenericName', 'meta_description' =&gt; 'isGenericName', 'meta_keywords' =&gt; 'isGenericName');</pre>
<h3><strong>3. classes/ObjectModel.php </strong></h3>
<p>Approx. line 295, replace </p>
<pre class="html" name="code">if (isset($this-&gt;{$field}[$language['id_lang']]) AND !Tools::isEmpty($this-&gt;{$field}[$language['id_lang']]))
$fields[$language['id_lang']][$field] = pSQL($this-&gt;{$field}[$language['id_lang']]);
elseif (in_array($field, $this-&gt;fieldsRequiredLang))
$fields[$language['id_lang']][$field] = pSQL($this-&gt;{$field}[$defaultLanguage]);
else
$fields[$language['id_lang']][$field] = '';</pre>
<p>with</p>
<pre class="html" name="code">if (isset($this-&gt;{$field}[$language['id_lang']]) AND !Tools::isEmpty($this-&gt;{$field}[$language['id_lang']])) {
if(isset($this-&gt;fieldsValidateLang[$field]) &amp;&amp; $this-&gt;fieldsValidateLang[$field]=='isString'){
$fields[$language['id_lang']][$field] = pSQL($this-&gt;{$field}[$language['id_lang']],'true');
}else{
$fields[$language['id_lang']][$field] = pSQL($this-&gt;{$field}[$language['id_lang']]);
}
}
elseif (in_array($field, $this-&gt;fieldsRequiredLang))
$fields[$language['id_lang']][$field] = pSQL($this-&gt;{$field}[$defaultLanguage]);
else
$fields[$language['id_lang']][$field] = '';</pre>
<h3><strong>4. category.php </strong></h3>
<p>Lastly make sure we get rid of carriage returns being converted in to breaks when displaying the description. </p>
<p>Approx. line 49, replace </p>
<pre class="html" name="code">$category-&gt;description = nl2br2($category-&gt;description);</pre>
<p>with</p>
<pre class="html" name="code">$category-&gt;description = ($category-&gt;description); </pre>
<p>Thats all there is to it. If you notice any bugs or problems please drop me an email or comment. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/prestashop-display-html-in-category-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cms.jellygnite redeveloped using MochaUI</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/mochaui-based-cms/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/mochaui-based-cms/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 02:22:32 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[mochaui]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=15</guid>
		<description><![CDATA[I am currently developing/redesigning my CMS and admin panel I use for clients&#8217; websites. I have found a fantastic tool called MochaUI which was developed using the Mootools javascript framework.  MochaUI is a user interface library that you can use to build your web application on.
I had reservations making my CMS completely dependent on [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently developing/redesigning my CMS and admin panel I use for clients&#8217; websites. I have found a fantastic tool called <a href="http://mochaui.com/" rel="external">MochaUI</a> which was developed using the Mootools javascript framework.  MochaUI is a user interface library that you can use to build your web application on.</p>
<p>I had reservations making my CMS completely dependent on MochaUI so I have made everything modular. This will allow me to easily change the user interface should I no longer wish to use MochaUI in the future.</p>
<p>MochaUI provides the ability to open draggable, resizable, rounded-corner and dropshadowed windows without using images. These work great for  help and  file browser popup windows. It lets you design the user interface using columns and panels which are also resizeable. It uses the canvas tag so everything looks great with customisable curves and dropshadows.</p>
<p><a href="/_lib/blog/screen_cms.jellygnite.jpg" rel="roebox">View a screen shot of the CMS initial concept</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/mochaui-based-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip non-alphanumeric characters using PHP</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/strip-non-alphanumeric-characters-using-php/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/strip-non-alphanumeric-characters-using-php/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 03:00:28 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[non-alphanumeric]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[strip]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=14</guid>
		<description><![CDATA[You can use regular expressions to achieve this very simply.
function clean_query_string($vsString) {
     return ereg_replace(&#34;[^A-Za-z0-9-]&#34;, &#34;&#34;, $vsString);
}
The regular expression, [^A-Za-z0-9-] tells the function to replace any character that is not (^  means not) any of these characters, A-Za-z0-9-
This would be useful when you need to clean a query string value or [...]]]></description>
			<content:encoded><![CDATA[<p>You can use regular expressions to achieve this very simply.</p>
<pre class="html" name="code">function clean_query_string($vsString) {
     return ereg_replace(&quot;[^A-Za-z0-9-]&quot;, &quot;&quot;, $vsString);
}</pre>
<p>The regular expression, <em><strong>[^A-Za-z0-9-]</strong></em> tells the function to replace any character that is not (^  means not) any of these characters, <strong>A-Za-z0-9-</strong></p>
<p>This would be useful when you need to clean a query string value or the like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/strip-non-alphanumeric-characters-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Browser Contribution v2.0.2 for osCommerce</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 07:07:46 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[file browser]]></category>
		<category><![CDATA[oscommerce]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=13</guid>
		<description><![CDATA[Does adding an image to a product in osCommerce bug you? The only way on a default install is to use the Upload command or if the file already exists on the server then you need to know the correct path/filename.
The osCommerce File Browser contribution is a lightweight file browsing utility that allows you to upload, [...]]]></description>
			<content:encoded><![CDATA[<p>Does adding an image to a product in osCommerce bug you? The only way on a default install is to use the Upload command or if the file already exists on the server then you need to know the correct path/filename.</p>
<p>The osCommerce File Browser contribution is a lightweight file browsing utility that allows you to upload, delete, select files within your images folder. You can create and navigate sub folders too. When editing or creating a new product simply click on &#8220;Choose file&#8221; next to the product image field and select the image you want to use from the popup file browser. This then copies the correct path back to the product image field.</p>
<p><a href="/_lib/oscommerce/contributions/oscFileBrowserv2.0.2.zip">Download the osCommerce File Browser v2.0.2 contribution</a> [zip 297kB]</p>
<p>If you use this contribution please leave a comment giving your thoughts. A link back to my site would also be appreciated.</p>
<h3>Features:</h3>
<ul>
<li>browse and select files</li>
<li>create new folders</li>
<li>upload files</li>
<li>delete files</li>
<li>delete folders</li>
<li>preview images</li>
<li><a title="Screenshot of file library in thumbnail mode" rel="roebox[filelib]" href="/_lib/blog/screen_file-library-thumb.jpg">thumbnail mode</a> to preview all images in a folder</li>
</ul>
<p>This package also includes the phpThumb() class by James Heinrich. (http://phpthumb.sourceforge.net)</p>
<h3>Requirements</h3>
<ul>
<li>GD image library is required for this mod.</li>
<li>PHP 5</li>
<li>osCommerce MS2</li>
<li>UNIX based or Windows web server</li>
<li>Folder based user validation (do not rely on osCommerce&#8217;s security)</li>
<li>Mootools v1.11</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Frameworks &#8211; Mootools Form Validation</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/javascript-frameworks-mootools-form-validation/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/javascript-frameworks-mootools-form-validation/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 07:45:24 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[client side]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=11</guid>
		<description><![CDATA[MooTools is great. I am yet to upgrade to version 1.2 but will most likely integrate the latest version into my next project.
For those readers who think I am talking about a set of spanners for working on cows; 
&#8220;MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. [...]]]></description>
			<content:encoded><![CDATA[<p>MooTools is great. I am yet to upgrade to version 1.2 but will most likely integrate the latest version into my next project.</p>
<p>For those readers who think I am talking about a set of spanners for working on cows; </p>
<p style="padding-left: 30px;">&#8220;MooTools is a <em>compact</em>, <em>modular</em>, <em>Object-Oriented</em> JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write <em>powerful</em>, <em>flexible</em>, and <em>cross-browser</em> code with its elegant, well documented, and <em>coherent API</em>.&#8221; &#8211; <a rel="external" href="http://mootools.net/">http://mootools.net/</a></p>
<p>Admittedly I haven&#8217;t created anything spectacular as I use it predominantly as a time saving tool when developing web sites. Some practical uses that I have found for MooTools so far:</p>
<ul>
<li>dropdown list population &#8211; using AJAX. Is very handy for lists where the second list is dependant on the first</li>
<li>showing / hiding content on a web page, e.g. <a class="toggle" href="#toggle">toggle</a> <span id="toggle" class="hidden" style="background: #EEEEEE;">Aha, you found me!</span></li>
<li>lightbox tool for showing images &#8211; I use <a rel="external" href="http://www.roebox.com/">Roebox</a> as it is very lightweight, e.g. <a title="Jellygnite" rel="roebox" href="http://www.jellygnite.com.au/blog/wp-content/uploads/2008/06/sprite.jpg">view image</a></li>
<li>client-side form validation &#8211; simply enter a class for the input field e.g. class=&#8221;val_required&#8221;</li>
</ul>
<h3>Client-side Form Validation</h3>
<p>The following shows how easy it is to validate forms using the Mootools framework. </p>
<p><a href="/_lib/demos/javascript/form-validation/" class="mb" rel="width:440,height:300">View the demonstration of form validation in action</a></p>
<h4>The javascript: </h4>
<pre class="javascript" name="code">var fields = f.getElements(&#39;*[class^=val_]&#39;);
fields.each(function(element) {
  var lsElementName = jly_get_human_field_name(element.name);
  if((element.hasClass(&#39;val_required&#39;)) &amp;&amp; (lsElementValue==&#39;&#39;)){
    laValidateFields.push(new jly_validator(element,lsElementName+&#39; is required.\n&#39;));
    lbReturnValue = false;
  }
}</pre>
<h4>The HTML:</h4>
<pre class="html" name="code">&lt;input name=&quot;name&quot; id=&quot;name&quot; class=&quot;val_required&quot; /&gt;
&lt;input name=&quot;email&quot; id=&quot;email&quot; class=&quot;val_required val_email&quot; /&gt;
&nbsp;
&nbsp;</pre>
<p>As you can see, it is a very simple process of adding validation. All that is required is adding a class to the input field. The two examples shown here are <em>val_required</em> and <em>val_email</em>. Have a look at the <a href="/_lib/demos/javascript/form-validation/" rel="external">source code of the demo</a> for more information. </p>
<p>The demo uses alert boxes to inform the user that something is missing but you could take it a step further and add inline messages using MooTool&#8217;s <em>injectAfter</em> command. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/javascript-frameworks-mootools-form-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>osCommerce needs a better File Manager</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/oscommerce-needs-a-better-file-manager/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/oscommerce-needs-a-better-file-manager/#comments</comments>
		<pubDate>Wed, 28 May 2008 10:14:16 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[file browser]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[oscommerce]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=8</guid>
		<description><![CDATA[While osCommerce is not my favorite e-commerce package, it does work and is relatively easy to get up and running. And of course, being open source, is free. I have implemented it for a number of clients. One problem I did have with it was with the process of adding an image to a product. [...]]]></description>
			<content:encoded><![CDATA[<p>While osCommerce is not my favorite e-commerce package, it does work and is relatively easy to get up and running. And of course, being open source, is free. I have implemented it for a number of clients. One problem I did have with it was with the process of adding an image to a product. The default way of adding or changing an image was very awkward. Also, every image was placed into the single folder &#8220;/images&#8221;. There was no obvious method for organising images into sub-folders.</p>
<p>What the system needed was a file manager utility to let the administrator insert some organisation into the images folder. There wasn&#8217;t a contribution at the time that suited my needs so I decided to create one myself.</p>
<p>Based on the simple File Browser from by Steve Blinch [code.blitzaffe.com] and using his excellent DirecTemplate system I have created an easy to use File Browser for osCommerce.</p>
<p>The current version is a complete rewrite of version 1. Version 1 was a bit quick and dirty. <a href="http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/">Version 2+ of the File Manager</a> has addressed any CSS problems and now runs on both Windows and *NIX based servers. It also has some new features including <a title="Screenshot of file library in thumbnail mode" rel="roebox[filelib]" href="/_lib/blog/screen_file-library-thumb.jpg">thumbnail view</a> and a more intuitive preview mode.</p>
<p>Version 1 is available from the <a href="http://www.oscommerce.com/community/contributions,4568">contributions section</a> at the osCommerce web site <span style="text-decoration: line-through;">and I will post Version 2 very soon.</span> (<a href="http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/">Version 2 of the File Manager</a> is now posted.)</p>
<p><a href="http://www.jellygnite.com.au/blog/index.php/archive/file-browser-contribution-v2-for-oscommerce/">The osCommerce File Browser v2 contribution is available for download now</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/oscommerce-needs-a-better-file-manager/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A plumber&#8217;s house is full of leaky taps</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/a-plumbers-house-is-full-of-leaky-taps/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/a-plumbers-house-is-full-of-leaky-taps/#comments</comments>
		<pubDate>Tue, 13 May 2008 10:49:52 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=5</guid>
		<description><![CDATA[This was said to me the other day while talking about my website or lack of. Thus prompting to me to get into gear and get my new website up and running. I had been putting it off for too long due to an overload of paying jobs to get through. A single banner stating &#8220;website [...]]]></description>
			<content:encoded><![CDATA[<p><img class="right" src="http://www.jellygnite.com.au/blog/wp-content/uploads/2008/05/leaky_tap.jpg" alt="Leaky tap" width="100" height="100" />This was said to me the other day while talking about my website or lack of. Thus prompting to me to get into gear and get my new website up and running. I had been putting it off for too long due to an overload of paying jobs to get through. A single banner stating &#8220;website coming soon&#8230;&#8221; doesn&#8217;t really cut it.</p>
<p>So, after a few nights work, here it is. I plan on adding useful information to this blog that hopefully you will find helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/a-plumbers-house-is-full-of-leaky-taps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the workspace background colour in Photoshop</title>
		<link>http://www.jellygnite.com.au/blog/index.php/archive/change-the-workspace-background-colour-in-photoshop/</link>
		<comments>http://www.jellygnite.com.au/blog/index.php/archive/change-the-workspace-background-colour-in-photoshop/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 04:24:23 +0000</pubDate>
		<dc:creator>Jim Chisholm</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.jellygnite.com.au/blog/?p=3</guid>
		<description><![CDATA[Ok, I don&#8217;t know how useful this is but I just found out how to change the background colour of the workspace in Photoshop. I could only change the background of an open image, not the overall workspace background.
Instructions

Ensure you have an image open in Photoshop
Choose the paint bucket tool
Set the foreground colour to one [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I don&#8217;t know how useful this is but I just found out how to change the background colour of the workspace in Photoshop. I could only change the background of an open image, not the overall workspace background.</p>
<p><strong>Instructions</strong></p>
<ol>
<li>Ensure you have an image open in Photoshop</li>
<li>Choose the paint bucket tool</li>
<li>Set the foreground colour to one of your liking</li>
<li>Hold down shift while left clicking in the workspace area surrounding your open image</li>
<li>This should fill the workspace with your selected colour</li>
</ol>
<p>All future images will use this workspace colour.</p>
<p>Keep in mind that grey (RGB 128:128:128) is the best colour to use as it is least likely to affect the appearance of the colours within your image. I am using Photoshop 7.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jellygnite.com.au/blog/index.php/archive/change-the-workspace-background-colour-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
