<?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>Design-Notes &#187; Joomla</title>
	<atom:link href="http://design-notes.info/topics/tutorial/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://design-notes.info</link>
	<description>Design-Notes</description>
	<lastBuildDate>Wed, 23 Jun 2010 16:08:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Turn HTML into a Joomla template in one hour</title>
		<link>http://design-notes.info/tutorial/joomla/turn-html-into-a-joomla-template-in-one-hour/</link>
		<comments>http://design-notes.info/tutorial/joomla/turn-html-into-a-joomla-template-in-one-hour/#comments</comments>
		<pubDate>Fri, 29 May 2009 10:54:50 +0000</pubDate>
		<dc:creator>alexandra</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Joomla template]]></category>

		<guid isPermaLink="false">http://design-notes.info/?p=1406</guid>
		<description><![CDATA[Somehow I think Joomla template is easier to develop than WordPress. The only inconvenience is actually gathering all components you need. A couple of weeks ago, Smashing Magazine released a html template called delli store. I happily saved it and turned it into a joomla template.
You can view the Demo (sorry demo is temporarily not [...]]]></description>
			<content:encoded><![CDATA[<p>Somehow I think Joomla template is easier to develop than WordPress. The only inconvenience is actually gathering all components you need. A couple of weeks ago, Smashing Magazine released a html template called <a href="http://www.smashingmagazine.com/2009/05/02/dellistore-a-free-professional-cssxhtmlpsd-template/">delli store</a>. I happily saved it and turned it into a joomla template.<br />
You can view the <span style="text-decoration: line-through;"><a href="http://design-notes.info/joomla" target="_blank">Demo</a></span> (sorry demo is temporarily not available, it will be back soon . )or <a href="http://design-notes.info/download/delli_joomla.zip">download</a> it for free.</p>
<h2>Developing a Joomla theme is easier than you think</h2>
<p>Take a simple joomla theme <a href="http://www.bestofjoomla.com/component/option,com_bestoftemplate/task,detail/Itemid,46/id,2179/" target="_blank">myBusiness</a> as an example, you only need two files to make Joomla template working<br />
<a href="http://design-notes.info/wp-content/uploads/2009/05/picture-24.png"><img class="alignnone size-full wp-image-1424" title="joomla" src="http://design-notes.info/wp-content/uploads/2009/05/picture-24.png" alt="joomla" width="204" height="180" /></a></p>
<ol>
<li>index.php</li>
<li>templateDetails.xml</li>
</ol>
<h2>What is inside templateDetails.xml</h2>
<p>Xml file is an index, it points out where things are. This is my xml file. It includes three part of information</p>
<ol>
<li>Author detail and copy right crap</li>
<li>file name and directory</li>
<li>Joomla Modules name (usually indicates position)</li>
</ol>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">&nbsp;
        delli store
        2009-05-11
        Alexandra Tong
        info@design-notes.info
        http://www.design-notes.info
GNU/GPL
        1
        DelliStore Template
&nbsp;
                index.php
                templateDetails.xml
                template_thumbnail.png
                images/background.png
                css/template.css
&nbsp;
breadcrumb
left
right
mainnav
user1
user2
user3
user4
footer
top1
top2
top3
top4
top5
top6
lower1
lower2
lower3
lower4
promo1
promo2
promo3
promo4
banner1</pre></div></div>

<p>This is my joomla theme module layout:<br />
<img class="alignnone" title="joomla layout" src="http://img269.imageshack.us/img269/2195/joomlalayout.png" alt="" width="640" height="468" /></p>
<h2>Head</h2>
<p>Joomla&#8217;s language is jdoc &#8230; similar to wp_&#8230; in WordPress. For the head part, copy line 1 to 9.They are same in every template. The default Joomla template is more complicated at this part, cause it has more features. For a simplest template, this is all you need. Pay more attention on <strong>line 10</strong>, this links to your css file.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<h2>Nav</h2>
<p>This is the original html code</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;page&quot;&gt;
&lt;div id=&quot;header&quot;&gt;
&lt;div class=&quot;background&quot;&gt;
&lt;h1&gt;&lt;a href=&quot;index.html&quot;&gt;DelliStore&lt;/a&gt;&lt;/h1&gt;
&lt;ul&gt;
	&lt;li class=&quot;active&quot;&gt;&lt;a href=&quot;index.html&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;about.html&quot;&gt;About Us&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;services.html&quot;&gt;Services&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;contact.html&quot;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>Change the store name in h1 with</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&amp;lt;?php echo <span style="color: #006699; font-weight: bold;">$mainframe</span>-&amp;gt;getCfg('sitename');?&amp;gt;&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;index.php&quot;</span><span style="color: #339933;">&gt;&lt;</span>span<span style="color: #339933;">&gt;</span>getCfg<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sitename'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;&lt;/</span>span<span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Replace the menu with a Joomla module called &#8220;top1&#8243; (line 6). I also made another module called &#8220;promo1&#8243; which is the school board area.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;page&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;header&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;background&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h1<span style="color: #339933;">&gt;&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&amp;lt;?php echo <span style="color: #006699; font-weight: bold;">$mainframe</span>-&amp;gt;getCfg('sitename');?&amp;gt;&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;index.php&quot;</span><span style="color: #339933;">&gt;&lt;</span>span<span style="color: #339933;">&gt;</span>getCfg<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sitename'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;&lt;/</span>span<span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>h1<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;promo&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<h2>Content</h2>
<p>Replace what ever in the block-content class with</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p>original html:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;content&quot;&gt;
&lt;div id=&quot;leftcol&quot;&gt;
&lt;div class=&quot;block&quot;&gt;
&lt;div class=&quot;block-content&quot;&gt;
&lt;h2&gt;Welcome to the &lt;span&gt;DelliStore!&lt;/span&gt;&lt;/h2&gt;
&lt;img class=&quot;cake&quot; src=&quot;img/img-cake.jpg&quot; alt=&quot;Cake&quot; /&gt;
								liquam suscipit. &lt;strong&gt;Integer justo&lt;/strong&gt; erat, bibendum sed, lacinia eu, tristique condimentum, magna. Aliquam augue dolor,
                                tempus sit amet, pharetra nec, blandit elementum, diam. Proin pharetra odio eu lectus sollicitudin ultricies. Suspend
								isse turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse potenti.
&nbsp;
						&lt;a class=&quot;yellow-button&quot; href=&quot;#&quot;&gt;&lt;span&gt;Learn More&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>joomla template php:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;content&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;leftcol&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block-content&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<h2>Sidebar</h2>
<p>Replace sidebarblock-content with module &#8220;right&#8221; using</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">countModules<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'right'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></div></div>

<p>Then I copied the code within</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;block&quot;&gt;&lt;/div&gt;</pre></div></div>

<p>and pasted it right after module &#8220;right&#8221; to add another module called &#8220;user1&#8243; .  We wouldn&#8217;t want anything to appear if I dont activate module user1 so I put</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block-content&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p>within the <strong>if loop</strong><br />
original html:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;rightcol&quot;&gt;
&lt;div class=&quot;block&quot;&gt;
&lt;div class=&quot;block-content&quot;&gt;
&lt;h3&gt;Our &lt;span&gt;Specials!&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Burger&lt;/a&gt;&lt;strong&gt;$4.99&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Chicken Wings&lt;/a&gt;&lt;strong&gt;$5.99&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;French Fries&lt;/a&gt;&lt;strong&gt;$4.99&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Large Pizza&lt;/a&gt;&lt;strong&gt;$12.99&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;a class=&quot;yellow-button&quot;&gt;&lt;span&gt;See Menu&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>joomla template php:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;rightcol&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block-content&quot;</span><span style="color: #339933;">&gt;</span>
						 countModules<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'right'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block&quot;</span><span style="color: #339933;">&gt;</span>countModules<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'user1'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;block-content&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<h2>Rest of the code &#8211; footer</h2>
<p>I added the joomla footer module and rss code after copy rights</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #339933;">&lt;!--</span> <span style="color: #990000;">end</span> <span style="color: #666666; font-style: italic;">#footer --&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;footer&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
©<span style="color: #cc66cc;">2009</span> The DelliStore<span style="color: #339933;">.</span> Design by <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.dellustrations.com/templates.html&quot;</span><span style="color: #339933;">&gt;</span>Dellustrations<span style="color: #339933;">.</span>com<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span> <span style="color: #b1b100;">for</span> <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.smashingmagazine.com&quot;</span><span style="color: #339933;">&gt;</span>Smashing Magazine<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span> Powered by <span style="color: #339933;">&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Joomla&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.joomla.org&quot;</span> target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;_blank&quot;</span><span style="color: #339933;">&gt;</span>Joomla<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span> Developed by <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://design-notes.info&quot;</span><span style="color: #339933;">&gt;</span>Alexandra Tong<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
&nbsp;
    <span style="color: #339933;">&lt;!--</span> <span style="color: #990000;">end</span> <span style="color: #666666; font-style: italic;">#footer --&gt;&lt;/div&gt;</span></pre></div></div>

<h2>CSS</h2>
<p>After getting php done, there are a few issues need to be taken care of by css</p>
<ol>
<li>The promo section in header: I replaced the school board with a blank school board graphic (you can find it in the PSD template).<br />
Stylize it with css</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#header</span> .promo<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">120</span>%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">180px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">630px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">450px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2em</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

</li>
<li>joomla headings:

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">h2<span style="color: #00AA00;">,</span>h3<span style="color: #00AA00;">,</span>.contentheading<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#C0D765</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
.componentheading<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#rightcol</span> <span style="color: #6666ff;">.block</span> h3<span style="color: #00AA00;">,</span><span style="color: #cc00cc;">#rightcol</span> <span style="color: #6666ff;">.contentheading</span><span style="color: #00AA00;">,</span><span style="color: #cc00cc;">#leftcol</span> .contentheading<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span> <span style="color: #933;">2.09em</span> <span style="color: #ff0000;">'Trebuchet MS'</span><span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span>../img/bg-h2.gif<span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">repeat-x</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

</li>
<li>ul in content:

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#leftcol</span> <span style="color: #6666ff;">.links</span> ul<span style="color: #00AA00;">,</span><span style="color: #6666ff;">.contentpaneopen</span> ul <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">170px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#leftcol</span> <span style="color: #6666ff;">.links</span> ul li<span style="color: #00AA00;">,</span><span style="color: #6666ff;">.contentpaneopen</span> ul li<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">7px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#leftcol</span> <span style="color: #6666ff;">.links</span> ul li a<span style="color: #00AA00;">,</span><span style="color: #6666ff;">.contentpaneopen</span> ul li<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#90B094</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">../img/bg-link-bullet.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

</li>
<li>readon button equivalent to the yellow button in original template:

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#content</span> a<span style="color: #6666ff;">.readon</span><span style="color: #00AA00;">,</span><span style="color: #cc00cc;">#header</span> a<span style="color: #6666ff;">.readon</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">.5em</span> <span style="color: #933;">2em</span> <span style="color: #933;">1em</span> <span style="color: #933;">1.5em</span><span style="color: #00AA00;">;</span>font-weight<span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#4A3915</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">../img/bg-submit.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>margin<span style="color: #00AA00;">:</span><span style="color: #933;">24px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

</li>
</ol>
<p>That&#8217;s it all done!! Im sure it is only around an hour&#8217;s work. If you need more information on configuring joomla system please go to <a href="http://www.joomla.org/">joomla&#8217;s official site</a>. I also used a plugin called <a href="http://extensions.joomla.org/extensions/498/details">placehere</a> which displays contents on sidebar (and any other module).</p>



ADD TO<a href="#" onclick="javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"><img src="http://img44.imageshack.us/img44/3714/picture4p.png" alt="Add To Evernote" /></a>  If this helps, why not tell your friends?


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour" title="Reddit"><img src="http://design-notes.info/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour&amp;notes=Somehow%20I%20think%20Joomla%20template%20is%20easier%20to%20develop%20than%20WordPress.%20The%20only%20inconvenience%20is%20actually%20gathering%20all%20components%20you%20need.%20A%20couple%20of%20weeks%20ago%2C%20Smashing%20Magazine%20released%20a%20html%20template%20called%20delli%20store.%20I%20happily%20saved%20it%20and%20tu" title="del.icio.us"><img src="http://design-notes.info/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour" title="StumbleUpon"><img src="http://design-notes.info/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;t=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour" title="Facebook"><img src="http://design-notes.info/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F" title="Technorati"><img src="http://design-notes.info/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour" title="Design Float"><img src="http://design-notes.info/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F" title="Identi.ca"><img src="http://design-notes.info/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour&amp;link=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F" title="FriendFeed"><img src="http://design-notes.info/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;submitHeadline=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour&amp;submitSummary=Somehow%20I%20think%20Joomla%20template%20is%20easier%20to%20develop%20than%20WordPress.%20The%20only%20inconvenience%20is%20actually%20gathering%20all%20components%20you%20need.%20A%20couple%20of%20weeks%20ago%2C%20Smashing%20Magazine%20released%20a%20html%20template%20called%20delli%20store.%20I%20happily%20saved%20it%20and%20tu&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://design-notes.info/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fdesign-notes.info%2Ftutorial%2Fjoomla%2Fturn-html-into-a-joomla-template-in-one-hour%2F&amp;title=Turn%20HTML%20into%20a%20Joomla%20template%20in%20one%20hour&amp;body=Somehow%20I%20think%20Joomla%20template%20is%20easier%20to%20develop%20than%20WordPress.%20The%20only%20inconvenience%20is%20actually%20gathering%20all%20components%20you%20need.%20A%20couple%20of%20weeks%20ago%2C%20Smashing%20Magazine%20released%20a%20html%20template%20called%20delli%20store.%20I%20happily%20saved%20it%20and%20tu" title="Ping.fm"><img src="http://design-notes.info/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://design-notes.info/tutorial/joomla/turn-html-into-a-joomla-template-in-one-hour/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
