<?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>Clumsy Blog, a simple online diary &#187; stylesheet</title>
	<atom:link href="http://clumsyblog.com/tag/stylesheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://clumsyblog.com</link>
	<description>ClumsyBlog.com is even a blog, a simple diary with my tools, ideas and progress registered by me related to computers, internet and wordpress specially.</description>
	<lastBuildDate>Sun, 21 Jun 2009 05:34:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cleaker Theme modifications</title>
		<link>http://clumsyblog.com/13/cleaker-theme-modifications/</link>
		<comments>http://clumsyblog.com/13/cleaker-theme-modifications/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 21:02:28 +0000</pubDate>
		<dc:creator>doru</dc:creator>
				<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[cleaker modifications]]></category>
		<category><![CDATA[cleaker theme]]></category>
		<category><![CDATA[clumsy blog]]></category>
		<category><![CDATA[header navigation]]></category>
		<category><![CDATA[navigation bar]]></category>
		<category><![CDATA[style.css]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[wordpress theme modifications]]></category>

		<guid isPermaLink="false">http://clumsyblog.com/?p=13</guid>
		<description><![CDATA[Below is some tips to modify cleaker theme used for Clumsy Bolg


1. Remove withe line between link header navigation and header
In Appreance / Editor / Stylesheet (style.css)
Find:
#header {
    width: 900px;
    background: #fff url(images/header.gif) top center no-repeat;
    height: 104px;
    margin-top: 0;
    color: #fff;]]></description>
			<content:encoded><![CDATA[<p>Below is some tips to modify <a href="http://clumsyblog.com/tag/cleaker-theme/" class="st_tag internal_tag" rel="tag" title="Posts tagged with cleaker theme">cleaker theme</a> used for <a href="http://clumsyblog.com/tag/clumsy-blog/" class="st_tag internal_tag" rel="tag" title="Posts tagged with clumsy blog">Clumsy Blog</a><br />
1. Remove withe line between link <a href="http://clumsyblog.com/tag/header-navigation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with header navigation">header navigation</a> and header<br />
In Appreance / Editor / <a href="http://clumsyblog.com/tag/stylesheet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stylesheet">Stylesheet</a> (<a href="http://clumsyblog.com/tag/stylecss/" class="st_tag internal_tag" rel="tag" title="Posts tagged with style.css">style.css</a>)<br />
Find:<br />
#header {<br />
width: 900px;<br />
background: #fff url(images/header.gif) top center no-repeat;<br />
height: 104px;<br />
margin-top: 0;<br />
color: #fff;</p>
<p>and change to height: 104px;</p>
<p>2. Align navigation from left to right<br />
Find in Appreance / Editor / <a href="http://clumsyblog.com/tag/stylesheet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stylesheet">Stylesheet</a> (<a href="http://clumsyblog.com/tag/stylecss/" class="st_tag internal_tag" rel="tag" title="Posts tagged with style.css">style.css</a>)<br />
ul#Nav li {<br />
float: right;<br />
border-left: 1px solid #fff;<br />
}</p>
<p>and change it to</p>
<p>ul#Nav li {<br />
float: left; &#8211;&gt; align all links in <a href="http://clumsyblog.com/tag/navigation-bar/" class="st_tag internal_tag" rel="tag" title="Posts tagged with navigation bar">navigation bar</a> to the left<br />
border-right: 1px solid #fff; &#8211;&gt; remove white space from left home link to the right last link from <a href="http://clumsyblog.com/tag/navigation-bar/" class="st_tag internal_tag" rel="tag" title="Posts tagged with navigation bar">navigation bar</a><br />
}</p>
<p>3. Change order for navigation links (below header)<br />
In Appreance / Editor / Header (header.php)<br />
Find unordered list Nav:<br />
&lt;ul id=&#8221;Nav&#8221;&gt;<br />
&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&#8217;); ?&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_page(&#8217;home&#8217;)) echo(&#8217;class=&#8221;current&#8221; &#8216;); ?&gt;href=&#8221;&lt;?php<br />
bloginfo(&#8217;url&#8217;); ?&gt;/&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>and change the order, first home page, second any another page</p>
<p>&lt;ul id=&#8221;Nav&#8221;&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_page(&#8217;home&#8217;)) echo(&#8217;class=&#8221;current&#8221; &#8216;); ?&gt;href=&#8221;&lt;?php<br />
bloginfo(&#8217;url&#8217;); ?&gt;/&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&#8217;); ?&gt;<br />
&lt;/ul&gt;</p>
<p>Also, if you want to put &#8220;About&#8221; page last, in the right,<br />
in Pages / Edit page / Attributes in Order box put most big value.<br />
For example for Contact page 0 and for About page 1.</p>
<p>Above two settings will make the <a href="http://clumsyblog.com/tag/navigation-bar/" class="st_tag internal_tag" rel="tag" title="Posts tagged with navigation bar">navigation bar</a> to have that arrangement<br />
Home | Contact | About</p>

	<small>Related posts: </small>
	<ul class="st-related-posts">
	<li><small>No related posts.</small></li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://clumsyblog.com/13/cleaker-theme-modifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
