<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>DODSKI</title>
	
	<link>http://www.dodski.com/blog</link>
	<description />
	<lastBuildDate>Fri, 10 Apr 2009 15:23:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Dodski" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Dodski</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>I am active at my other site!</title>
		<link>http://www.dodski.com/blog/?p=136</link>
		<comments>http://www.dodski.com/blog/?p=136#comments</comments>
		<pubDate>Fri, 10 Apr 2009 15:23:26 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=136</guid>
		<description><![CDATA[<p>It&#8217;s been so long since my last post here in my blog but those days and months have passed I&#8217;ve been currently active at my personal website. Tutorials, inspirations,  reference and discussion will be posted at my personal website and&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been so long since my last post here in my blog but those days and months have passed I&#8217;ve been currently active at my personal website. Tutorials, inspirations,  reference and discussion will be posted at my personal website and to all those have subscribe here in my blog you can visit my website and subscribe to my feeds to receive latest updates. The url of my personal website is <a href="http://www.ritchielinao.com/">www.ritchielinao.com</a>. Thanks for the time visiting here in my website and wish you good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=136</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP List Page with CSS Navigation</title>
		<link>http://www.dodski.com/blog/?p=129</link>
		<comments>http://www.dodski.com/blog/?p=129#comments</comments>
		<pubDate>Wed, 04 Feb 2009 09:12:05 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=129</guid>
		<description><![CDATA[<p>When I was making one of my project, I was wondering how can I make an Active Menu using <strong><em>wp_list_page</em></strong> function. The navigation I made was an image and it has a different angle. I was thinking on how can I&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>When I was making one of my project, I was wondering how can I make an Active Menu using <strong><em>wp_list_page</em></strong> function. The navigation I made was an image and it has a different angle. I was thinking on how can I make it active using <strong><em>wp_list_page</em></strong> function without using the manual template for each page. And I was thinking what if I should try using the meta function for custom field in WordPress. And when I tested on how to make an active page with <strong><em>wp_list_page</em></strong> and <strong><em>CSS</em></strong>, the end result was a successful and it is time for me to share to you on how I can make an active menu with <strong><em>wp_list_page</em></strong> function with<span id="more-129"></span> <strong><em>CSS</em></strong>.</p>
<p><strong>Step 1</strong><br />
The code bellow is the function on how to display list of pages of your WordPress blog/cms. And I have separate one menu for the Home page.</p>
<pre><code>&lt;ul&gt;
	&lt;li class="page_item page-item-1 &lt;?php if ( is_home() ) { ?&gt;current_page_item&lt;?php } ?&gt;"&gt;&lt;a href="&lt;?php echo get_settings('home'); ?&gt;/" title="Back to Main Page"&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;?php wp_list_pages('sort_column=menu_order&amp;depth=1&amp;title_li');?&gt;
&lt;/ul&gt;</code></pre>
<p><strong>Step 2</strong><br />
As the default class name for the wp_list_page they have set page_item, page-item-1 and current_page_item. The page-item-1 is set for the menu Home and the rest will be different coz it is dynamic. The number of page-item for the <strong><em>wp_list_page</em></strong> is not random. So lets start the coding for the <strong><em>CSS</em></strong> and I will use three menu for <strong><em>wp_list_page</em></strong> for you to use as sample.</p>
<pre><code>/*Menu for Home*/
#navigation ul li.page-item-1 a{
	background:url(images/home.png) no-repeat left top;
}
#navigation ul li.page-item-1 a:hover{
	background:url(images/home.png) no-repeat left bottom;
}
body#mainPage ul li.current_page_item a{
	background:url(images/home.png) no-repeat left bottom;
}

/*Menu for About*/
#navigation ul li.page-item-2 a{
	background:url(images/about.png) no-repeat left top;
}
#navigation ul li.page-item-2 a:hover{
	background:url(images/about.png) no-repeat left bottom;
}
body#aboutPage ul li.current_page_item a{
	background:url(images/about.png) no-repeat left bottom;
}

