<?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>Kriesi.at - Wordpress Themes and HTML Templates</title>
	<atom:link href="http://www.kriesi.at/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kriesi.at</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 20 Aug 2010 21:26:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Improve your WordPress Navigation Menu Output</title>
		<link>http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output</link>
		<comments>http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output#comments</comments>
		<pubDate>Sun, 18 Jul 2010 20:40:15 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Tutorial]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=1059</guid>
		<description><![CDATA[Wordpress 3 has gone gold and ships with an amazing new menu manager that can be used to control the navigation menus of your website. This tutorial will teach you how to change the default output of this manager since getting a custom output can heavily improve the style of your themes. So first of all here is an <a href="http://www.kriesi.at/themes/avisio/">example of the wordpress menu</a> we want to build.]]></description>
			<content:encoded><![CDATA[<p>WordPress 3 has gone gold and ships with an amazing new menu manager that can be used to control the navigation menus of your website. This tutorial will teach you how to change the default output of this manager, since getting a custom output can heavily improve the style of your themes. So first of all here is an <a href="http://www.kriesi.at/themes/avisio/">example of the wordpress menu</a> we want to build.</p>
<p><span id="more-1059"></span></p>
<h2>How to display the content of the wordpress menu description field</h2>
<p>As you can see, instead of a simple list we got the menu item name and below that name is a small description of that menu item. This is currently a rather popular style that unfortunatley can&#8217;t be done out of the box by wordpress.</p>
<p>As you may already know, once you have created a menu at your wordpress backend at Appearance &gt; Menus you can use a wordpress function called <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu()</a> within your template files to display those menus.</p>
<p>The problem is, the basic output would look something like this:</p>
<pre>&lt;ul id="menu-main"&gt;
    &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;About&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;Contact&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#"&gt;Blog&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>With a basic unordered list like that its almost impossible to create such a menu. So we need to change the output to get this:</p>
<pre>&lt;ul id="menu-main"&gt;
     &lt;li&gt;&lt;a href="#"&gt;&lt;strong&gt;Home&lt;/strong&gt;&lt;span&gt;Starting the journey&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;li&gt;&lt;a href="#"&gt;&lt;strong&gt;About&lt;/strong&gt;&lt;span&gt;What to expect&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;li&gt;&lt;a href="#"&gt;&lt;strong&gt;Contact&lt;/strong&gt;&lt;span&gt;Get in touch!&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;li&gt;&lt;a href="#"&gt;&lt;strong&gt;Blog&lt;/strong&gt;&lt;span&gt; Latest storys&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>The &lt;strong&gt; tags wrap arround the title whereas the description is put into the &lt;span&gt; tags. Those can be styled easily with CSS later on to create this special menu style.</p>
<h2>Preparing the backend</h2>
<p><img class="alignleft size-full wp-image-1063" title="Screen options" src="http://www.kriesi.at/wp-content/uploads/2010/07/screenshot-2010-07-18-um-21.55.29.png" alt="" width="296" height="105" />The first thing we need to do is to setup the menu properly in our backend. WordPress already comes with the option to add a description to each menu item, but it is hidden by default.</p>
<p>When you are at the Appearance &gt; Menus Site you need to look at the top right and you will notice a &#8220;Screen Option&#8221; tab. Click it and you will get the option to display several other input fields for each menu item, among them a checkbox to show the description.</p>
<p><a href="http://www.kriesi.at/wp-content/uploads/2010/07/screenshot-2010-07-18-um-22.44.321.png"><img class="alignleft size-medium wp-image-1070" title="Edit menu" src="http://www.kriesi.at/wp-content/uploads/2010/07/screenshot-2010-07-18-um-22.44.321-300x241.png" alt="" width="300" height="241" /></a>Once that is done,  if you start editing your items you will notice that you can now enter a description for each menu item.</p>
<p>By default wordpress adds a rather long description to menu items that are created by pages, I would recommend to just delete those enourmous novels and just add a few words just like I did.</p>
<p>Now that we have setup the data to display in our backend, its time to prepare the frontend to show that data.</p>
<h2>Editing the output by using a custom walker</h2>
<p>WordPress uses a special &#8220;<strong>Walker</strong>&#8221; class that iterates over each data record and then displays this record accordingly. The cool thing about that is that we can simply create our own <strong>custom walker</strong> extending that PHP class. That way we dont need to care about fetching the stuff from the database or preparing the data arrays. We only need to extend the part of the wordpress code that outputs the list. So open your functions.php file and add the following code:</p>
<pre>class description_walker extends Walker_Nav_Menu
{
      function start_el(&amp;$output, $item, $depth, $args)
      {
           global $wp_query;
           $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

           $class_names = $value = '';

           $classes = empty( $item-&gt;classes ) ? array() : (array) $item-&gt;classes;

           $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
           $class_names = ' class="'. esc_attr( $class_names ) . '"';

           $output .= $indent . '&lt;li id="menu-item-'. $item-&gt;ID . '"' . $value . $class_names .'&gt;';

           $attributes  = ! empty( $item-&gt;attr_title ) ? ' title="'  . esc_attr( $item-&gt;attr_title ) .'"' : '';
           $attributes .= ! empty( $item-&gt;target )     ? ' target="' . esc_attr( $item-&gt;target     ) .'"' : '';
           $attributes .= ! empty( $item-&gt;xfn )        ? ' rel="'    . esc_attr( $item-&gt;xfn        ) .'"' : '';
           $attributes .= ! empty( $item-&gt;url )        ? ' href="'   . esc_attr( $item-&gt;url        ) .'"' : '';

           $prepend = '&lt;strong&gt;';
           $append = '&lt;/strong&gt;';
           $description  = ! empty( $item-&gt;description ) ? '&lt;span&gt;'.esc_attr( $item-&gt;description ).'&lt;/span&gt;' : '';

           if($depth != 0)
           {
                     $description = $append = $prepend = "";
           }

            $item_output = $args-&gt;before;
            $item_output .= '&lt;a'. $attributes .'&gt;';
            $item_output .= $args-&gt;link_before .$prepend.apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID ).$append;
            $item_output .= $description.$args-&gt;link_after;
            $item_output .= '&lt;/a&gt;';
            $item_output .= $args-&gt;after;

            $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
            }
}</pre>
<p>So what does this Class do? This is basically the walker that wordpress is using (I just copied the source code) and added a few lines in the lower third for a better output: The walker now checks if a description is set, and if thats the case it wraps the description into a span tag and appends it to the navigation title.</p>
<p>The walker also checks if we are currently iterating over a sub menu item or a top level item, since our sub menu items do not need to display a description.</p>
<h2>The Function Call</h2>
<p>Now that we have created a custom walker we only need to tell wordpress that it should use our walker instead of its own. This can be easily done by calling the <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu()</a> with the walker parameter set:</p>
<pre>wp_nav_menu( array(
 'container' =&gt;false,
 'menu_class' =&gt; 'nav',
 'echo' =&gt; true,
 'before' =&gt; '',
 'after' =&gt; '',
 'link_before' =&gt; '',
 'link_after' =&gt; '',
 'depth' =&gt; 0,
 'walker' =&gt; new description_walker())
 );
</pre>
<p>Thats it. Once that is done your menu will be output with a completly different code structure that you can easily style with CSS to fit your needs. Here is a short snippet to get you startet:</p>
<pre>.nav{
height:50px;
padding-left:13px;
margin:0;
padding:0;
list-style-type:none;
list-style-position:outside;
position:relative;
}

.nav a{
display:block;
float:left;
line-height:18px;
outline:medium none;
padding:2px 10px;
text-decoration:none;
width:95px;
min-height: 35px;
}

.nav li a strong {
display:block;
font-size:14px;
font-weight:normal;
}

.nav li a span {
display:block;
font-size:10px;
line-height:14px;
}
</pre>
<p>I hope you can utilize this knowledge to push the boundaries of beautiful wordpress generated menus <img src='http://www.kriesi.at/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Avisio &#8211; a Flexible Business &amp; Portfolio WordPress Theme</title>
		<link>http://www.kriesi.at/archives/avisio-a-flexible-business-portfolio-wordpress-theme</link>
		<comments>http://www.kriesi.at/archives/avisio-a-flexible-business-portfolio-wordpress-theme#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:37:43 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=1047</guid>
		<description><![CDATA[Avisio is a Wordpress Theme that takes advantage with all the amazing new wordpress 3 features and hast the ability to create unique skins right from your backend without the need to edit anything within your css files. It also offers the option to install content automatically when setting up the theme...]]></description>
			<content:encoded><![CDATA[<p>Avisio is a WordPress Theme that takes advantage of all the amazing new wordpress 3 features and is best suited for Portfolio and Business Websites.</p>
<p><span id="more-1047"></span>It has the ability to create unique skins right from your backend without the need to edit anything within your css files whith just a few mouse clicks and also offers the option to install content automatically when setting up the theme, so it will look like my theme preview!</p>
<a class="ie6fix rounded download_themeforest" title="" href="http://themeforest.net/item/avisio-business-and-portfolio/113278?ref=Kriesi">Download at Themeforest</a> <a class="ie6fix rounded livedemo_themeforest" title="" href="http://themeforest.net/item/avisio-business-and-portfolio/full_screen_preview/113278?ref=Kriesi">View Live  Demo</a>
<p>That makes it super easy to customize everything, since you can take a look first how its done at the dummy posts and pages.</p>
<p>Take a look at the live preview, I ve created a <a href="http://www.kriesi.at/themes/avisio/">styleswitcher at the frontend</a> so you can change some test values to see how its done. Please be aware that the frontend style-switcher will not be displayed on your site <img src='http://www.kriesi.at/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Key features of the template:</p>
<ul>
<li>Automatic content installation for a fast and easy setup, can be activated optionally</li>
<li>Style switching with color picker and multiple layout and font options.</li>
<li>New WordPress3 Menu support</li>
<li>Slideshow &amp; portfolio custom post types (new WordPress3 feature)</li>
<li><a href="http://aviathemes.com/aviaslider/">AviaSlider</a> included!</li>
<li>Unique Portfolio Sorting/Filtering with a custom jQuery script</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>Cufon font replacement</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/avisio-a-flexible-business-portfolio-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CleanCut WordPress with content installer</title>
		<link>http://www.kriesi.at/archives/cleancut-wordpress-with-content-installer</link>
		<comments>http://www.kriesi.at/archives/cleancut-wordpress-with-content-installer#comments</comments>
		<pubDate>Fri, 25 Jun 2010 09:57:41 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=1020</guid>
		<description><![CDATA[For those of you who didn’t notice it yet, I ve released the WordPress Version of CleanCut a few days ago. This theme comes with an amazing new feature: the content auto installation script.]]></description>
			<content:encoded><![CDATA[<p>For those of you who didn&#8217;t notice it yet, I ve released the WordPress Version of CleanCut a few days ago. This theme comes with an amazing new feature: the content auto installation script. <span id="more-1020"></span></p>
<h5>First of all if you dont know the theme you can take a look at it here</h5>
<a class="ie6fix rounded download_themeforest" title="" href="http://themeforest.net/item/cleancut-business-and-portfolio-wordpress-theme/109677?ref=Kriesi">Download at Themeforest</a> <a class="ie6fix rounded livedemo_themeforest" title="" href="http://themeforest.net/item/cleancut-business-and-portfolio-wordpress-theme/full_screen_preview/109677?ref=Kriesi">View Live Demo</a>
<h3>The Content Auto Installer</h3>
<p>This script imports the data from my live demo into your database so you get can get a glimpse on how to set up posts, pages, slides and other content parts correctly. Its especially usefull for those of you who are new to wordpress, but can also heavily decrease the time needed to setup a site for a seasoned WordPress user.</p>
<p>Please forgive me that the vid is without sound but for some reason the macbook mic wants to record background noise instead of my voice the moment I start to talk <img src='http://www.kriesi.at/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="323" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=81932" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_1116090935.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="525" height="323" src="http://screenr.com/Content/assets/screenr_1116090935.swf" allowfullscreen="true" flashvars="i=81932"></embed></object></p>
<p>Other features of the template:</p>
<ul>
<li>New WordPress3 Menu support</li>
<li>Slideshow, portfolio and testimonial custom post types (new WordPress3 feature)</li>
<li>5 different Portfolio/Item slider, also supporting video! <a href="http://aviathemes.com/aviaslider/">AviaSlider</a> included!</li>
<li>Unique Portfolio Sorting/Filtering with a custom jQuery script</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>Cufon font replacement</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<a class="ie6fix rounded download_themeforest" title="" href="http://themeforest.net/item/cleancut-business-and-portfolio-wordpress-theme/109677?ref=Kriesi">Download at Themeforest</a> <a class="ie6fix rounded livedemo_themeforest" title="" href="http://themeforest.net/item/cleancut-business-and-portfolio-wordpress-theme/full_screen_preview/109677?ref=Kriesi">View Live Demo</a>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/cleancut-wordpress-with-content-installer/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Premium WordPress Gallery Theme: Expose 3 in 1</title>
		<link>http://www.kriesi.at/archives/premium-wordpress-gallery-theme-expose-3-in-1</link>
		<comments>http://www.kriesi.at/archives/premium-wordpress-gallery-theme-expose-3-in-1#comments</comments>
		<pubDate>Thu, 03 Jun 2010 17:37:37 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=769</guid>
		<description><![CDATA[Expose is a CSS and Showcase Gallery Wordpress Template best suited for Gallery Sites and personal Portfolios. It comes with 3 Skins, uses custom widgets and shortcodes as well as plugins.]]></description>
			<content:encoded><![CDATA[<p>Expose is a CSS and Showcase Gallery WordPress Template best suited for Gallery Sites and personal Portfolios. It comes with 3 Skins, uses custom widgets and shortcodes as well as plugins.</p>
<p><span id="more-769"></span></p>
<p>Take a look at the html versions to see the different styles:</p>
<ul>
<li><a href="http://www.kriesi.at/demos/expose/default/">Expose Default</a></li>
<li><a href="http://www.kriesi.at/demos/expose/dark/">Expose Dark</a></li>
<li><a href="http://www.kriesi.at/demos/expose/modern/">Expose Light Modern &#8211; no rounded corners</a></li>
</ul>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0, tableless Design</li>
<li>Multiple Page templates:
<ul>
<li>Index Page with multiple display options
<ul>
<li>Display options switched by javascript on the fly</li>
<li>Stored in cookies so the theme remembers which otion the user has choosen</li>
</ul>
</li>
<li>Ajax Contact Page</li>
<li>Ajax Submit Design Page</li>
<li>And many more&#8230;</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>Image slider for portfolio entries</li>
<li>Gallery display options switched</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Working ajax/php contact form</li>
</ul>
</li>
<li>WordPress Shortcodes for addiotional styling and multiple columns</li>
<li>Additional sidebar widgets to display news, advertising widgets as well as a smart widget which shows either blog or gallery categories depending on which page the user is viewing.</li>
<li>Utilizes postrating plugin by default, no need to download or activate it</li>
<li>Supports WordPress 2.9 and 3.0 with new wordpress 3.0 functions</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<p>As always available at <a href="http://themeforest.net/item/expose-gallery-wordpress-theme-3-in-1/106184?ref=Kriesi">Themeforest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/premium-wordpress-gallery-theme-expose-3-in-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleancut 5 in 1 &#8211; HTML Template</title>
		<link>http://www.kriesi.at/archives/cleancut-5-in-1-html-template</link>
		<comments>http://www.kriesi.at/archives/cleancut-5-in-1-html-template#comments</comments>
		<pubDate>Wed, 21 Apr 2010 17:36:43 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[HTML Template]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=765</guid>
		<description><![CDATA[CleanCut is a HTML Theme, best suited for Portfolio and Business Websites. It comes with 5 fantastic Image and News slideshows that also support video, has multiple Page templates, a very unique portfolio sorting option and of course gives you the possibility to choose from 5 Fantastic skins:]]></description>
			<content:encoded><![CDATA[<p>CleanCut is a HTML Theme, best suited for Portfolio and Business Websites. It comes with 5 fantastic Image and News slideshows that also support video, has multiple Page templates, a very unique portfolio sorting option and of course gives you the possibility to choose from 5 Fantastic skins:<span id="more-765"></span></p>
<ol>
<li><a href="http://www.kriesi.at/demos/cleancut/default/">CleanCut Default</a></li>
<li><a href="http://www.kriesi.at/demos/cleancut/minimal/">CleanCut Minimal</a></li>
<li><a href="http://www.kriesi.at/demos/cleancut/dark_minimal/">CleanCut Minimal Dark</a></li>
<li><a href="http://www.kriesi.at/demos/cleancut/boxed_dark/">CleanCut Boxed Dark</a></li>
<li><a href="http://www.kriesi.at/demos/cleancut/boxed_light/">CleanCut Boxed Light</a></li>
</ol>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0, tableless Design</li>
<li>Multiple Page templates:
<ul>
<li>5 different Index Pages:Box Slider, Curtain Slider, Accordion Slider, Crossfading Slider, News Slider</li>
<li>Single Post Entry</li>
<li>Static Page</li>
<li>Static Page Fullwidth</li>
<li>Blog Overview Page</li>
<li>Portfolio Page</li>
<li>Portfolio Single Page</li>
<li>Ajax Contact Page</li>
<li>And many more&#8230;</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>5 different Portfolio/Item slider, also supporting video!</li>
<li>Unique Portfolio Sorting/Filtering with a custom jQuery script</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>Cufon font replacement</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
</ul>
</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<p>As always the theme is <a href="http://themeforest.net/item/cleancut-5-in-1-business-and-portfolio-template/99235?ref=Kriesi">available at Themeforst</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/cleancut-5-in-1-html-template/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Elementia 4 in 1  &#8211; HTML Template</title>
		<link>http://www.kriesi.at/archives/elementia-4-in-1-html-template</link>
		<comments>http://www.kriesi.at/archives/elementia-4-in-1-html-template#comments</comments>
		<pubDate>Thu, 25 Mar 2010 15:00:47 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[HTML Template]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=761</guid>
		<description><![CDATA[Elementia is a HTML Theme, best suited for Portfolio and Business Websites. It comes with 4 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins.]]></description>
			<content:encoded><![CDATA[<p>Elementia is a HTML Theme, best suited for Portfolio and Business Websites. It comes with 4 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins:<span id="more-761"></span></p>
<ol>
<li><a href="http://www.kriesi.at/demos/elementia/water">Elementia Water</a></li>
<li><a href="http://www.kriesi.at/demos/elementia/fire/">Elementia Fire</a></li>
<li><a href="http://www.kriesi.at/demos/elementia/earth/">Elementia Earth</a></li>
<li><a href="http://www.kriesi.at/demos/elementia/air/">Elementia Air</a></li>
</ol>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0, tableless Design</li>
<li>Multiple Page templates:
<ul>
<li>5 different Index Pages:Curtain Slider, Accordion Slider, Crossfading Slider, News Slider, No-Slider</li>
<li>Single Post Entry</li>
<li>Static Page</li>
<li>Static Page Fullwidth</li>
<li>Blog Overview Page</li>
<li>Portfolio Page</li>
<li>Contact Page</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>4 different Portfolio/Item slider, supporting unlimited items</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>Cufon font replacement</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
</ul>
</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<p>As always,  you can download the template at <a href="http://themeforest.net/item/elementia-4-in-1-business-and-portfolio-template/93582?ref=Kriesi">themeforest</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/elementia-4-in-1-html-template/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&quot;Newscast&quot; &#8211; premium Magazine and Blog WordPress Theme</title>
		<link>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-wordpress-theme</link>
		<comments>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-wordpress-theme#comments</comments>
		<pubDate>Mon, 08 Mar 2010 02:36:13 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=755</guid>
		<description><![CDATA[Newscast is a Wordpress Theme, best suited for Magazines and Blogs. It comes with 3 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins.]]></description>
			<content:encoded><![CDATA[<p>Newscast is a WordPress Theme, best suited for Magazines and Blogs. It comes with 3 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins.</p>
<p><span id="more-755"></span></p>
<p>(skin 2-4 displayed here are only the html versions. The WordPress Version looks the same but of course got all the options and functionallity as well)</p>
<ul>
<li><a href="http://www.kriesi.at/demos/newscast">Newscast light</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/dark/">Newscast dark</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/minimal/">Newscast minimal</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/modern/">Newscast modern</a></li>
</ul>
<p>Take a look at the different slideshow options:</p>
<ul>
<li><a href="http://www.kriesi.at/demos/newscast/">Newscast light &#8211; Accordion Slider</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/light/index_fadeslider.html">Newscast light &#8211; Alternate Slider: Crossfade</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/light/index_newsslider.html">Newscast light &#8211; Alternate Slider: Newsitem Slider</a></li>
</ul>
<p><strong>Key features of the template:</strong></p>
<ul>
<li>Valid XHTM Strict1.0, tableless Design</li>
<li>Multile Page Templates</li>
<li>Contact Form and News Submission Form</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<ul>
<li><strong>jQuery Support:</strong></li>
<li>3 different Portfolio/Item slider, supporting unlimited items</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
<li>Working ajax/php news submission form</li>
</ul>
<ul>
<li><strong>Backend Options for:</strong></li>
<li>both Menus, the Slideshow, Sidebar, Footer, Mainpage, Contact Page, News Submission Form etc</li>
<li>Sidebar: set the sidebar to either use 2 small or 1 big sidebar</li>
<li>Sidebar Widgets: You can set unqiue widget areas for each page or category</li>
</ul>
<p>As always you can get the theme at <a href="http://themeforest.net/item/newscast-4-in-1-wordpress-magazine-and-blog/91058?ref=Kriesi">themeforest</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>&quot;Newscast&quot; &#8211; premium Magazine and Blog HTML Template</title>
		<link>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-html-template</link>
		<comments>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-html-template#comments</comments>
		<pubDate>Sun, 21 Feb 2010 13:01:00 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[HTML Template]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=751</guid>
		<description><![CDATA[Newscast is a HTML Template, best suited for Magazines and Blogs. It comes with 3 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins: Newscast light Newscast dark Newscast minimal Newscast modern Key features of the template: Valid XHTM Strict1.0, tableless Design [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themeforest.net/item/newscast-4-in-1-magazine-and-blog-template/88548?ref=Kriesi"><img class="alignleft size-full wp-image-752" src="http://www.kriesi.at/wp-content/uploads/2010/02/newscast.jpg" alt="newscast" width="514" height="300" /></a>Newscast is a HTML Template, best suited for Magazines and Blogs. It comes with 3 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins:<span id="more-751"></span></p>
<ul>
<li><a href="http://www.kriesi.at/demos/newscast/light">Newscast light</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/dark/">Newscast dark</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/minimal/">Newscast minimal</a></li>
<li><a href="http://www.kriesi.at/demos/newscast/modern/">Newscast modern</a></li>
</ul>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0, tableless Design</li>
<li>Multiple Page templates:
<ul>
<li>3 different Index Pages: Accordion Slider, Crossfading Slider and News Slider</li>
<li>Single Post Entry</li>
<li>Static Page</li>
<li>Static Page Fullwidth</li>
<li>Basic Archive Page</li>
<li>Archive Page with small entries</li>
<li>Contact Page</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>3 different Portfolio/Item slider, supporting unlimited items</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Sleek Image preloader</li>
<li>Working ajax/php contact form</li>
<li>Working ajax/php news submission form</li>
</ul>
</li>
<li>PSD files included</li>
<li>Extensive Documentation Included</li>
</ul>
<p>Newscast is as always available for purchase at <a href="http://themeforest.net/item/newscast-4-in-1-magazine-and-blog-template/88548?ref=Kriesi">Themeforest for as low as 15 $</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/newscast-premium-magazine-and-blog-html-template/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&quot;Display&quot; &#8211; Premium WordPress Theme</title>
		<link>http://www.kriesi.at/archives/display-premium-wordpress-theme</link>
		<comments>http://www.kriesi.at/archives/display-premium-wordpress-theme#comments</comments>
		<pubDate>Mon, 07 Dec 2009 08:39:19 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=743</guid>
		<description><![CDATA[DISPLAY is a Wordpress Theme, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that can be controlled from your backend with a custom tool.]]></description>
			<content:encoded><![CDATA[<p><a href="http://themeforest.net/item/display-3-in-1-business-portfolio-wordpress-/74542?ref=Kriesi"><img class="alignleft size-full wp-image-744" src="http://www.kriesi.at/wp-content/uploads/2009/12/dpwp.jpg" alt="dpwp" width="514" height="300" /></a>DISPLAY is a WordPress Theme, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that can be controlled from your backend with a custom tool. The Theme has a <strong>huge wordpress custom backend</strong> (8 additional Admin Pages) that make customization of the Theme easy for those who dont know much about coding or wordpress. <span id="more-743"></span></p>
<p><strong>Display also has 3 Fantastic skins to choose from:</strong><br />
(The dark and minimal preview are only html previews, just to show you how it looks like. Of course there are fully functional WordPress skins included within this theme)</p>
<ul>
<li><a href="http://www.kriesi.at/demos/display/">display light</a></li>
<li><a href="http://www.kriesi.at/demos/display/dark/">display dark</a></li>
<li><a href="http://www.kriesi.at/demos/display/minimal/">display minimal</a></li>
</ul>
<p>The 3D image slider is editable without the use of flash. you can add and remove slides, change the order, change transitions with the help of a backend .</p>
<p>The Theme also comes with a more subtle fading image slider. You can use this slider as your main slider, otherwise it will be used as a fallback if the users browser doesnt support flash. Take a look at the second image slider here:</p>
<ul>
<li> <a href="http://www.kriesi.at/demos/display/light/index_no3d.html">display light &#8211; alternate slider</a></li>
</ul>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0 and CSS 2.1, tableless Design</li>
<li>Multiple Page templates:
<ul>
<li>Index Page with 3D Slider</li>
<li>Index Page with jQuery Slider</li>
<li>Static Page</li>
<li>Blog Overview Page</li>
<li>Blog/Portfolio Single Page</li>
<li>Portfolio Overview</li>
<li>Contact Page</li>
<li>Error pages, archives etc etc</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>2 different Portfolio/Item slider, supporting unlimited items</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Gallery Page with lightbox</li>
<li>Working ajax/php contact form</li>
</ul>
</li>
<li>Huge admin area to customize the theme from your WordPress backend. (take a look at the <a href="http://themeforest.net/theme_previews/74542-display-3-in-1-business-portfolio-wordpress-">scrrenshots</a> to see some of the options)
<ul>
<li>Menu Manager</li>
<li>Slideshow Manager</li>
<li>Additional Preview Picture section on write post/page panel</li>
<li>Different Widget Area for every Page</li>
<li>and many more&#8230; (8 option Pages for easy customization included)</li>
</ul>
</li>
<li>All PSD files I used are included for easier modification</li>
<li>Extensive Documentation Included</li>
</ul>
<p>External scripts and resources used:</p>
<ul>
<li><a href="http://www.komodomedia.com/download/#social-network-icon-pack">Social Bookmark Icons</a></li>
<li><a href="http://jonasraskdesign.com/downloads/downloads.html">drf icon set</a></li>
<li><a href="http://www.progressivered.com/cu3er/">Cu3er by Stefan Kovac</a></li>
<li><a href="http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/">lightbox plugin </a></li>
<li><a href="http://new.myfonts.com/fonts/exljbris/museo-sans/">logo font: Museo</a></li>
</ul>
<p>Display is now available (as always <img src='http://www.kriesi.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) at <a href="http://themeforest.net/item/display-3-in-1-business-portfolio-wordpress-/74542?ref=Kriesi">Themeforest.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/display-premium-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Premium HTML Template: Display</title>
		<link>http://www.kriesi.at/archives/premium-html-template-display</link>
		<comments>http://www.kriesi.at/archives/premium-html-template-display#comments</comments>
		<pubDate>Wed, 18 Nov 2009 08:25:04 +0000</pubDate>
		<dc:creator>Kriesi</dc:creator>
				<category><![CDATA[HTML Template]]></category>

		<guid isPermaLink="false">http://www.kriesi.at/?p=737</guid>
		<description><![CDATA[DISPLAY is a HTML Template, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that is highly editable with a simple text file]]></description>
			<content:encoded><![CDATA[<p><a href="http://themeforest.net/item/display-3-in-1-business-portfolio-html-theme/70576?ref=Kriesi"><img class="alignleft size-full wp-image-738" src="http://www.kriesi.at/wp-content/uploads/2009/11/display.jpg" alt="display" width="514" height="300" /></a></p>
<p>DISPLAY is a HTML Template, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that is easily editable with a simple text file.</p>
<p><span id="more-737"></span></p>
<p><strong>Display also has 3 Fantastic skins to choose from:</strong></p>
<ul>
<li><a href="http://www.kriesi.at/demos/display/light/">display light</a></li>
<li><a href="http://www.kriesi.at/demos/display/dark/">display dark</a></li>
<li><a href="http://www.kriesi.at/demos/display/minimal/">display minimal</a></li>
</ul>
<p>The 3D image slider is editable without the use of flash. you can add and remove slides, add caption text just by using a simple text configuartion file.<br />
It also comes with a more subtle fading image slider. You can use this slider as your main slider, otherwise it will be used as a fallback if the users browser doesnt support flash. Take a look at the second image slider here:</p>
<p><a href="http://www.kriesi.at/demos/display/light/index_no3d.html">display light &#8211; alternate slider</a></p>
<p>Key features of the template:</p>
<ul>
<li>Valid XHTM Strict1.0 and CSS 2.1, tableless Design</li>
<li>10 Template files:
<ul>
<li>Index Page</li>
<li>Index Page &#8211; Fading Slider</li>
<li>Static Page</li>
<li>Static Page &#8211; Fullwidth</li>
<li>Blog Overview Page</li>
<li>Blog Single Page</li>
<li>Portfolio Overview</li>
<li>Portfolio Single Page</li>
<li>Contact Page</li>
<li>Archive Page</li>
</ul>
</li>
<li>jQuery Support:
<ul>
<li>2 different Portfolio/Item slider, supporting unlimited items</li>
<li>Dropdwon Menu, improved with jQuery</li>
<li>jQuery 100% unobtrusive wich degrades gracefully if javascript is turned off</li>
<li>Gallery Page with lightbox</li>
<li>Working ajax/php contact form</li>
</ul>
</li>
<li>All PSD files I used are included for easier modification</li>
<li>Documentation Included</li>
</ul>
<p>As always, you can get the template for as low as 15$ at <a href="http://themeforest.net/item/display-3-in-1-business-portfolio-html-theme/70576?ref=Kriesi">themeforest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kriesi.at/archives/premium-html-template-display/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
