<?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>Beauty in Design</title>
	<atom:link href="http://beautyindesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://beautyindesign.com</link>
	<description>training and tutorials for all things Joomla</description>
	<lastBuildDate>Thu, 10 Dec 2009 19:43:51 +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>Override Core jQuery Methods</title>
		<link>http://beautyindesign.com/blog/override-core-jquery-methods/</link>
		<comments>http://beautyindesign.com/blog/override-core-jquery-methods/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 19:41:24 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Extending]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=545</guid>
		<description><![CDATA[A recent conversation with some developers brought up a question I&#8217;d never contemplated before:  Can jQuery core methods be overridden?  Well, in short:  Easily, yes!
From perusing the web, it looks like there are several approaches to doing this.  Below is an example I wrote up quickly, to test out the concept.


jQuery.fn.extend({
// [...]]]></description>
			<content:encoded><![CDATA[<p>A recent conversation with some developers brought up a question I&#8217;d never contemplated before:  Can jQuery core methods be overridden?  Well, in short:  Easily, yes!</p>
<p>From perusing the web, it looks like there are several approaches to doing this.  Below is an example I wrote up quickly, to test out the concept.<br />
<span id="more-545"></span></p>
<pre name="code" class="javascript">
jQuery.fn.extend({
// Override the core hide() method
  hide : function() { alert('hide method overriden'); }
});</pre>
<p>And now to test it out:</p>
<pre name="code" class="javascript">
$('#test').click(function() {
     $(p).hide();
});</pre>
<p>When clicking on a link with an id=test, it will use my overridden method.  I know this isn&#8217;t a practical example, but does show how overriding jQuery core methods is possible!</p>
<p>Here&#8217;s another example (view the source): <a href="http://expressionindesign.com/files/jqueryOverride/jquery_override.html">http://expressionindesign.com/files/jqueryOverride/jquery_override.html</a></p>
<h4>Other References</h4>
<ul>
<li>A more complete <a href="http://www.bennadel.com/index.cfm?dax=blog:1624.view">example</a></li>
<li><a href="http://docs.jquery.com/Plugins/Authoring#Using_jQuery.extend_to_extend_jQuery_itself">jQuery Documentation Example</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/override-core-jquery-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Open Response to &#8220;ONE System Real Estate&#8221;</title>
		<link>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/</link>
		<comments>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 12:39:12 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=530</guid>
		<description><![CDATA[I read a blog post yesterday that is a prime example of misunderstanding what Joomla is as a whole.  The website in question tried to up sell their proprietary real estate management system over Joomla.  Apart from the article being terribly misleading, the author himself and potentially the developers of the &#8220;ONE System Real Estate [...]]]></description>
			<content:encoded><![CDATA[<p>I read a blog post yesterday that is a prime example of misunderstanding what Joomla is as a whole.  The website in question tried to up sell their proprietary real estate management system over Joomla.  Apart from the article being terribly misleading, the author himself and potentially the developers of the &#8220;ONE System Real Estate System&#8221; from Boston Logic are leading people, clients, developers, real estate agents, etc. down a misinformed road.  (<a rel="nofollow" href="http://www.realestateseo1.com/joomla-isnt-for-real-estate">Read the post here</a>)</p>
<p><span id="more-530"></span></p>
<p>I&#8217;ve had experience in several real estate websites (one with over 5,000 properties and custom integration into their internal Access database and local MLS).  However, rather than write my thoughts and rebuttal to this company, I am going to let one of my friends, Doug Krum, respond.  He specifically deals with Joomla-based real estate websites.  Here&#8217;s his response:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Upon reading the following link, some items came to mind that weren&#8217;t covered. Keep in mind this comes with many years experience in real estate technology with close workings with top 100 real estate companies in the US.</p>
<p>&gt;&gt;Joomla is an open source content management platform. It was built to make building a generic website easier.</p>
<p>It would more accurate to say that Joomla is a php application used for a web site platform. With this in mind, Joomla is a starting point that can be taken into many directions as long as the right people are at the steering wheel. Since one of Joomla&#8217;s core values is EXTENSIBILITY this means a developer can add or develop plugins and extensions anyway he or she sees fit taking Joomla into a new direction never thought of before. This, in essence, is also an advantage to using open source software.</p>
<p>Since Joomla already has a correct MVC architecture in place, a developer can automatically strengthen the plugin by using the built-in security. The plugin can&#8217;t run unless called by Joomla. Many self-built content management systems (CMS) won&#8217;t have very many security features in place and will fail when it comes to security.</p>
<p>&gt;&gt;It was not built for real estate offices or agents.</p>
<p>Joomla wasn&#8217;t built specifically for real estate just as the IPHONE wasn&#8217;t built for real estate. Should we not use the IPHONE as well? In similar fashion, the IPHONE is a base communications platform that can be taken into many different directions by various industries, real estate, finance, sales, etc. depending on the APP that is loaded.</p>
<p>&gt;&gt;At Boston Logic, we’ve developed the ONE System Real Estate Website Platform, but I’m not going to write about that today.</p>
<p>You should talk about it as it&#8217;s your 12 hour work days that are at risk. Developing a platform is going to put all the changes, bugs, moves, adds back onto your own team. This isn&#8217;t to be taken lightly. Anyone who has been part of a development team knows the work-load that comes with the territory. The idea that any less than 3 full-time people working on a php application project and it&#8217;s going to be a success now and still be around in the future, isn&#8217;t a reality. Projects must move with technology. That movement must be done by real people. Those people cost money. Therefore any reliable, custom-built platform project is going to cost a significant amount.</p>
<p>Now as a customer or real estate office, why would I spend that amount of money, take the risk on an un-verified platform that is either in-secure, not well maintained, going to be bought out by another company or is simply going to disappear either through lack of support for the project or through advancements in technology? As a customer or real estate office, I&#8217;d be better off spending the money on a verified platform, that is known to be secure (with the right people), that is going to be well maintained now and in the future, that isn&#8217;t going to be bought out by anyone and isn&#8217;t going to disappear through a lack of support and will roll with advancements in technology. In fact, I&#8217;d be an inexperienced fool not to use a well supported project. History has more than shown that non-well supported projects die away.</p>
<p>Even more, your own blog is proof of evidence of this principle as it runs off Wordpress. What? You didn&#8217;t create your own? You didn&#8217;t trust a small company who developed their own blogging platform? Why not?</p>
<p>&gt;&gt;Before we invested the thousands of hours that we’ve put into building this system</p>
<p>And it still isn&#8217;t finished. Be prepared to invest many more thousands of hours for things you&#8217;ve missed, didn&#8217;t think about, didn&#8217;t prepare for, had no idea about and for items that aren&#8217;t in existence yet but will be 6 months from now. I really, really feel sorry for your team.</p>
<p>&gt;&gt;Joomla is not built to integrate with an MLS.</p>
<p>Nothing is built to integrate with an MLS. MLS systems are simply application projects (in essence no different than Joomla). Anything that is built to integrate is most likely done so by the MLS developers. Since, MLS systems aren&#8217;t unified across the US or anywhere else, it&#8217;s really irrelevant. As soon as you start dealing with two different MLS systems with two different sets of standards, all hope is lost on any type of easy integration. It must be done like all other integration, by hand.</p>
<p>&gt;&gt;Obviously, joomla doesn’t have a real estate lead management system for you to leverage.</p>
<p>And your team built a custom lead management system? If so, I really, really, really feel sorry for your team. Lead management systems (or CRM) is another project by itself. Every company has trouble figuring out how to integrate their CRM of choice (Tiger, Sugar, PeopleSoft, etc) with their site.</p>
<p>&gt;&gt;Joomla’s content management system is overcomplicated for real estate.</p>
<p>Any item that is powerful and customizable is going to be complicated. This is the nature of customization projects. A good aspect of Joomla exists in the fact that any developer can re-template the admin panel and limit what the end customer uses.</p>
<p>&gt;&gt;Joomla is relatively laborious to style. Our team has worked with Joomla plenty of times. It’s still a bear to make the pages all look good. If you think you’re saving money, think again.</p>
<p>I respectfully disagree. Once template for all pages isn&#8217;t laborious. One of the reasons Joomla has gained popularity is the styling ease of CSS. Possibly your team should brush up on Joomla styling (I can recommend some excellent people). This brings more to the point. If your team can&#8217;t style Joomla, how in the world do you really think you&#8217;re going to support a whole CMS (with CRM integrated)?</p>
<p>&gt;&gt;As a point of reference the last Joomla site that we worked on required about $75,000 in work to get to what the client wanted.</p>
<p>Show the site. This may be true but you fail to show what the site will do. What would it have cost without Joomla? My last pitch I got for a site was $300,000. That&#8217;s a $225,000 savings, if they are the same. Again, to be fair, we don&#8217;t know because you haven&#8217;t told us.</p>
<p>&gt;&gt;Joomla is hard to turn into an effective real estate website. Great real estate websites have lots of features that are not part of the Joomla platform.</p>
<p>And music is hard for everyone except musicians. Using Joomla as a platform for effective real estate websites is easy for a Joomlaian (Joomlaite?).</p>
<p>The big idea here is that the whole reason special item projects exists (Joomla, Drupal, Tiger, Sugar, Peoplesoft, Foxycart, Freshbooks, SAP) is because it&#8217;s been known that developing projects is difficult, costly and time-consuming. Rather than having the support put solely on your teams shoulders, it better to be part of a paying team that pulls resources together to produce a good product.</p>
<p>Think about it this way, who creates their own mapping solution anymore? Why would you when Gmaps, Ymaps, MSNmaps and MapQuest have all done the hard work. If you did build one, would it be any better than what&#8217;s already available? No. Simply choose one you like, integrate it and pay the respective cost.</p>
<p>Real Estate offices are complicated customers that have many complicated moving parts with massive amounts of information with laws that must be followed. Pulling this together has and will continue to be difficult.</p>
<p>Two types of projects exist; the projects that are built with separate blocks and the projects that are all in one solutions. AFAIK, effective and affordable all in one solutions don&#8217;t exist. They are very expensive and only somewhat effective. The projects built with separate blocks excel in some areas and not in others. Integration is a bear but if successful will excel past the alternative. I know of no other way. Joomla can be used a building block for an effective real estate web site.</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>New Joomla Webinars Coming!</title>
		<link>http://beautyindesign.com/blog/new-joomla-webinars-coming/</link>
		<comments>http://beautyindesign.com/blog/new-joomla-webinars-coming/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 13:03:51 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=523</guid>
		<description><![CDATA[You heard it right!  Now get training from the comfort of your own home / office with JoomlaTraining.com&#8217;s Joomla webinar series.  The new series is going to feature lots of great Joomla tutorials and more.  Attendees can interact with each other, ask questions, re-visit the recorded session, and more.
Check out two that are coming up:  [...]]]></description>
			<content:encoded><![CDATA[<p>You heard it right!  Now get training from the comfort of your own home / office with <a href="http://joomlatraining.com">JoomlaTraining.com</a>&#8217;s <a href="https://joomlatraining.webex.com">Joomla webinar</a> series.  The new series is going to feature lots of great Joomla tutorials and more.  Attendees can interact with each other, ask questions, re-visit the recorded session, and more.</p>
<p>Check out two that are coming up:  <a href="https://joomlatraining.webex.com">HTML to Joomla conversion</a> and <a href="https://joomlatraining.webex.com">Joomla SEO Essentials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/new-joomla-webinars-coming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Limited Offer:  SOLD OUT Get a custom design and/or Joomla template for a low price!</title>
		<link>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/</link>
		<comments>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/#comments</comments>
		<pubDate>Sat, 09 May 2009 20:57:14 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=471</guid>
		<description><![CDATA[
SOLD OUT&#8230;..
You heard right!  For the first five people to sign-up, they will get their choice of a custom design or a sliced, coded Joomla template from their design of choice (OR BOTH).  It&#8217;s a deal Marco nor I have ever offered to the community and now is the chance to jump in!
Two [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Special Web Design Package" src="http://beautyindesign.com/images/banners/special_may.jpg" alt="Special Web Design Package for Joomla!" width="540" height="300" /></p>
<h3>SOLD OUT&#8230;..</h3>
<p>You heard right!  For the <em>first five people to sign-up</em>, they will get their choice of a <strong>custom design</strong> or a <strong>sliced, coded Joomla template</strong> from their design of choice <em>(OR BOTH)</em>.  It&#8217;s a deal Marco nor I have ever offered to the community and now is the chance to jump in!</p>
<h3>Two Great Services for $500 each!</h3>
<p>Either one of the services is <em>$500</em> (that&#8217;s a <em>$400 discount off the normal prices</em>)!  So that means you can choose to have your Photoshop layout converted into a Joomla template for $500 or get a custom designed Photoshop layout for your site for $500 or get a whole new design and Joomla template ready to go for $1,000!</p>
<h3>Custom design for your website</h3>
<p>The custom design special offer has the following benefits:</p>
<ul>
<li>Personal interview from Marco to get your likes, dislikes, etc.</li>
<li>One design and one revision.</li>
<li>Deliverable is a design comp in Photoshop (PSD) format.</li>
</ul>
<h3>Sliced, coded Joomla template</h3>
<p>The sliced, Joomla template special offer has the following benefits:</p>
<ul>
<li>Converted graphic file (Must be a Photoshop file) to Valid XHTML/CSS Markup</li>
<li>Fast-loading and built with search engine friendly code</li>
<li>Fully compatible in browsers: IE6, IE7, Safari 3, Firefox 3</li>
<li>Deliverable is both an HTML and Joomla template</li>
</ul>
<h3>About the Designers</h3>
<p>Rick and Marco have worked together for a while, collaborating to make beautiful websites, here&#8217;s some more about them:</p>
<p><img style="float: left; margin: 0 10px 10px 0; border: solid 5px #ccc" title="rick" src="http://beautyindesign.com/wp-content/uploads/2009/05/rick.jpg" alt="rick" width="75" height="80" /><strong>Rick Blalock</strong><br />
Rick Blalock is a partner in the web design firm <a href="http://expressionindesign.com">Expression in Design</a> (XiD), located in Jupiter, Florida. (XiD) specializes in CMS consultancy and custom solutions for medium-size businesses. Rick&#8217;s passion is training clients with one-on-one session, as well as creating video tutorials, and just having fun helping others find their way through the Joomla! world. Rick also is the main contributor to this blog (BiD).</p>
<p><img style="float: left; margin: 0 10px 10px 0; border: solid 5px #ccc" title="marco" src="http://beautyindesign.com/wp-content/uploads/2009/05/marco.jpg" alt="marco" width="75" height="80" /><strong>Marco Suarez</strong><br />
Marco Suarez lives in the small, yet not too small, beautiful city of Greenville, SC. He is one of those creative people. Don&#8217;t ask him to solve a math problem because he is all right-brained. He is an experienced designer and a creative thinker that will take your site&#8217;s look and feel to the next level.  <a href="http://marcosuarez.com">Check out his blog.</a></p>
<p><strong>Some of Marco&#8217;s work:</strong><br />

<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web5_03/' title='web5_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web5_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web5_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web2_03/' title='web2_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web2_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web2_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web1_03/' title='web1_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web1_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web1_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/print9_03/' title='print9_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/print9_03-150x150.jpg" class="attachment-thumbnail" alt="" title="print9_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/final2/' title='final2'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/final2-150x150.jpg" class="attachment-thumbnail" alt="" title="final2" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/1/' title='1'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/1-150x150.jpg" class="attachment-thumbnail" alt="" title="1" /></a>
</p>

		<div id="usermessage2a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/feed/#usermessage2a" method="post" class="cform" id="cforms2form">
		<fieldset class="cf-fs1">
		<legend>Get the Special Offer...</legend>
		<ol class="cf-ol">
			<li id="li-2-2"><label id="label-2-2" for="cf2_field_2"><span>Your Name</span></label><input type="text" name="cf2_field_2" id="cf2_field_2" class="single fldrequired" value=""/><span class="reqtxt"></span></li>
			<li id="li-2-3"><label id="label-2-3" for="cf2_field_3"><span>Email (Paypal email)</span></label><input type="text" name="cf2_field_3" id="cf2_field_3" class="single fldemail fldrequired" value=""/><span class="emailreqtxt"></span></li>
			<li id="li-2-4" class="cf-box-title">Which service would you like?</li>
			<li id="li-2-4items" class="cf-box-group">
				<input type="checkbox" id="cf2_field_4-1" name="cf2_field_4[]" value="design"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-41" for="cf2_field_4-1" class="cf-group-after"><span>Custom Design</span></label>
				<input type="checkbox" id="cf2_field_4-2" name="cf2_field_4[]" value="template"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-42" for="cf2_field_4-2" class="cf-group-after"><span>Sliced, Joomla Template</span></label>
				<input type="checkbox" id="cf2_field_4-3" name="cf2_field_4[]" value="Both"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-43" for="cf2_field_4-3" class="cf-group-after"><span>Both</span></label>
			</li>
			<li id="li-2-5"><label id="label-2-5" for="cf2_field_5"><span>Project Details</span></label><textarea cols="30" rows="8" name="cf2_field_5" id="cf2_field_5" class="area"></textarea></li>
		</ol>
		</fieldset>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working2" id="cf_working2" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure2" id="cf_failure2" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr2" id="cf_codeerr2" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr2" id="cf_customerr2" value="yyycf2_field_3%24%23%24Please%20provide%20a%20valid%20email%20address%21%7C"/>
			<input type="hidden" name="cf_popup2" id="cf_popup2" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton2" id="sendbutton2" class="sendbutton" value="Send" onclick="return cforms_validate('2', false)"/></p>
		</form>
		<p class="linklove" id="ll2"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slide preview of upcoming session at the CMS Expo</title>
		<link>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/</link>
		<comments>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:32:00 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cms expo]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[joomla training]]></category>
		<category><![CDATA[speaking]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=459</guid>
		<description><![CDATA[Here&#8217;s a sneak peak sampling of the slides for my upcoming sessions at the CMS Expo later this month.  I&#8217;m excited to be doing two presentations and thought I&#8217;d share what&#8217;s coming&#8230;
More info on the sessions:
http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html
http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html






]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a sneak peak sampling of the slides for my upcoming sessions at the CMS Expo later this month.  I&#8217;m excited to be doing two presentations and thought I&#8217;d share what&#8217;s coming&#8230;<strong><span id="more-459"></span></strong></p>
<p><strong>More info on the sessions:</strong></p>
<p><a href="http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html">http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html</a><br />
<a href="http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html">http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html</a></p>
<p><strong>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-1-2/' title='picture-1'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-1-150x150.png" class="attachment-thumbnail" alt="" title="picture-1" /></a>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-3/' title='picture-3'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-3-150x150.png" class="attachment-thumbnail" alt="" title="picture-3" /></a>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-2-3/' title='picture-2'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-2-150x150.jpg" class="attachment-thumbnail" alt="" title="picture-2" /></a>
</p>
<p></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interview about template class coming to Miami and Atlanta</title>
		<link>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/</link>
		<comments>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 19:18:08 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=452</guid>
		<description><![CDATA[Steve over at Alledia and JoomlaTraining.com was kind enough to interview me about the upcoming Joomla template classes coming up.  Thanks for the interview Steve!
See the interview here
I look forward to seeing some of you at the classes.  It will be a great time of learning and fun!


]]></description>
			<content:encoded><![CDATA[<p>Steve over at <a href="http://alledia.com">Alledia</a> and <a href="http://joomlatraining.com">JoomlaTraining.com</a> was kind enough to interview me about the upcoming <a href="http://www.joomlatraining.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=list&amp;cid[]=3&amp;Itemid=102">Joomla template classes</a> coming up.  Thanks for the interview Steve!</p>
<p><a href="http://www.alledia.com/blog/interviews/template-design-class-interview-with-rick-blalock/">See the interview here</a></p>
<p>I look forward to seeing some of you at the classes.  It will be a great time of learning and fun!</p>
<p><span id="more-452"></span></p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/04/allediainterview.jpg"><img class="alignleft size-full wp-image-454" title="Interview on upcoming Joomla template class." src="http://beautyindesign.com/wp-content/uploads/2009/04/allediainterview.jpg" alt="Interview on upcoming Joomla template class." width="540" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to integrate Foxycart &amp; Joomla!</title>
		<link>http://beautyindesign.com/screencasts/how-to-integrate-foxycart-joomla/</link>
		<comments>http://beautyindesign.com/screencasts/how-to-integrate-foxycart-joomla/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 01:58:32 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=442</guid>
		<description><![CDATA[Foxycart is one cool shopping cart / e-commerce solution.  It has a great API, lets you decide how you want to use your store (no bloated CMS comes with it), and is very flexible.  This video will show you how to jump in with Foxycart and Joomla!

Check out Foxycart!
Get the Joomla extensions for Foxycart (as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://foxycart.com">Foxycart</a> is one cool shopping cart / e-commerce solution.  It has a great API, lets you decide how you want to use your store (no bloated CMS comes with it), and is very flexible.  This video will show you how to jump in with Foxycart and Joomla!</p>
<p><span id="more-442"></span><p><a href="http://beautyindesign.com/screencasts/how-to-integrate-foxycart-joomla/"><em>Click here to view the embedded video.</em></a></p></p>
<p>Check out <a title="Foxycart" href="http://foxycart.com">Foxycart</a>!</p>
<p><a href="http://joomextend.com">Get the Joomla extensions</a> for Foxycart (as seen in the video)</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/screencasts/how-to-integrate-foxycart-joomla/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Joomla, SVN, Cornerstone, &amp; SpringLoops</title>
		<link>http://beautyindesign.com/screencasts/joomla-svn-cornerstone-springloops/</link>
		<comments>http://beautyindesign.com/screencasts/joomla-svn-cornerstone-springloops/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 22:43:22 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[cornerstone]]></category>
		<category><![CDATA[springloops]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=431</guid>
		<description><![CDATA[Wow, that title is a mouth full eh?  I&#8217;ve had some readers ask for an easy way to use SVN with their Joomla projects.  Placing your work in a repository is important (even if it&#8217;s front-end stuff like template building)!  I&#8217;ve used a slew of different ways to manage projects and finally have settled into [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, that title is a mouth full eh?  I&#8217;ve had some readers ask for an easy way to use SVN with their Joomla projects.  Placing your work in a repository is important (even if it&#8217;s front-end stuff like template building)!  I&#8217;ve used a slew of different ways to manage projects and finally have settled into a solution that is comfortable for me:  Cornerstone / Terminal &amp; Springloops!  Once you do it 2 or three times, repo-ing your Joomla projects will become second nature.</p>
<p>Here&#8217;s a quick-and-dirty video (hence some of the errors) on how it&#8217;s done&#8230;</p>
<p><span id="more-431"></span><p><a href="http://beautyindesign.com/screencasts/joomla-svn-cornerstone-springloops/"><em>Click here to view the embedded video.</em></a></p></p>
<h2>Resources:</h2>
<ul>
<li><a href="http://www.zennaware.com/cornerstone/" target="_blank">Cornerstone &#8211; SVN for mere mortals</a></li>
<li><a href="http://springloops.com/" target="_blank">SpringLoops &#8211; Hosted source-code management</a></li>
</ul>
<h2>Limited Coupon!</h2>
<p>The guys that made Cornerstone were kind enough to offer a 20% off coupon for the first 10 people to use it from the site!  Just enter:  <em>BEAUTYINDESIGN0409</em> on checkout to get the discount!</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/screencasts/joomla-svn-cornerstone-springloops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick-Loading Joomla Template:  Usability</title>
		<link>http://beautyindesign.com/templates/quick-loading-joomla-template-usability/</link>
		<comments>http://beautyindesign.com/templates/quick-loading-joomla-template-usability/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 20:12:22 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Templates]]></category>
		<category><![CDATA[joomla template]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=349</guid>
		<description><![CDATA[Now Free!
After a long hiatus, I am finally releasing a Joomla 1.5 template!  This template is the representation of how I feel a Joomla template should be:
(1) Specific to a type of use
(2) Simple
(3) fast loading
Thus I call this template &#8220;Usability&#8221;! There aren&#8217;t many bells and whistles.  You should have the freedom to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://beautyindesign.com/templates/quick-loading-joomla-template-usability/"><em>Click here to view the embedded video.</em></a></p>
<h2>Now Free!</h2>
<p>After a long hiatus, I am finally releasing a Joomla 1.5 template!  This template is the representation of how I feel a Joomla template should be:</p>
<p>(1) Specific to a type of use<br />
(2) Simple<br />
(3) fast loading</p>
<p><em>Thus I call this template &#8220;Usability&#8221;!</em> There aren&#8217;t many bells and whistles.  You should have the freedom to decide what javascript library to use, what modules and special effects to include in your site (and there&#8217;s plenty of extensions out there to build upon this design!), so I made sure this template doesn&#8217;t get in the way.</p>
<p><strong>An HTML version comes with it too!</strong></p>
<p><span id="more-349"></span></p>
<p>Want to see it?  <a href="http://beautyindesign.com/templates/usability/" target="_blank">Check out the demo</a> and <a href="http://beautyindesign.com/templates/usability/index.php?option=com_content&amp;view=article&amp;id=48&amp;Itemid=55" target="_blank">simple template instructions</a></p>
<p>To be fair, I did include jQuery for a user requested feature (which was implemented at the last second).  However, I have enabled the jQuery &#8220;NoConflict&#8221; mode so it won&#8217;t interfere with any other scripts you are currently running.  Don&#8217;t want to load the library at all?  No problem!  Just turn it off in the template parameters and you&#8217;re all set.</p>
<h3>Template Features</h3>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/speed.jpg"><img class="alignleft size-full wp-image-365" title="A speedy joomla template" src="http://beautyindesign.com/wp-content/uploads/2009/03/speed.jpg" alt="A speedy joomla template" width="80" height="80" /></a><strong>Speed</strong></p>
<p>This template is really fast.  There&#8217;s a minimal use of images, a nicely spliced CSS file, and really no 3rd party scripts to slow things down.</p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/customersupport.jpg"><img class="alignleft size-full wp-image-363" title="Built in customer support" src="http://beautyindesign.com/wp-content/uploads/2009/03/customersupport.jpg" alt="Built in customer support" width="80" height="80" /></a><strong>Support</strong></p>
<p>What&#8217;s so cool about that?  Integrated into the template administration area is BiD&#8217;s getSatisfaction support area!  What does that mean?  You can issue a support ticket now right from your Joomla administration.  You don&#8217;t even have to visit this site again!  From the template manager you&#8217;ll also have access to the latest BiD news, keeping you up-to-date on template updates, new releases, support tickets, etc.  Cool eh?</p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/modulestyles.jpg"><img class="alignleft size-full wp-image-364" title="Custom module styles" src="http://beautyindesign.com/wp-content/uploads/2009/03/modulestyles.jpg" alt="Custom module styles" width="80" height="80" /></a><strong>Styling</strong></p>
<p>There are a handful of module styles to choose from and easy-to-use template parameters in the Template Manager (so you can toggle stuff you want&#8230;like the color of the template).  There are 3 colors to choose from.</p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/csscode.jpg"><img class="alignleft size-full wp-image-362" title="Joomla standards template" src="http://beautyindesign.com/wp-content/uploads/2009/03/csscode.jpg" alt="Joomla standards template" width="80" height="80" /></a><strong>Standards</strong></p>
<p>Everything validates.  Ok, so maybe that&#8217;s not really a &#8216;feature&#8217; but I thought I&#8217;d mention it anyway.  The CSS code is commented and uses my own, modified version of the Blueprint CSS framework.</p>
<p>Want to see it?  <a href="http://beautyindesign.com/templates/usability/" target="_blank">Check out the demo</a> and <a href="http://beautyindesign.com/templates/usability/index.php?option=com_content&amp;view=article&amp;id=48&amp;Itemid=55" target="_blank">simple template instructions</a></p>
<p><strong>Included is the Joomla 1.5 template, an HTML version, and a layered PSD</strong></p>
<h3>-&gt;<a href="http://beautyindesign.com/downloads/templates/usability_UNZIP_1.0.1.zip">Download the template now</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/templates/quick-loading-joomla-template-usability/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Announcing the Joomla User Group of South Florida</title>
		<link>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/</link>
		<comments>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 20:14:11 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[joomla user group]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=341</guid>
		<description><![CDATA[Great news for us South Floridians (or Floridiots as I have heard some &#8220;northerners&#8221; say)!  I, with some locals, are launching the Joomla User Group of South Florida.  I can&#8217;t wait to get this rolling as I love this type of thing.  Some goals include:

Provide a friendly place for all types of users to meet-up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/picture-1.jpg"><img class="size-medium wp-image-346 alignright" title="JUG Florida" src="http://beautyindesign.com/wp-content/uploads/2009/03/picture-1-300x237.jpg" alt="JUG Florida" width="300" height="237" /></a>Great news for us South Floridians (or Floridiots as I have heard some &#8220;northerners&#8221; say)!  I, with some locals, are launching the <a href="http://floridajoomla.com" target="_blank">Joomla User Group of South Florida</a>.  I can&#8217;t wait to get this rolling as I love this type of thing.  Some goals include:</p>
<ul>
<li>Provide a friendly place for all types of users to meet-up and collaborate</li>
<li>Create a community in South Florida and beyond that can offer opportunities, help, training, and more.</li>
<li>A central place for people to catch up on news regarding Joomla, web design, development, SEO, and more, in the South Florida region.</li>
<li>A place to get students (high-school and college) involved in web design and development.</li>
<li>A place to cultivate business opportunity and business enhancement.</li>
<li>To have a great time with fellow Joomla-ers&#8230;</li>
</ul>
<p><a title="South Florida Joomla User Group" href="http://floridajoomla.com/index.php?option=com_myblog&amp;Itemid=9" target="_blank">Read the full announcement&#8230;<br />
</a></p>
<p>Also, featured on the site is a <a href="http://floridajoomla.com/index.php?option=com_community&amp;view=frontpage&amp;Itemid=7">community</a> for others to join (yes, using the new JomSocial component&#8230;review article coming too).  So come on and join up!</p>
<p>Don&#8217;t forget to <a href="http://www.joomlatraining.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=list&amp;cid[]=3&amp;Itemid=102" target="_blank">register</a> for the Joomla template classes I&#8217;m teaching in <a href="http://www.joomlatraining.com/miami-templates" target="_blank">Miami</a> and <a href="http://www.joomlatraining.com/atlanta-templates" target="_blank">Atlanta</a> this year!</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