/*Menu for Contact*/
#navigation ul li.page-item-3 a{
	background:url(images/</code><code>contact</code><code>.png) no-repeat left top;
}
#navigation ul li.page-item-3 a:hover{
	background:url(images/</code><code>contact</code><code>.png) no-repeat left bottom;
}
body#</code><code>contact</code><code>Page ul li.current_page_item a{
	background:url(images/contact.png) no-repeat left bottom;
}</code></pre>
<p><strong>Step 3</strong><br />
As what I have in my previous tutorial that we are going to give the body an ID Name. Let&#8217;s now make a meta function for custom field of your active menu.</p>
<pre><code>&lt;?php if($body = get_post_meta($post-&gt;ID, 'body-id', true)){; ?&gt;
&lt;body id="&lt;?php echo $body; ?&gt;"&gt;
&lt;?php }else{; ?&gt;
/*Default ID for the main page*/
&lt;body id="mainPage"&gt;
&lt;?php }; ?&gt;</code></pre>
<p><strong>Step 4</strong><br />
Login into your WordPress back-end, edit each of your pages to add a Custom Field for the body by inserting <strong><em>body-id</em></strong> in the name field and input a value for the ID name of your body such as what you have made in the <strong><em>CSS</em></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Active Menu</title>
		<link>http://www.dodski.com/blog/?p=114</link>
		<comments>http://www.dodski.com/blog/?p=114#comments</comments>
		<pubDate>Thu, 29 Jan 2009 06:58:46 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=114</guid>
		<description><![CDATA[<p>For being very busy at work and got lazy sometimes, this new tutorial will help you on how to make an active menu for your website. This tutorial is good for static and dynamic website, depends on how your gonna&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>For being very busy at work and got lazy sometimes, this new tutorial will help you on how to make an active menu for your website. This tutorial is good for static and dynamic website, depends on how your gonna use it.</p>
<p>For this tutorial, I&#8217;ll be using one of my CSS Navigation tutorial. Let&#8217;s choose <a href="http://www.dodski.com/blog/?p=86">CSS Advanced Navigation</a>. And I&#8217;m gonna copy the css code for home navigation.</p>
<pre><code>
/* -- Normal Menu that is not active -- */
ul#navigation li.home a{
background:url(09.jpg) no-repeat 0 0;
}

/* -- Hover Menu that is not active -- */
ul#navigation li.home a:hover{
background:url(09.jpg) no-repeat 0 -30px;
}
</code></pre>
<p>And for you to make a active menu you need to give your <strong><em>HTML body</em></strong> an ID, for me I&#8217;ll name it <strong><em>mainPage</em></strong>. For class? Don&#8217;t know if it will<span id="more-114"></span> work coz I haven&#8217;t tried it before.</p>
<pre><code>
/* -- Active Menu for a current page -- */
body#mainPage ul#navigation li.home a{
background:url(09.jpg) no-repeat 0 -30px;
}
</code></pre>
<p>Why <strong><em>body#mainPage</em></strong>? To make sure that you are calling the HTML body ID. And don&#8217;t forget to call the anchor text <strong><em>&#8220;a&#8221;</em></strong> for you to enable <em>active menu</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dodski Version 7 together with WP 2.7</title>
		<link>http://www.dodski.com/blog/?p=102</link>
		<comments>http://www.dodski.com/blog/?p=102#comments</comments>
		<pubDate>Wed, 21 Jan 2009 15:51:55 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=102</guid>
		<description><![CDATA[<p>Damn that was a long time since my verson 6 of Dodski was online. And it&#8217;s been so long with no posting article and tutorials here in my blog. I got busy because of work, planning for this new design,&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Damn that was a long time since my verson 6 of Dodski was online. And it&#8217;s been so long with no posting article and tutorials here in my blog. I got busy because of work, planning for this new design, and other personal stuffs and projects. I do have lots of tutorials coming up my head but I just don&#8217;t have the time to make one. Lazyness is part of it. I also have one big project coming and i&#8217;m gonna be busy again. Hope I can create my own new css tutorials soon. I&#8217;m going to make lots of css tutorials coz I also want to share of what I have learn through self study.</p>
<p>My WordPress is now version 2.7 and it&#8217;s a relief that I have switched to a latest version so it would be easier for me to navigate, faster, very refreshing color scheme. heheh <img src='http://www.dodski.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  My plugins are updates, and others were deleted because I no longer need it.</p>
<p>With new Design for the main page, now the blog is same as my main page and a new tabular layer at the sidebar, Twitter switched to a one line post, Flickr is removed, added new search tool for you to search entries in my blog, and Cform plugin in my contact form to be added soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=102</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress as a CMS</title>
		<link>http://www.dodski.com/blog/?p=100</link>
		<comments>http://www.dodski.com/blog/?p=100#comments</comments>
		<pubDate>Mon, 06 Oct 2008 07:56:56 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=100</guid>
		<description><![CDATA[<p><a href="http://www.dodski.com/blog/wp-content/myimages/2008/10/rlinao03.jpg"></a></p>
<p>Finally I have made my own WordPress as a CMS. The title of the site is my full name. Visit <a href="http://www.ritchielinao.com">www.ritchielinao.com</a> and take a look. For lock of updates here in my blog, I&#8217;ve been researching for a good function reference&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dodski.com/blog/wp-content/myimages/2008/10/rlinao03.jpg"><img class="alignnone size-full wp-image-101" title="rlinao03" src="http://www.dodski.com/blog/wp-content/myimages/2008/10/rlinao03.jpg" alt="" width="500" height="350" /></a></p>
<p>Finally I have made my own WordPress as a CMS. The title of the site is my full name. Visit <a href="http://www.ritchielinao.com">www.ritchielinao.com</a> and take a look. For lock of updates here in my blog, I&#8217;ve been researching for a good function reference for me to use by customizing WordPress into CMS. It really took me so long to customize the template coz I need to test the functions if it&#8217;s working fine. I made the site only for my personal, freelance and life stream blog. The portfolio I showcase in my new site are websites. There will be no Photo Manipulation and Illustration in the new site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=100</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PBA 2k8: Finalist for Best Blog Design</title>
		<link>http://www.dodski.com/blog/?p=99</link>
		<comments>http://www.dodski.com/blog/?p=99#comments</comments>
		<pubDate>Sat, 20 Sep 2008 16:01:26 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Philippines]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=99</guid>
		<description><![CDATA[<p>WOW!! I can&#8217;t believe it guys. I&#8217;m one of the finalist for <a href="http://www.philippineblogawards.com.ph/2008/09/19/finalists-best-blog-design/">Best Blog Design</a> at <a href="http://www.philippineblogawards.com.ph">Philippine Blog Awards 2008</a>. This is exciting and cool, coz it&#8217;s my first time to join in this national contest.</p>
<p>I comment at the site and&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>WOW!! I can&#8217;t believe it guys. I&#8217;m one of the finalist for <a href="http://www.philippineblogawards.com.ph/2008/09/19/finalists-best-blog-design/">Best Blog Design</a> at <a href="http://www.philippineblogawards.com.ph">Philippine Blog Awards 2008</a>. This is exciting and cool, coz it&#8217;s my first time to join in this national contest.</p>
<p>I comment at the site and mention about money for the ticket. Well, I change my mind coz I&#8217;m just wasting my money to visit there. I&#8217;ll just wait for the final result and not to think too much and expect to win the contest. I&#8217;m already happy that my blog is one of the finalist. So <strong>LET&#8217;S GET IT ON!!!</strong> Hehehehe ^_^</p>
<p><strong>Here are the nominees:</strong><br />
<a href="http://accidentalrebel.com">Accidental Rebel</a><br />
<a href="http://www.allananova.com">Blog of a Freelance Web Designer</a><br />
<a href="http://dodski.com/blog/">Dodski</a><br />
<a href="http://noelperlas.com">Noel Perlas &#8211; Perlas Design Studio</a><br />
<a href="http://octwelve.com/">OctTwelve</a><br />
<a href="http://pinoyteens.net">Pinoy Teens Online</a><br />
<a href="http://redberger.net">Redberger</a><br />
<a href="http://stellify.net/">Stellify</a><br />
<a href="http://strawberrycolada.com/wp/">Strawberry Colada</a><br />
<a href="http://stylemo.com/">Stylemo</a><br />
<a href="http://tonetsdaily.com">Tonet&#8217;s Daily</a><br />
<a href="http://wellwhatever.com">Well Whatever</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=99</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Advanced Navigation</title>
		<link>http://www.dodski.com/blog/?p=86</link>
		<comments>http://www.dodski.com/blog/?p=86#comments</comments>
		<pubDate>Tue, 16 Sep 2008 14:42:32 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=86</guid>
		<description><![CDATA[<p>Today I’ll be teaching you guys on how to design and code advance css navigation. The navigation that I’m going to teach you is a glossy horizontal navigation.</p>
<p>If you haven&#8217;t read my basic css navigation tutorial, click on the link&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Today I’ll be teaching you guys on how to design and code advance css navigation. The navigation that I’m going to teach you is a glossy horizontal navigation.</p>
<p>If you haven&#8217;t read my basic css navigation tutorial, click on the link bellow to learn on how to make your own css navigation.</p>
<p><a href="http://www.dodski.com/blog/?p=67">Basic CSS Navigation</a></p>
<p><a class="demo" href="http://www.dodski.com/tutorials/advanced_navigation/" target="_blank">VIEW DEMO<span>Advanced Navigation</span></a><br />
<span id="more-86"></span></p>
<p><strong>Step 1</strong><br />
Open your photoshop and create new file. Set the width to width 500px and Height 30px. Press letter U in your keyboard to use shape tool but choose only the rounded tool and set the radius to 20px.</p>
<p><img class="alignnone size-full wp-image-87" title="01" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/01.jpg" alt="" width="500" height="30" /></p>
<p><strong>Step 2</strong><br />
Will now add new layer style for navigation. Go to blending option and choose gradient overlay. You can give any color you want for your glossy navigation so before you choose the right color make sure that the two colors will almost match.</p>
<p><img class="alignnone size-full wp-image-88" title="02" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/02.jpg" alt="" width="500" height="30" /></p>
<p><strong>Step 3</strong><br />
Hold press CTRL and click on the layer to select a perfect rounded side marquee tool on your layer and then hold press ALT to delete the top part of the marquee. Don&#8217;t deselect the marquee as of now make a new layer above the first layer and go to your gradient tool to choose your own color.</p>
<p>Click the image bellow to enlarge.<br />
<a href="http://www.dodski.com/blog/wp-content/myimages/2008/08/marquee.jpg"><img class="alignnone size-full wp-image-90" title="marquee" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/marquee.jpg" alt="" width="500" height="132" /></a></p>
<p><img class="alignnone size-full wp-image-89" title="03" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/03.jpg" alt="" width="500" height="30" /></p>
<p><strong>Step 4</strong><br />
And now let&#8217;s create one part of the navigation to make it a glossy navigation. Repeat the same as above by holding CTRL on the first layer, create new layer and put it above the second layer then delete the bottom part of the selected layer marquee.</p>
<p><img class="alignnone size-full wp-image-91" title="glossy" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/glossy.jpg" alt="" width="500" height="30" /></p>
<p>Change the opacity of the layer 3 to 50% and set the layer property to screen.<br />
<img class="alignnone size-full wp-image-92" title="04" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/04.jpg" alt="" width="500" height="30" /></p>
<p>Press CTRL+ALT+C to open canvas option and do the same option i did in the image bellow.<br />
<a href="http://www.dodski.com/blog/wp-content/myimages/2008/09/canvas.jpg"><img class="alignnone size-full wp-image-98" title="canvas" src="http://www.dodski.com/blog/wp-content/myimages/2008/09/canvas.jpg" alt="" width="499" height="303" /></a></p>
<p>Duplicate your glossy navigation bar and do it same as the image bellow.<br />
<img class="alignnone size-full wp-image-93" title="05" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/05.jpg" alt="" width="500" height="60" /></p>
<p><strong>Step 5</strong><br />
Then let’s add some text as your navigation together with the hover effect. Make sure the text is aligned in the center.</p>
<p><img class="alignnone size-full wp-image-95" title="07" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/07.jpg" alt="" width="500" height="61" /></p>
<p>What you see above there is only one hover effect so make more for the others and do the same bellow.<br />
<img class="alignnone size-full wp-image-96" title="hover" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/hover.jpg" alt="" width="500" height="60" /></p>
<p><strong>Step 6</strong><br />
Select one of the hover effect layers and go to blending tool then gradient overlay. The angle should be -90 degree and default gradient color, change the black to lighter one, change it to grey. And select overlay for the blending mode and opacity to 75%. To make your work faster for doing the same for the other hover effect layers, right click on the layer with the blending option settings and copy layer style then right click on the other hover effect layer and click on paste layer style.</p>
<p><img class="alignnone size-full wp-image-97" title="09" src="http://www.dodski.com/blog/wp-content/myimages/2008/08/09.jpg" alt="" width="500" height="60" /></p>
<p><strong>Step 7</strong><br />
In this step will start coding in html. And what we are going to use is unordered list.</p>
<pre><code>&lt;ul id="navigation"&gt;
&lt;li class="home"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li class="about"&gt;&lt;a href="#"&gt;About&lt;/a&gt;&lt;/li&gt;
&lt;li class="photos"&gt;&lt;a href="#"&gt;Photos&lt;/a&gt;&lt;/li&gt;
&lt;li class="blog"&gt;&lt;a href="#"&gt;Blog&lt;/a&gt;&lt;/li&gt;
&lt;li class="contact"&gt;&lt;a href="#"&gt;Contact&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</code></pre>
<p><strong>Step 8</strong><br />
This next step is coding the basic in CSS code for the navigation. So read carefully especially the comment part.</p>
<pre><code>ul#navigation{
	margin:0;
	padding:0;
}
ul#navigation li{
	margin:0;
	padding:0;
	list-style:none;
	float:left;
}
ul#navigation li a{
	margin:0;
	padding:0;
	width:100px; /*All link width are set to 100 pixels*/
	height:30px; /*All link height are set to 30 pixels*/
	text-indent:-2000px; /*Move your text link to 2000 pixels to the left*/
	float:left;
	outline:none;
}</code></pre>
<p><strong>Step 9</strong><br />
Let’s start inserting the image into your unordered list. If you notice the coordinates of 0 0 to -400 0; it is use to position your image navigation to display properly. The first digit is for the left position and the second digit is top position. I used negative coz if the position is set to 0 0, means the image is starting from the left part of the image navigation. So by displaying the second menu properly, you need to give it a negative coordinates for the left position. Then do it the same as the other menu but don&#8217;t forget using basic math for the positioning of your menu. Coz all width is set to 100 pixels.</p>
<pre><code>ul#navigation li.home a{
	background:url(09.jpg) no-repeat 0 0;
}
ul#navigation li.about a{
	background:url(09.jpg) no-repeat -100px 0;
}
ul#navigation li.photos a{
	background:url(09.jpg) no-repeat -200px 0;
}
ul#navigation li.blog a{
	background:url(09.jpg) no-repeat -300px 0;
}
ul#navigation li.contact a{
	background:url(09.jpg) no-repeat -400px 0;
}</code></pre>
<p><strong>Step 10</strong><br />
For the final step, let’s start the hover effect of the image navigation guys. Just copy the code above and paste it in a new line then change the second digit to -30px and then it&#8217;s all done. You advanced navigation is ready to go.</p>
<pre><code>ul#navigation li.home a:hover{
	background:url(09.jpg) no-repeat 0 -30px;
}
ul#navigation li.about a:hover{
	background:url(09.jpg) no-repeat -100px -30px;
}
ul#navigation li.photos a:hover{
	background:url(09.jpg) no-repeat -200px -30px;
}
ul#navigation li.blog a:hover{
	background:url(09.jpg) no-repeat -300px -30px;
}
ul#navigation li.contact a:hover{
	background:url(09.jpg) no-repeat -400px -30px;
