<?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>LoonDesign &#187; CSS</title>
	<atom:link href="http://kailoon.com/category/tutorials/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://kailoon.com</link>
	<description>Tutorials . Comic . Web Design . Freelance . Blog</description>
	<lastBuildDate>Thu, 15 Dec 2011 05:28:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simple Tabbing System</title>
		<link>http://kailoon.com/simple-tabbing-system/</link>
		<comments>http://kailoon.com/simple-tabbing-system/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 11:00:02 +0000</pubDate>
		<dc:creator>kailoon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kailoon.com/?p=282</guid>
		<description><![CDATA[Today, we are going to learn how to create simple tabbing system. It is a very common technique nowadays. Especially for those magazine site, news or blogs that contain a lot of sections or contents. Tabbing system is very useful to make things look more organized and structure. I know most of you are using [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://kailoon.com/wp-content/uploads/2008/07/tabbing.png" alt="tabbing" class="float" />Today, we are going to learn how to create simple tabbing system. It is a very common technique nowadays. Especially for those magazine site, news or blogs that contain a lot of sections or contents. Tabbing system is very useful to make things look more organized and structure. I know most of you are using JQuery for it. But for me, I am using Savvy UI. Another javascript library. I use it for all my wordpress themes design and development.</p>
<h3>Mission</h3>
<p>Before this, I&#8217;ve release a tutorial about the <a href="http://kailoon.com/css-sliding-door-using-only-1-image/" target="_blank">CSS sliding door using only 1 image</a>. I will extend from there and what we need to do is to modify some codes. Before that, you can<br />
<a href="http://kailoon.com/example/tabbing/" target="_blank"><img src="http://kailoon.com/wp-content/uploads/2008/07/end.png" alt="sample" class="border" /></a>. </p>
<h3>Step 1 &#8211; HTML Structure</h3>
<p>Let&#8217;s start here. This is a basic structure that we need. We need to put everything inside a div that we are going to control using the javascript. Here we use #tab. The beauty of Savvy UI is that the title of the div will be the anchor text for the tab buttons. The x-simpletab-panel is a pre-built class for the tab button within the system to make sure that the content within the div will be included in the tabbing system.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;tab&quot;&gt;
	&lt;div id=&quot;tab-home&quot; title=&quot;Home&quot; class=&quot;x-simpletab-panel&quot;&gt;
        &lt;!--content goes here--&gt;home content
        &lt;/div&gt;&lt;!--tab-home end--&gt;

	&lt;div id=&quot;tab-products&quot; title=&quot;Products&quot; class=&quot;x-simpletab-panel&quot;&gt;
        &lt;!--content goes here--&gt;products content
        &lt;/div&gt;&lt;!--tab-product end--&gt;

	&lt;div id=&quot;tab-blog&quot; title=&quot;Blog&quot; class=&quot;x-simpletab-panel&quot;&gt;
        &lt;!--content goes here--&gt;blog content
        &lt;/div&gt;&lt;!--tab-blog end--&gt;

	&lt;div id=&quot;tab-contact&quot; title=&quot;Contact&quot; class=&quot;x-simpletab-panel&quot;&gt;
        &lt;!--content goes here--&gt;contact content
        &lt;/div&gt;&lt;!--tab-contact end--&gt;
&lt;/div&gt;
</pre>
<h3>Step 2 &#8211; CSS</h3>
<p>For the css part, we will need to create something to suit the system. There will be several auto-generated class for the ul, li and div that we use.</p>
<pre class="brush: css; title: ; notranslate">
body {
	padding: 20px;
	margin: 0;
	color: #666;
	font: 400 80%/150% Verdana, Arial, Helvetica, sans-serif;
}

.simpletab-toolbar-container { /*container for the tab buttons*/
	float: left;
	width: 100%;
}

ul.simpletab-toolbar { /*auto generated ul with specified class */
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #fff;
	float: left;
	clear: left;
}

ul.simpletab-toolbar li {
	float: left;
}

ul.simpletab-toolbar li a {
	float: left;
	text-decoration: none;
	color: #ccc;
	padding: 4px 15px 0 0;
	margin-right: 8px;
	font: 900 14px &quot;Arial&quot;, Helvetica, sans-serif;
}

ul.simpletab-toolbar li a em { /*auto generated em, the useage is same with what we used for the sliding dor as span */
	float: left;
	padding-right: 15px;
	display: block;
	margin-top: -4px;
	height: 24px;
}

ul.simpletab-toolbar li a:hover {
 	color: #0d5f83;
	background: url(&quot;images/blue.png&quot;) no-repeat top right;
}

ul.simpletab-toolbar li a:hover em {
	background: url(&quot;images/blue.png&quot;) no-repeat top left;
}

ul.simpletab-toolbar li a.current {
	background: url(&quot;images/blue.png&quot;) no-repeat top right;
 	color: #0d5f83;
}

ul.simpletab-toolbar li a.current em {
	background: url(&quot;images/blue.png&quot;) no-repeat top left;
}

.simpletab-container { /*auto generated class for the content container */
	margin-top: 10px;
	float: left;
}

.simpletab-container .simpletab-active { /*auto generated class for the active content container */
	display: block;
}

.simpletab-container .simpletab-hidden { /*auto generated class for the in-active content container */
	display: none;
}
</pre>
<h3>Step 3 &#8211; Download the Library and Implement</h3>
<p>We need to build the <a href="http://savvyui.com/download/build/">Library</a> that we need and implement into the codes. What we need is only the Simple Tab under Utilities. Then, implement into our system.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;savvy-build.js&quot;&gt;&lt;/script&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		SUI(document).ready(function(){
    		new SUI.Util.SimpleTab(&quot;#tab&quot;);
		});
	&lt;/script&gt;                                

/*before the head close tag*/
</pre>
<p><a href="http://kailoon.com/example/tabbing/basic.php" target="_blank">The result so far.</a></p>
<h3>Step 4 &#8211; Structure The Contents</h3>
<p>Now, let&#8217;s try to add in some content and style it in what you like. Below is my example for it.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;h1&gt;&lt;a href=&quot;#&quot;&gt;Simple Tab Using Savvy.UI&lt;/a&gt;&lt;/h1&gt;
&lt;div id=&quot;tab&quot;&gt;
&lt;div id=&quot;tab-home&quot; title=&quot;Home&quot; class=&quot;x-simpletab-panel&quot;&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;h3&gt;Home&lt;/h3&gt;
&lt;div class=&quot;post&quot;&gt;
&lt;p&gt;&lt;!--content goes here--&gt;&lt;/p&gt;
&lt;/div&gt;&lt;!--post end--&gt;
&lt;/div&gt;&lt;!--content end--&gt;
&lt;/div&gt;&lt;!--tab-home end--&gt;

&lt;div id=&quot;tab-products&quot; title=&quot;Products&quot; class=&quot;x-simpletab-panel&quot;&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;h3&gt;Products&lt;/h3&gt;
&lt;div class=&quot;post&quot;&gt;
&lt;p&gt;&lt;!--content goes here--&gt;&lt;/p&gt;
&lt;/div&gt;&lt;!--post end--&gt;
&lt;/div&gt;&lt;!--content end--&gt;
&lt;/div&gt;&lt;!--tab-priduct end--&gt;

&lt;div id=&quot;tab-blog&quot; title=&quot;Blog&quot; class=&quot;x-simpletab-panel&quot;&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;h3&gt;Post Title 1&lt;/h3&gt;
&lt;div class=&quot;post&quot;&gt;
&lt;p&gt;&lt;!--content goes here--&gt;&lt;/p&gt;
&lt;/div&gt;&lt;!--post end--&gt;
&lt;/div&gt;&lt;!--content end--&gt;
&lt;/div&gt;&lt;!--tab-blog end--&gt;

&lt;div id=&quot;tab-contact&quot; title=&quot;Contact&quot; class=&quot;x-simpletab-panel&quot;&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;h3&gt;Contact&lt;/h3&gt;
&lt;div class=&quot;post&quot;&gt;
&lt;p&gt;&lt;!--content goes here--&gt;&lt;/p&gt;
&lt;/div&gt;&lt;!--post end--&gt;
&lt;/div&gt;&lt;!--content end--&gt;
&lt;/div&gt;&lt;!--tab-contact end--&gt;

&lt;/div&gt;</pre>
<h3>Step 5- CSS Again</h3>
<p>After that, apply some CSS for it.</p>
<pre class="brush: css; title: ; notranslate">
#tab {
	clear: left;
	width: 100%;
}

.content {
	border: 1px solid #59b9e8;
	background-color: #e0eef4;
	margin-bottom: 15px;
}

.post {
	padding: 0 10px;
}

h3 {
	background: url(images/header.png) repeat-x top left;
	height: 30px;
	font: 900 20px &quot;Times New Roman&quot;, Times, serif;
	color: #fff;
	margin: 0;
	padding: 2px 0 0 10px;
}

body {
	padding: 20px;
	margin: 0;
	color: #666;
	font: 400 80%/150% Verdana, Arial, Helvetica, sans-serif;
}

p {
	padding: 0 0 12px 0;
}

h1 a {
	font: 900 200% &quot;trebuchet MS&quot;;
	color: #59B9E8;
	letter-spacing: -1px;
	margin: 0;
	text-decoration: none;
}

h1 a:hover {
	color: #09f;
}
</pre>
<h3>Conclusion and Download</h3>
<p>It is simple and easy to do. Again, here is the <a href="http://kailoon.com/example/tabbing/" target="_blank">end result</a>. And below is the download for the source files that I used. Cheers!</p>
<div class="interact">
<a href="http://kailoon.com/download/tabbing.zip"><img src="http://kailoon.com/download/download.jpg" alt="Download" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://kailoon.com/simple-tabbing-system/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>CSS Sliding Door using only 1 image</title>
		<link>http://kailoon.com/css-sliding-door-using-only-1-image/</link>
		<comments>http://kailoon.com/css-sliding-door-using-only-1-image/#comments</comments>
		<pubDate>Tue, 27 May 2008 10:48:40 +0000</pubDate>
		<dc:creator>kailoon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kailoon.com/?p=236</guid>
		<description><![CDATA[Before I know about this technique, I was using different images for each of the button I needed in a navigation bar. I found that it is not user friendly and also need more CSS coding. Besides, it is increasing the processing time and bandwidth in loading a site. In this tutorial, I will show [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://kailoon.com/wp-content/uploads/2008/05/sliding-door.png" alt="css sliding door button" class="float"/>Before I know about this technique, I was using different images for each of the button I needed in a navigation bar. I found that it is not user friendly and also need more CSS coding. Besides, it is increasing the processing time and bandwidth in loading a site. In this tutorial, I will show you how to code the navigation bar using only 1 image. I will not cover the image creation part because I think you should know how to do that after follow few of my tutorials in the past. So, start here&#8230;</p>
<p><span id="more-236"></span></p>
<h3>The Image</h3>
<p><center><img src="http://kailoon.com/wp-content/uploads/2008/05/bg.png" alt="css sliding door button" class="border"/></center><br />
I will not show how to create this but I will let you guys download the psd file as a reference. I provided 4 types of colors as default, you can edit them according to your preferences. <a href="http://kailoon.com/wp-content/uploads/2008/05/sliding-door.psd_.zip" title="css sliding door button">Download the psd</a> here and I even prepared the slices for you. What you need in building the navigation menu is only a 493px X 24px image like below.</p>
<p><center><img src="http://kailoon.com/wp-content/uploads/2008/05/blue.png" alt="css sliding door button" class="border"/></center><br />
Before we start, head over and see what we are going to <a href="http://kailoon.com/example/sliding-door/css-sliding-door-blue.html" target="_blank">achieve from this tutorial</a>.</p>
<h3>Concept</h3>
<p>The concept of the sliding door is to use a background image for the buttons in a navigation menu. I am using a span within a link in the list to hold a part of the image. the link itself will hold another part of it. Which means, the important part will be the background-image position. </p>
<h3>HTML</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;ul class=&quot;blue&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;home&quot;&gt;home&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;products&quot;&gt;products&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;blog&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;contact&quot;&gt;contact&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>Now, I add in a <strong>&lt;span&gt;</strong> for each of the link to hold the left hand side of the background image.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;home&quot; class=&quot;current&quot;&gt;&lt;span&gt;home&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;products&quot;&gt;&lt;span&gt;products&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;blog&quot;&gt;&lt;span&gt;blog&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;contact&quot;&gt;&lt;span&gt;contact&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<h3>CSS</h3>
<p><strong>1. &lt;ul&gt; &#8211; Unorder-List</strong></p>
<pre class="brush: css; title: ; notranslate">
ul {
	padding: 5px;
	margin: 10px 0;
	list-style: none;
	float: left;
}

ul li {
	float: left;
	display: inline; /*For ignore double margin in IE6*/
	margin: 0 10px;
}

ul li a {
	text-decoration: none;
	float:left;
	color: #999;
	cursor: pointer;
	font: 900 14px/22px &quot;Arial&quot;, Helvetica, sans-serif;
}

ul li a span {
	margin: 0 10px 0 -10px;
	padding: 1px 8px 5px 18px;
	position: relative; /*To fix IE6 problem (not displaying)*/
	float:left;
}
</pre>
<p>We need to make <strong>list-style</strong> as none because no image for any list within it. I use a <strong>float left</strong> here because I am going to use <strong>float left</strong> for the <strong>&lt;span&gt;</strong> and also <strong>&lt;li&gt;</strong>. I am not going to define a width for it because this is just a sample. </p>
<p><strong>4. &lt;Hover&gt; &#8211; mouse over action</strong></p>
<pre class="brush: css; title: ; notranslate">
ul.blue li a.current, ul.blue li a:hover {
	background: url(images/blue.png) no-repeat top right;
 	color: #0d5f83;
}

ul.blue li a.current span, ul.blue li a:hover span {
	background: url(images/blue.png) no-repeat top left;
}
</pre>
<p>Since we are going to have the same effect for the mouse over and active link. I combine the codes.<br />
<a href="http://kailoon.com/example/sliding-door/css-sliding-door.html" alt="css sliding door button" target="blank">Here is another example with 4 colors</a>.</p>
<h3>Compatibality, Conclusion and Download</h3>
<p>This script has been tested in IE6, 7, Firefox 3.5.5, Safari and Google Chrome. This is a very useful technique which you can re-use in page with only 1 image. It is easy to use and I hope that you guys can understand my poor English explanation. Any question, just send me an email or drop me a comment here. </p>
<h3>Update ( 10th Decemeber 2009 )</h3>
<p>Thanks <strong>Dimitar Yanev</strong> for the advice to not using empty tags, I decided to update the codes. I hope you guys enjoy this little trick!</p>
<div class="interact">
<a href="http://kailoon.com/download/sliding.zip"><img src="http://kailoon.com/download/download.jpg" alt="Download" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://kailoon.com/css-sliding-door-using-only-1-image/feed/</wfw:commentRss>
		<slash:comments>247</slash:comments>
		</item>
		<item>
		<title>5 Useful CSS Tricks</title>
		<link>http://kailoon.com/5-usefull-css-tricks/</link>
		<comments>http://kailoon.com/5-usefull-css-tricks/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 10:40:22 +0000</pubDate>
		<dc:creator>kailoon</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kailoon.com/5-usefull-css-tricks/</guid>
		<description><![CDATA[As you guys know, I am CSS designer now working under a blog advertising company. Most of the time, I deal with the CSS codes and web design. I found that CSS is a useful tool to beautify your website. However, for those who don&#8217;t know CSS, it can be a bit complicated but once [...]]]></description>
			<content:encoded><![CDATA[<p>As you guys know, I am CSS designer now working under a blog advertising company. Most of the time, I deal with the CSS codes and web design. I found that CSS is a useful tool to beautify your website. However, for those who don&#8217;t know CSS, it can be a bit complicated but once you know them well. You can make friends with them but maybe you need to leave your old friend (IE6) first&#8230; All right, today I am going to share some of the CSS tricks with you. So, forget about the graphic tutorials before first. Let&#8217;s learn something different today.</p>
<h3>1. FONT</h3>
<p>Usually, we beautify <a href="http://www.w3.org/TR/REC-CSS2/fonts.html" target="_blank" title="font">font</a> with several line of codes like this :</p>
<style>
h3.my {
	font-size: 28px;
	font-weight: bold;
	font-family: "Arial", Helvetica, sans-serif;
	color: #333333;
	line-height: 24px;
        margin-bottom: 10px;
        padding: 0px;
}
</style>
<pre class="brush: css; title: ; notranslate">
h3.my {
	font-size: 28px;
	font-weight: bold;
	font-family: &quot;Arial&quot;, Helvetica, sans-serif;
	color: #333333;
	line-height: 24px;
}
</pre>
<pre class="brush: xml; title: ; notranslate">
&lt;h3 class=&quot;my&quot;&gt;Loon Design&lt;/h3&gt;
</pre>
<p>Do you find the code is a bit too messy or too long? Here is my solution for them:</p>
<pre class="brush: css; title: ; notranslate">
h3.my {
	font: 900 160%/240% &quot;Arial&quot;, Helvetica, sans-serif;
	color: #333;
}
</pre>
<pre class="brush: xml; title: ; notranslate">
&lt;h3 class=&quot;my&quot;&gt;Loon Design&lt;/h3&gt;</pre>
<p>Will this cut down your coding time? The output will be: <center><br />
<h3 class="my">Loon Design</h3>
<p></center></p>
<ul>
<h3>Tips</h3>
<li>The order of the attributes are font: weight size/line-height family;</li>
<li>400 = normal and 900 for bold</li>
</ul>
<h3>2. Margin and Padding</h3>
<p>Wondering what how to differentiate them? <a href="http://www.w3.org/TR/REC-CSS2/box.html" target="_blank" title="box model">You check this site for details</a>.  We use margin and padding most of the time when we write up the codes. However, I am not to say the padding problem with IE6 ( seriously, I am having a bad time with IE6 during my work, may post it out later ) here but try to give you some tricks on how to make it in 1 line.</p>
<p>Normally, we code like this, we take margin as example :</p>
<pre class="brush: css; title: ; notranslate">
.my {
	margin-top: 10px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
}
</pre>
<p>but now we can make it in 1 line like this :</p>
<pre class="brush: css; title: ; notranslate">
.my {
	margin: 10px 5px 20px 5px;
}
</pre>
<ul>
<h3>Tips</h3>
<li>margin: top right bottom left;</li>
<li>or when you have the same margin for the top and bottom, it become like this : margin: 10px 0;</li>
<li>while margin: 0 auto; means vertically align.</li>
</ul>
<h3>3. Class and ID</h3>
<p>the symbol for <a href="http://www.w3.org/TR/CSS21/selector.html#class-html" target="_blank" title="class selectors">class selectors</a> is (.) while <a href="http://www.w3.org/TR/CSS21/selector.html#id-selectors" target="_blank" title="id selectors">id selectors</a> is (#), but what&#8217;s the different between them? </p>
<ul><strong>ID</strong></p>
<li>IDs identify a specific element and therefore must be unique on the page. It can only be used once in a page.</li>
<li>We consider that it has the higher level than class. It is more specific.</li>
<li>can be used and an anchor name.</li>
</ul>
<ul><strong>Class</strong></p>
<li>Classes mark elements as members of a group and can be used multiple times. </li>
</ul>
<p>Actually, you can use both id and class in a div or element. It&#8217;s priority of attributes are depend on id first.</p>
<h3>4. Ignore by IE &#8211; !important</h3>
<p>This is a trick to write something that ignore by IE but can be run in all browsers. The attributes before the !important will be ignored by IE. </p>
<pre class="brush: css; title: ; notranslate">Example: margin: 20px !important; margin: 10px;</pre>
<p>There will be 20px margin for all browsers except IE which will have the 10px margin. This is useful when you doing some positioning adjustments and most of the time it is showing different result in IE browser.</p>
<h3>5. Block vs. inline level elements</h3>
<p>Most of the HTML elements are block or inline elements. What is the different between them?</p>
<ul><strong>Block</strong></p>
<li>Always begin on a new line.</li>
<li>Height, line-height and top and bottom margins can be manipulated. </li>
<li>Width defaults to 100% of their containing element, unless a width is specified. </li>
<li>Example &lt;div&gt;, &lt;p&gt;, &lt;h1&gt;, &lt;form&gt;, &lt;ul&gt; and &lt;li&gt; </li>
</ul>
<ul><strong>Inline Elements</strong></p>
<li>Always begin on the same line.</li>
<li>Height, line-height and top and bottom margins can&#8217;t be changed. </li>
<li>Width is as long as the text/image and can&#8217;t be manipulated. </li>
<li>Example &lt;span&gt;, &lt;a&gt;, &lt;label&gt;, &lt;input&gt;, &lt;img&gt;, &lt;strong&gt; and &lt;em&gt; </li>
</ul>
<h3>Conclusion</h3>
<p>Well, that&#8217;s all I wish to share with you guys. Feel free to drop me a message if you find any question about the provided tricks. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://kailoon.com/5-usefull-css-tricks/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>