</code><code>}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=86</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Concept and Design Tips</title>
		<link>http://www.dodski.com/blog/?p=85</link>
		<comments>http://www.dodski.com/blog/?p=85#comments</comments>
		<pubDate>Thu, 31 Jul 2008 02:27:58 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=85</guid>
		<description><![CDATA[<p>For beginners this post will be a good tips for you to learn the easiest way on how to make a concept when it comes to website. Visit a CSS Showcase website and list everything what you like in the&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>For beginners this post will be a good tips for you to learn the easiest way on how to make a concept when it comes to website. Visit a CSS Showcase website and list everything what you like in the website and how they do it. Make a research if you can&#8217;t solve one part of the problem. Visit some good site for tutorials. Gather lots of information and make a notes. Visualize your concept through hand drawn sketch. And now lets start the step by step concept of your website.<span id="more-85"></span></p>
<p><em><strong>Header</strong></em><br />
When you conceptualize your header you need a good reference. Most of the header design are just plain white or gradient. Others are grungy effect background as a header. Your logo should be simple or creative and it should fit in your header background. Others have a thick border on the top header. And if you make one don&#8217;t copy the concept of their header just used it as a reference and make your own original design.</p>
<p><em><strong>Navigation</strong></em><br />
This one is kinda hard to think, coz you need your navigation to look casual and user friendly. Most of the navigation has little detail of each menu. Don&#8217;t design a navigation that is too small. If you design your navigation give it a size of 18-24 pixels, style should fit on your background header or the whole concept of your website.</p>
<p><em><strong>Sidebar</strong></em><br />
This part of the site is one of the most useful for a website to have. Sidebar is use to display latest updates, category, site links, advertisement, meta log-in, latest events and photos, flickr, and rss/mailing list.</p>
<p>When designing or arranging this part of the site, think of something that will make it commercialize, add some icons as a bullet or icons for each header title or background image. In your side bar, don&#8217;t make too much large font, just normal size or give it a limit of 18/24 pixels for the header title. Add some fancy hover effect of your link or just make it simple.</p>
<p><em><strong>Search Bar</strong></em><br />
If you want to have a search bar on your website, and can&#8217;t think of some good concept in where you want it to appear. Look for a good reference. Some good site with search bar has  a magnifying icon others don&#8217;t.</p>
<p><em><strong>Contents<br />
</strong></em>When making a concept for your contents, think of possibilities what user will read first in yourlanding page. And what you want to be featured in that particular layer.</p>
<p>Other contents don&#8217;t have write up contents on their landing page, just empty space or little introduction of their self/company.</p>
<p><em><strong>Footer</strong></em><br />
The footer is very simple but the question is, how will you make a good concept design to make it eye catchy? But that&#8217;s up to you if you want it to be stylish in designing your footer. Mine is not stylish. Just simple plain black footer.</p>
<p><em><strong>Overall</strong></em><br />
When making a concept always remember that every part of the site will match. Design should be aesthetically done. Your design can be done by abstract illustration, flash animation, typography, grungy texture effect and a design integrated with JQuery/MooTools AJAX.</p>
<p><em><strong>Note: </strong></em>Visit 2008 design trends at <a href="http://www.webdesignerwall.com/trends/2008-design-trends/" target="_blank">Web Designer Wall</a> by Nick La. To view a list of inspirational website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sozin’s Comet: The Final Battle</title>
		<link>http://www.dodski.com/blog/?p=78</link>
		<comments>http://www.dodski.com/blog/?p=78#comments</comments>
		<pubDate>Fri, 25 Jul 2008 02:24:15 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Anime/Cartoons]]></category>
		<category><![CDATA[Anime]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=78</guid>
		<description><![CDATA[<p>Book III of Avatar The Last Bender. Sozin&#8217;s Comet is been release as a two hour movie special. The series has finally ended.</p>
<p></p>
<p>Aang&#8217;s Avatar mode surrounded with Air, Flame, Water and Earth. This is how Aang wins the battle against&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Book III of Avatar The Last Bender. Sozin&#8217;s Comet is been release as a two hour movie special. The series has finally ended.</p>
<p><img class="alignnone size-full wp-image-80" title="Aang" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-36534.png" alt="Avatar Mode" width="500" height="375" /></p>
<p>Aang&#8217;s Avatar mode surrounded with Air, Flame, Water and Earth. This is how Aang wins the battle against the Phoenix King.<span id="more-78"></span></p>
<p><img class="alignnone size-full wp-image-81" title="Phoenix King" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-37140.png" alt="Phoenix King" width="500" height="375" /></p>
<p>When the Sozin&#8217;s Comet have arrived, Fire Lord Ozai change his position as Phoenix King and give the position of Fire Lord to Princess Azula.</p>
<p><a href="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-47240.png"><img class="alignnone size-full wp-image-83" title="Fire Lord" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-47240.png" alt="Fire Lord" width="500" height="375" /></a></p>
<p>When Princess Azula was becoming the Fire Lord, Prince Zuko came to stop Azula and to take the thrown.</p>
<p><img class="alignnone size-full wp-image-82" title="vlcsnap-40402" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-40402.png" alt="" width="500" height="375" /></p>
<p>This scene is the fight of Sister and Brother.</p>
<p><img class="alignnone size-full wp-image-84" title="White Lotus" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/vlcsnap-37778.png" alt="" width="500" height="375" /></p>
<p>This Five are the member of the Order of the White Lotus. Prince Zuko&#8217;s uncle is the one who plan to liberate the Earth Capital, Ba Sing Se, from Fire Nation rule.</p>
<p>Fore more detailed information of this series, please visit <a href="http://en.wikipedia.org/wiki/Avatar:_The_Last_Airbender" target="_blank">Wikipedia</a>.</p>
<p>To jump in the summary of Sozin&#8217;s Comet <a href="http://en.wikipedia.org/wiki/Sozin%27s_Comet">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erika Sawajiri into Vector Illustration</title>
		<link>http://www.dodski.com/blog/?p=76</link>
		<comments>http://www.dodski.com/blog/?p=76#comments</comments>
		<pubDate>Wed, 16 Jul 2008 02:52:13 +0000</pubDate>
		<dc:creator>Ritchie</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.dodski.com/blog/?p=76</guid>
		<description><![CDATA[<p>Every time I&#8217;m not busy in the office without project, I always spend a little time editing a vector art of Erika Sawajiri. This new vector art will be added in my portfolio soon, but I need more time to&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Every time I&#8217;m not busy in the office without project, I always spend a little time editing a vector art of Erika Sawajiri. This new vector art will be added in my portfolio soon, but I need more time to enhance the vector art into a complete new illustration wallpaper that I&#8217;m gonna use in my desktop.</p>
<p><img class="aligncenter size-full wp-image-77" title="compare" src="http://www.dodski.com/blog/wp-content/myimages/2008/07/compare.png" alt="" width="500" height="347" /></p>
<p><span id="more-76"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dodski.com/blog/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
