<?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>flisterz:blog &#187; css</title>
	<atom:link href="http://www.flisterz.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flisterz.com</link>
	<description>new side of alternative</description>
	<lastBuildDate>Fri, 05 Feb 2010 20:26:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How-to: Bypass Flickr&#8217;s spaceball.gif</title>
		<link>http://www.flisterz.com/2009/12/24/how-to-bypass-flickrs-spaceball-gif-using-firebug/</link>
		<comments>http://www.flisterz.com/2009/12/24/how-to-bypass-flickrs-spaceball-gif-using-firebug/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 13:38:05 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/?p=1217</guid>
		<description><![CDATA[Sometimes, when you found some cool pictures on Flickr, that you like to save for your personal collection of inspiration, you&#8217;d probably encounter the spaceball.gif protection. A faster way to check whether the photo has this spaceball.gif protection is by looking at the buttons above the photo &#8211; if there is no &#8220;All Sizes&#8221; button, [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, when you found some cool pictures on Flickr, that you like to save for your personal collection of inspiration, you&#8217;d probably encounter the spaceball.gif protection. A faster way to check whether the photo has this spaceball.gif protection is by looking at the buttons above the photo &#8211; if there is no &#8220;All Sizes&#8221; button, it is definitely protected. Tradiotional way to go around this problem is to use the screenshot tool.</p>
<p>Now, how can you bypass this protection?</p>
<p>Let&#8217;s find a random photo on Flickr. Here is one, a photo of <a href="http://www.flickr.com/photos/lomod/776504400/">skater</a> by a Flickr user <a href="http://www.flickr.com/people/lomod/">lomoD.xx</a></p>
<p><img class="full-width-img" title="full-flickr" src="http://www.flisterz.com/wp-content/uploads/2009/12/full-flickr1.jpg" alt="full-flickr" width="730" height="250" /></p>
<p>On that page, you can try to save the image, and you&#8217;ll notice that the save dialog box will prompt you to save a file named &#8220;spaceball.gif&#8221;.</p>
<p class="note">Important note: It is the owner&#8217;s right to protect their artworks from irresponsible people who likes to steal other people&#8217;s content. This guide is just to help you to save the image for your personal collection, or if you&#8217;d like to publish it somewhere, it is your responsibility to link it back to the original source.</p>
<h2>Use Firebug</h2>
<p>Yes, that&#8217;s the only tool we need (other than Firefox web browser, for sure). If you&#8217;re not familiar with Firebug, I did cover some <a href="http://www.flisterz.com/2008/12/24/how-to-edit-wordpress-theme-or-css-for-beginners/">guides on my previous tutorial</a>. Fire up Firebug, and use the inspect element and click onto the photo. You&#8217;ll (hopefully) see something like this:</p>
<p><img class="full-width-img" title="full-firebug" src="http://www.flisterz.com/wp-content/uploads/2009/12/full-firebug.jpg" alt="full-firebug" width="730" /></p>
<p>Noticed the file <code>spaceball.gif</code> in the highlighted text on the left column in Firebug? Good. This .GIF file is overlaid onto the real photo that you&#8217;re seeing. So we need to get rid of it. The best way to do it is by modifying the inlined CSS. On the right column of Firebug panel is where you should modify the CSS. Initially, the CSS of the spaceball.gif is :</p>
<pre>element.style {
   display:block;
   left:0;
   position:absolute;
   top:0;
}</pre>
<p>All we have to do is to change the <code>display:block</code> to <code>display:none</code> as shown below.</p>
<p><img class="full-width-img" title="full-firebug-display-none" src="http://www.flisterz.com/wp-content/uploads/2009/12/full-firebug-display-none.jpg" alt="full-firebug-display-none" width="730" height="277" /></p>
<p>Once you&#8217;ve performed this step, you can save the image, without having to deal with the spaceball.gif anymore. Note that this tricks will not allow you to get any other sizes of the photo other than the one you&#8217;re seeing on that page.</p>
<p>Use it wisely, people!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2009/12/24/how-to-bypass-flickrs-spaceball-gif-using-firebug/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Fun with PHP: Randomness</title>
		<link>http://www.flisterz.com/2009/04/18/fun-with-php-randomness/</link>
		<comments>http://www.flisterz.com/2009/04/18/fun-with-php-randomness/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 05:26:24 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/?p=963</guid>
		<description><![CDATA[I have been thinking to write some basic stuff with PHP. Although I learned quite a lot already, but writing a PHP tutorial is not as easy as CSS, because I might be wrong, since in PHP, we need to consider some parameters as the speed, security and stuff &#8211; and I don&#8217;t know that [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking to write some basic stuff with PHP. Although I learned quite a lot already, but writing a PHP tutorial is not as easy as CSS, because I might be wrong, since in PHP, we need to consider some parameters as the speed, security and stuff &#8211; and I don&#8217;t know that much.</p>
<p>So here is the start of my Fun with PHP series (hopefully).</p>
<h2>Random image</h2>
<p>In this tutorial, I&#8217;ll show you how to get images from a directory, and display them on the screen, one by one, randomly, everytime you refresh the page. Yeah, not a difficult thing.</p>
<p>We start by preparing some images. Here, I am using 12 images from my previous <a href="http://www.kreativuse.com/">Kreativuse</a> posts (just because all of them have been set to 450px and 200px). Then, make sure you rename each file in numbers, starting from 1.jpg to 12.jpg. Put everything in a folder, named <code>img</code></p>
<p><img class="size-full wp-image-965" title="Prepare the images" src="http://www.flisterz.com/wp-content/uploads/2009/04/thm.jpg" alt="Prepare the images" /></p>
<p>Then, we should create the index.php file. In this file, we will generate a random number between 1 to 12, and put it in the <code>&lt;img src /&gt;</code> that will handle the image display. Here is the full code structure.</p>
<pre name="code" class="xhtml">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;title&gt; Hey look! &lt;/title&gt;
&lt;link rel="stylesheet" href="style.css" type="text/css" media="screen" /&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;?php $x= rand(1,12); ?&gt;

&lt;div id="box"&gt;
	&lt;h1&gt;Hey Look!&lt;/h1&gt;
	&lt;p&gt;&lt;img src="img/&lt;?php echo $x ;?&gt;.jpg" /&gt;&lt;/p&gt;
	&lt;p&gt;Refresh the page&lt;/p&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Explanation. On line 9, there is a simple PHP line that says <code>&lt;?php $x = rand(1,12); ?&gt;</code>. That means, we are generating a random number from 1 to 12 and apply it to parameter <code>x</code>. Read more about the <a href="http://www.php.net/rand"><code>rand()</code></a> function.</p>
<p>On line 13, we are using the value of that <code>x</code> parameter, and put it in the <code>&lt;img alt="" /&gt;</code> line. So, if the value of <code>x</code> now is &#8216;6&#8242;, the 13th line will be executed as</p>
<p><code>&lt;p&gt;&lt;img src="img/13.jpg" alt="picture" /&gt;&lt;/p&gt;</code></p>
<p>&#8230; and the picture named 13.jpg will be displayed on screen! Easy.</p>
<p>We&#8217;ll now add some CSS to the page with a new file <code>style.css</code>. You can use whatever style you want &#8211; this is just an example:</p>
<pre name="code" class="css">body{
	background: #333;
	font-family: Helvetica;
	font-size: 12px;
	line-height: 18px;
	color: #ccc;
	}
h1{
	font-size: 70px;
	color: #fff;
	letter-spacing: -1px;
	}
#box{
	width: 470px;
	margin: 60px auto 0;
	padding: 0 auto;
	text-align: center;
	}
	#box img{
		border: 5px solid #ccc;
		padding: 4px;
		}</pre>
<p><a href="http://www.flisterz.com/fwp/fwp01/">View the live demo here</a>. Refresh the page several times to see the result.</p>
<h2>Random quote</h2>
<p>Well, sometimes you can see some random quotes on some websites, with a new one appear everytime you refresh the page. Here is one simple (and manual) way to do it.</p>
<p>You can add the following PHP code in the previous index.php file</p>
<pre name="code" class="php">&lt;?php
	$text = array(
		'Hello there and welcome',
		'Okay this is so lame',
		"No I don't like it here",
		'Yeah yeah yeah!',
		'Lorem ipsum dolor emet forever',
		'Lazy dog and brown fox what?',
		);
	$i = rand(0,5);
?&gt;</pre>
<p>The <code>array()</code> line can be written in one single line, but for the sake of readability, better to use multiple lines. Now we have six different phrase in the array called $text. Make sure to put comma (,) at the end of each phrase if you want to add some more into the array. The <code>$i</code> parameter, is used to get a random value from 0 to 5 (total of 6) &#8211; this will be used as our array index number.</p>
<p>Then, add the following in the index.php file, perhaps below the title.</p>
<pre name="code" class="xhtml">&lt;p class="tagline"&gt;&lt;?php echo $text[$i];?&gt;&lt;/p&gt;</pre>
<p>We are displaying one of the phrase in the array. If, let say, the value of <code>$i</code> now is 3, so we are display value in <code>$text[3]</code> which is &#8220;Yeah yeah yeah!&#8221;. (Remember: an array index number starts with 0).</p>
<p><a href="http://www.flisterz.com/fwp/fwp01/index2.php">View the live demo</a> and refresh the page.</p>
<h2>The end.</h2>
<p>Think of what you can do with this. You can have a random website header on your blog if you used the random image technique. Just modify the code a bit.</p>
<p>You can also have random advertisement displayed on the sidebar with the combination of random image and random quote technique. Can you think of it? Think harder. <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2009/04/18/fun-with-php-randomness/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to teach yourself CSS and the web stuff</title>
		<link>http://www.flisterz.com/2009/04/04/how-to-teach-yourself-css-and-the-web-stuff/</link>
		<comments>http://www.flisterz.com/2009/04/04/how-to-teach-yourself-css-and-the-web-stuff/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:00:10 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/?p=944</guid>
		<description><![CDATA[I received a lot of questions from people, how do I learn to build websites? Do I take any classes? Do I read books? Or do I have any kind of mentor? I don&#8217;t really have any fix answer to that question. Considering myself not that expert in this web thingy, I would normally say [...]]]></description>
			<content:encoded><![CDATA[<p>I received a lot of questions from people, how do I learn to build websites? Do I take any classes? Do I read books? Or do I have any kind of mentor? I don&#8217;t really have any fix answer to that question. Considering myself not that expert in this web thingy, I would normally say that I just learn it by looking at other people&#8217;s website and go through as much tutorials as I can.</p>
<p>It is good to know that today&#8217;s kids can learn very fast in anything there are interested in. In becoming a website dude, there are several type of people I&#8217;ve found:</p>
<ul>
<li>Those who really are interested in web design and development.</li>
<li>Those who just want to try something new just for the fun of it</li>
<li>Those who want to make quick money by declaring themselves as freelance web designer.</li>
<li>Those who just want to quickly a create website so they can place advertisements everywhere.</li>
</ul>
<p>Haha.</p>
<p>When you have the passion to learn something, you would do anything in order to tackle it. No, keep bugging other people for every single details is not considered. That means, you don&#8217;t go and ask people without even trying. And you don&#8217;t ask them how to do it &#8211; you asked them to give you some directions and hints. Trust me, the learning is actually the fun part.</p>
<p>Lets go to a step-by-step process that you can try.</p>
<h2>Step 0: Know what to expect.</h2>
<p>You should prepare yourself to undergo some geeky coding experience. Well, some people don&#8217;t expect that because they thought website is just visuals, graphics and texts with some click thing. Designing a website in a graphic software is one thing, and coding is another thing. Plus, it is not something you can learn in just few days. It takes time for you to develop the skills.</p>
<h2>Step 1: Get the free stuff</h2>
<p><img class="alignnone size-full wp-image-956" title="ex1" src="http://www.flisterz.com/wp-content/uploads/2009/04/ex1.jpg" alt="Free layouts" /></p>
<p>Personally, I think it is best to learn from the existing stuff. Download some examples of CSS and XHTML templates &#8211; something like <a href="http://www.hongkiat.com/blog/60-high-quality-free-web-templates-and-layouts/">this</a> and <a href="http://www.1stwebdesigner.com/resources/101-high-quality-css-and-xhtml-free-templates-and-layouts-part-1-2/">this</a>; or if you prefer WordPress themes, you can <a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">have it here</a>. Don&#8217;t be ashamed to try on a simpler layout if you don&#8217;t understand most part of the coding on a complex layout. And you don&#8217;t want to waste too much time just to choose the template.</p>
<h2>Step 2: Explore and Discover</h2>
<p>From the example layouts, you need to go through each files and try to understand each lines of it.  As for understanding, there are a lot of resources available as references. Here are some:</p>
<ul>
<li><a href="http://www.w3schools.com/CSS/">w3school CSS</a></li>
<li><a href="http://www.w3schools.com/xhtml/default.asp">w3shcool xHTML</a></li>
<li><a href="http://codex.wordpress.org/Main_Page">WordPress Codex </a></li>
</ul>
<p>This is the most important (and longest) part of all. How much you understand the code structure will determine how well you&#8217;ll be performing in the later stages. Try to modify the source code. For this, you can either use the ordinary Notepad or Textmate, or you can choose from many <a href="http://www.smashingmagazine.com/2008/05/07/35-useful-source-code-editors-reviewed/">source code editors</a>. It is highly recommended that you use <a href="http://getfirebug.com/">Firebug</a> throughout this process too. You can read my <a href="http://www.flisterz.com/2008/12/24/how-to-edit-wordpress-theme-or-css-for-beginners/">Firebug-related tutorial </a>to learn more.</p>
<p>Be very ambitious &#8211; try to look at as many CSS tutorials as possible. The floats, the positions and everything.</p>
<h2>Step 3: Self-evaluation</h2>
<p>Once you are familiar with the structure of the webste, from the &lt;html&gt; to &lt;head&gt; to &lt;body&gt; down until the end of &lt;/html&gt; and everything in between, you should force yourself into a self-evaluation process. Ditch all the free layouts you downloaded earlier, and start from a blank file.</p>
<p>Create your first page, link to your stylesheet; add the headers, footers and all. Make it fun &#8211; put some colors and images. Style the headings, the hyperlinks, hover effect, and those cool stuff.</p>
<p>When everything looks great on the browser, spend some time to stand up, run and shout around the room for few seconds to celebrate your victory. Haha</p>
<h2>Step 4: Meet the standard</h2>
<p>Once you are familiar with the syntax and everything, you might want to move one step ahead by validating you works to meet the web standards. What are web standards? <a href="http://www.robertnyman.com/2007/05/21/what-are-web-standards-a-comprehensive-explanation-of-what-is-comprised-in-the-term/">Read about it here</a>.</p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/207/476392647_2bd7c3b367_o.jpg" alt="Standard" /></p>
<p><strong>Designing with web standards</strong> by <em>Jeffrey Zeldman</em>; an old book, but that doesn&#8217;t mean you can&#8217;t read it anymore. It was actually the book that gave me the courage to <a href="http://www.flisterz.com/2007/04/29/flisterzcom-with-web-standards/">validate my website for the first time</a>. (It is not valid now, due to unsupported opacity effect in CSS 2.0).</p>
<p>It is a good practice though.</p>
<h2>Step 5: Learn more</h2>
<p class="title">The things you&#8217;ve learn in the early stages may not be enough for a much complex layout. Keep learning new things and tricks. Some useful links: <a title="53 CSS-Techniques You Couldn‚Äôt Live Without" rel="bookmark" href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">53 CSS-Techniques You Couldn&#8217;t Live Without</a> and <a title="53 CSS-Techniques You Couldn‚Äôt Live Without" rel="bookmark" href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">Most Used CSS Tricks</a></p>
<h2 class="title">DONE.</h2>
<p>No, it&#8217;s not done. Never will. Repeat Step 5.</p>
<p>For me, its like using Linux &#8211; if you are a lazy ass person, don&#8217;t bother to install one in your system &#8211; or you&#8217;ll ended up as that annoying dude, to keep coming to one person for his/her help to do almost everything for you. It is all about commitment, right?</p>
<p>Have fun learning. <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2009/04/04/how-to-teach-yourself-css-and-the-web-stuff/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How to modify a WordPress theme/css (for beginners)</title>
		<link>http://www.flisterz.com/2008/12/24/how-to-edit-wordpress-theme-or-css-for-beginners/</link>
		<comments>http://www.flisterz.com/2008/12/24/how-to-edit-wordpress-theme-or-css-for-beginners/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 07:03:13 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/?p=848</guid>
		<description><![CDATA[For some new users out there who are still clueless on how to modify your theme to your liking, this post is definitely for you. I&#8217;m focusing here on WordPress (not Wordpress.com) users, but if you&#8217;re not one of them, you still can follow on, as long as you have access to your CSS file.
First [...]]]></description>
			<content:encoded><![CDATA[<p>For some new users out there who are still clueless on how to modify your theme to your liking, this post is definitely for you. I&#8217;m focusing here on WordPress (not Wordpress.com) users, but if you&#8217;re not one of them, you still can follow on, as long as you have access to your CSS file.</p>
<h2>First step: The tools</h2>
<p>For this tutorial, you&#8217;ll need to have some stuff.  The main tools is the most awesome Firefox plugin ever, <a href="http://getfirebug.com/">Firebug</a>. That means you have to use <a href="http://getfirefox.com/">Firefox</a> browser (you know, the most awesome browser out there?). Download the plugin, and install it right away. You won&#8217;t regret it. <del>You can even use it to download free mp3s! (not covered)</del>. You also need a text editor for CSS editing. Notepad would be enough if you don&#8217;t have any other advanced options.</p>
<p>As an alternative, you can also edit edit your CSS  directly from the WordPress dasboard. Go to &#8216;Appearance &gt; Theme Editor&#8217; for the new WordPress 2.7 users and &#8216;Design (or Presentation) &gt; Theme Editor&#8217; for old-school users. Make sure you have the &#8220;Update File&#8221; button at the bottom of the page. If no, you&#8217;ll need to CHMOD your file through FTP. Let <a href="http://thumlog.com/edit-your-wp-theme-from-your-dashboard">Syuxx teach you how to do that</a>.</p>
<h2>Second Step: Learn to use Firebug</h2>
<p>Now you&#8217;re ready to use Firebug. Lets learn some basic stuff. Go to the page you want to edit, right-click and click Inspect Element. Or simple click that cute bug icon at the bottom right of your browser.</p>
<p><img class="full-width-img" title="firebug-inspect-elements2" src="http://www.flisterz.com/wp-content/uploads/2008/12/firebug-inspect-elements2.jpg" alt="firebug-inspect-elements" /></p>
<p>Then you&#8217;ll get this thing on the bottom part of your browser.</p>
<p><img class="full-width-img" title="firebug-popup-inspect-2" src="http://www.flisterz.com/wp-content/uploads/2008/12/firebug-popup-inspect-2.jpg" alt="firebug-popup-inspect" /></p>
<p>Click on the Inspect button on the top left side of the panel, then move your cursor around the page. Click on any of the element on the page to see their CSS properties on the right side of the Firebug panel.</p>
<p><img class="full-width-img" title="firebug-edit-css2" src="http://www.flisterz.com/wp-content/uploads/2008/12/firebug-edit-css2.jpg" alt="firebug-edit-css" /></p>
<p>Go on, click on those values, and play around with it. You&#8217;ll see live changes on the website. Cool huh? Note that anything you changed here is just a preview, it will not affect your theme at all. So don&#8217;t be afraid to change anything.</p>
<p><img class="full-width-img" title="firebug-edit-css-lagi" src="http://www.flisterz.com/wp-content/uploads/2008/12/firebug-edit-css-lagi.jpg" alt="firebug-edit-css-lagi" /></p>
<p>You can also disable certain properties: click on the left side of the property. To add a new one, click on the last line, and press Enter/Return. Simple!</p>
<h2>Third step: Modify your CSS</h2>
<p>Now you&#8217;re ready to start to get geekier. Decide what you are going to change in your theme. Do the same thing you did in the second step.</p>
<p>Maybe you can use some common sense if you have no idea what those CSS properties mean. Margin? Padding? Float? What are those? Well, if you really want to know those, you&#8217;ll need to look for some CSS basic introduction. Maybe <a href="http://www.w3schools.com/CSS/default.asp">w3schools</a> can help you with that. Other than that: height, width, color and font sound easier, right? What are those #333333, #F3F3F3 thing? Those are Hex color code. For your color. Here is a source for <a href="http://www.2createawebsite.com/build/hex-colors.html">Hex color code</a> to help you.</p>
<p>*****<br />
For an extra example, if you wantws to change a header image, the code probably look something like this.</p>
<pre class="css">#header{
background: #ffffff url(images/header.jpg) no-repeat top left;
width:960px;
height 50px;
}</pre>
<p>To use another image for your header, just change the part inside the url(&#8230;) with the location of your new images. Adjust the height and width accordingly.<br />
*****<br />
Now that you got the right idea what to change and what to add/edit to your CSS file, open your style.css file from your theme folder.You need to locate where you need to add/edit the properties you experiment with Firebug just now.</p>
<p><img class="full-width-img" title="firebug-where-what" src="http://www.flisterz.com/wp-content/uploads/2008/12/firebug-where-what.jpg" alt="firebug-where-what" /></p>
<p>From this example, you&#8217;ll need to locate #navigation in the style.css file, on line 75. Use the Find function in you text editor to find it (or you can just scroll down manually if you have sharp eyes).</p>
<p><img class="full-width-img" title="find-edit-css" src="http://www.flisterz.com/wp-content/uploads/2008/12/find-edit-css.jpg" alt="find-edit-css" /></p>
<p>If you&#8217;re using Theme Editor in the WordPress dashboard, you need to find it manually though.</p>
<p>Change the values in the style.css, save it and upload it to your hosting.</p>
<p>And you&#8217;re done!</p>
<h2>Extra tips.</h2>
<p>It is recommended that you modify your theme locally, off the internet. Meaning, you modify your theme completely in you computer before you upload the entire theme into your host. Save much time rather than to rely on those sucky internet connection. Learn how to install Wordpress locally: <a href="http://www.jdavidmacor.com/2007/07/24/how-to-install-wordpress-locally/">Windows</a> and <a href="http://www.bleikamp.com/2006/11/16/wordpress-on-a-mac/">Mac</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2008/12/24/how-to-edit-wordpress-theme-or-css-for-beginners/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>CSS: Relative and absolute positioning</title>
		<link>http://www.flisterz.com/2008/12/17/css-relative-and-absolute-positioning/</link>
		<comments>http://www.flisterz.com/2008/12/17/css-relative-and-absolute-positioning/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 19:47:33 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/?p=828</guid>
		<description><![CDATA[I love how cool it is to use relative and absolute positioning in my CSS. When I first knew about this position thing, I was clueless, and was just keep using it randomly.
Since I haven&#8217;t been writing any tutorials lately, let me just explain some basic stuff about these two CSS positioning properties and how [...]]]></description>
			<content:encoded><![CDATA[<p>I love how cool it is to use relative and absolute positioning in my CSS. When I first knew about this position thing, I was clueless, and was just keep using it randomly.</p>
<p>Since I haven&#8217;t been writing any tutorials lately, let me just explain some basic stuff about these two CSS positioning properties and how to use both of them together.</p>
<h2>Example</h2>
<p>Let say you want to have a small box with some text in it, floating on top of another bigger box with a background image in it. Here is a graphical view of it</p>
<p><img class="size-full wp-image-830" title="css-position-absolute-relative" src="http://www.flisterz.com/wp-content/uploads/2008/12/css-position-absolute-relative.jpg" alt="css-position-absolute-relative" /></p>
<p>Lets do this step by step. First, we prepare the bigger box with the background picture. Name it <em>Boxer</em>.</p>
<pre name="code" class="css">
#boxer{
	width: 500px;
	height: 200px;
	margin: 100px auto;
	background: url(lomowalls.gif);
	font-size: 11px;
	font-family: Verdana;
	position: relative; /*important part*/
	}</pre>
<p>Next, lets create a small yellow box, floating on top right side of Boxer. Name it <em>smallbox</em>.</p>
<pre name="code" class="css">
.smallbox{
	background: yellow;
	width: 150px;
	height: 50px;
	position: absolute;  /*important part*/
	top: 10px;
	right: 30px;
	}</pre>
<p>Then, write a simple HTML file.</p>
<pre name="code" class="xhtml">
&lt;div id="boxer"&gt;
	&lt;div class="smallbox"&gt;
		This is a small box
	&lt;/div&gt;
&lt;/div&gt;</pre>
<p>Make sure the <em>smallbox</em> is inside the <em>Boxer</em>.</p>
<p>As you can see in the picture, the small yellow box is positioned &#8220;<strong>absolutely</strong>&#8221; , &#8220;<strong>relative</strong>&#8221; to the <em>Boxer</em>, with <strong>10</strong>pixels from the top and <strong>30</strong>pixels from the right. Does that make sense?</p>
<p>For learning purposes, take out the <strong>position:absolute</strong> property, and you&#8217;ll see the <em>smallbox</em> will be at the same position of the blue box in the picture.</p>
<p>Also, lets modify the HTML by placing the <em>smallbox</em> class outside of the <em>Boxer</em>. You&#8217;ll get a result similar to that red box. Why is that? Because, now, the <em>smallbox</em> is positioned &#8220;<strong>absolutely</strong>&#8220;, &#8220;<strong>relative</strong>&#8221; to your browser, not to the <em>Boxer</em> anymore. Notice the 10pixels and 30pixels gap on top and right side of the browser, respectively. It will also move if you re-size your browser.</p>
<p><a href="http://www.flisterz.com/?download=CSS_position">→ Download the source code to try it yourself</a></p>
<h2>CSS Tips</h2>
<p>When experimenting with CSS, it is good to learn using trial-and-error method. <a href="http://getfirebug.com/">Firebug</a> is a great tool to assist you for this method. Use boxes with different colours to arrange your basic layout so you can distinguish each sections and approximate the placement later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2008/12/17/css-relative-and-absolute-positioning/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Hide Nuffnang &amp; Advertlets logo from your ads</title>
		<link>http://www.flisterz.com/2008/05/02/hide-nuffnang-advertlets-logo-from-your-ads/</link>
		<comments>http://www.flisterz.com/2008/05/02/hide-nuffnang-advertlets-logo-from-your-ads/#comments</comments>
		<pubDate>Thu, 01 May 2008 16:05:12 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/2008/05/02/hide-nuffnang-advertlets-logo-from-your-ads/</guid>
		<description><![CDATA[
What&#8217;s up with hiding the logo from your ads? Syuxx wrote a nice tip on how to use CSS to hide Nuffnang logo from the ad &#8211; followed up by NoktahHitam.
Actually I discovered a method few months ago while working on my theme. But I was afraid to share it with everyone in this blog [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.flisterz.com/wp-content/uploads/2008/05/zzz.jpg" alt="ads" /></p>
<p>What&#8217;s up with hiding the logo from your ads? <a href="http://dfi.speakerz.net/2008/04/27/make-nuffnang-ads-footer-invisible/">Syuxx</a> wrote a nice tip on how to use CSS to hide Nuffnang logo from the ad &#8211; followed up by <a href="http://www.noktahhitam.com/hide-nuffnangs-footer-logo.html">NoktahHitam</a>.</p>
<p>Actually I discovered a method few months ago while working on my theme. But I was afraid to share it with everyone in this blog because I thought it is against their TOS. However I did use it for few days before I remove it. I was afraid they will ban me completely rather than fixing the problem &#8211; and that will involve me losing my money. hahaBut now maybe I decided to join the bandwagon and reveal another method that you can use to  hide the logo from Nuffnang and also Adverlets ads. Compared to Syuxx&#8217;s method, I am not using the IDs or table name contains in Nuffnang code (this way, those guys can easily change the ID/table name, and it will no longer works). Instead, I created my own.</p>
<p>Wrapped your ad code inside a class name, for example <code>.adbox</code></p>
<p><code>&lt;div class="adbox"&gt;<br />
Nuffnang or Adverlets codes goes here<br />
&lt;/div&gt;</code></p>
<p>Why use class, not ID? Because xhtml-wise, you are allowed to use the same class name several times on the same page. So you can use this for all you ads unit, from both companies.</p>
<p>Now the CSS part.</p>
<p><code>.adbox img{display:none;}</code></p>
<p>The Nuffnang and Adverlets logo are images. So this CSS code basically hide that image from our view.</p>
<p>Warning : I won&#8217;t be responsible for any consequences you&#8217;ll get if you use this method. Maybe you want to read <a href="http://vangardx.net/blog/hide-nuffnang-ads-footer-advertlets-text-link-ads/#comment-20577">the email sent</a> by <a href="http://timothytiah.blogspot.com/">Timothy Tiah</a> to Syuxx regarding this thing. haha</p>
<p><img src="http://www.flisterz.com/wp-content/uploads/2008/05/advertlets-text01.jpg" alt="advertlets-text01.jpg" /></p>
<p>Have you <a href="http://www.hongkiat.com/blog/advertlets-to-launch-text-ads/">read about Advertlets&#8217; text link ads?</a> oh its ugly. Remove the shadow boxy thing man. urgh. Coming soon &#8211; more and more Malaysian blogs will be cramped with ugly ads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2008/05/02/hide-nuffnang-advertlets-logo-from-your-ads/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Coolness roundup #6: Grid-based &amp; CSS</title>
		<link>http://www.flisterz.com/2008/04/01/coolness-roundup-6-grid-based-css/</link>
		<comments>http://www.flisterz.com/2008/04/01/coolness-roundup-6-grid-based-css/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 18:38:08 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[coolness roundup]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/2008/04/01/coolness-roundup-6-grid-based-css/</guid>
		<description><![CDATA[I finally realized that I am such a big fan of grid-based design after looking at a collection of grid and columns designs, few weeks back.They are clean and simple and looks kinda cool. Learn more about grid-based design. Also, take a look at several CSS tips and tricks around the internet, in my 6th coolness roundup series.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.flisterz.com/wp-content/uploads/2008/04/cr6.jpg" alt="cr6.jpg" /></p>
<p>It&#8217;s 1st of April &#8211; welcome to the 4th month of the year. (what a lame welcoming line -_-).  Lets stick to the title and continue with some cool stuff that I want to share this time.</p>
<h2>Grid-based Design</h2>
<p><img src="http://www.flisterz.com/wp-content/uploads/2008/04/gbd.jpg" alt="gbd.jpg" /></p>
<p>I finally realized that I am such a big fan of grid-based design after looking at a collection of<a href="http://www.webdesignerwall.com/trends/grid-and-column-designs/"> grid and columns designs</a>. They are clean, simple and looks kinda cool. <a href="http://www.mostinspired.com/blog/2008/03/24/grid-based-design-101/">Learn more about grid-based design</a>, or maybe you want to head back to 2005 to read this old but great article &#8211; <a href="http://www.alistapart.com/articles/outsidethegrid">Thinking Outside the Gri</a><a href="http://www.alistapart.com/articles/outsidethegrid">d</a>. Browse through more grid-based example at <a href="http://www.designbygrid.com/">Design By Grid</a>. Also, try the latest grid system known as <a href="http://960.gs/">960.gs</a>.</p>
<h2>CSS fans</h2>
<p>Have you ever use any CSS framework in any of your project? Or do you have your own framework? I have none. I keep on doing the same thing again and again on each project. What a waste of time, right. Maybe I should conside using one of these <a href="http://speckyboy.com/2008/03/28/top-12-css-frameworks-and-how-to-understand-them/">Top 12 CSS frameworks</a> later on or try to create my own.</p>
<p>I have been seeing a few CSS line tips for the past few days. I wrote one before this. Some of them are redundant but it worth checking out. Here are some of them : <a href="http://cssglobe.com/post/1392/8-premium-one-line-css-tips">8 Premium One Line CSS Tips</a>, <a href="http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/">6 most important CSS techniques</a> and <a href="http://stylizedweb.com/2008/03/12/most-used-css-tricks/">Most used CSS trick</a>. If you have lots of time to spare, check out <a href="http://www.noupe.com/design/101-css-techniques-of-all-time-part-1.html">101 CSS techniques of all time</a></p>
<p>Sometimes when we are working on a website, if the content is too short, the footer will move upward &#8211; not staying down there where it is suppose to stay. I have this problem all the time. Here is a <a href="http://fortysevenmedia.com/blog/archives/making_your_footer_stay_put_with_css/">technique to make your footer stay where it suppose to stay</a>.</p>
<h2>..and one more thing</h2>
<p>I think this is something &#8216;funny&#8217;. I wrote a review about my ipod touch few months back, entitled &#8220;My iPod Touch; the Review&#8221;.Maybe you want to <a href="http://www.flisterz.com/2007/10/04/ipod-touch-ftw/">read it here first</a>, then head up to this entry here</p>
<p>http://voltastreet.com/2008/03/25/my-ipod-touch-the-review/</p>
<p>and do some comparison. haha this is funny. (p/s: you may want to compare our &#8220;About&#8221; page also)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2008/04/01/coolness-roundup-6-grid-based-css/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Road to f:b 5.0 &#8211; part II</title>
		<link>http://www.flisterz.com/2008/01/04/road-to-fb-50-part-ii/</link>
		<comments>http://www.flisterz.com/2008/01/04/road-to-fb-50-part-ii/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 14:24:22 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[flisterz:blog]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/2008/01/04/road-to-fb-50-part-ii/</guid>
		<description><![CDATA[Following the first part of the post, here is the second post for me to share more stuff regarding my upcoming theme for flisterz:blog. This time, I am talking about the comment section and a little bit about usability.]]></description>
			<content:encoded><![CDATA[<p> <img src="http://www.flisterz.com/wp-content/uploads/2007/12/rtfb5.jpg" alt="rtfb5" /></p>
<p>Following the <a href="http://www.flisterz.com/2007/12/29/road-to-fb-version-5/">first part of the post</a>, here is the second post for me to share more stuff regarding my upcoming theme for flisterz:blog.</p>
<h2>Comment section</h2>
<p>Besides the frontpage, the second most important part of a Wordpress theme, in my personal opinion, is the comment section. How the comment is arranged, where to put the Gravatar, how to align the forms and so on. I dont have any sketch or draft for this section; so everything is done while coding. If i like the look; then I proceed; else I&#8217;ll just re-code the whole thing.</p>
<p>My first idea was to put the comment form on one side, and the list of comments on the other side. I used to do this in my third version. I still remember <a href="http://www.flisterz.com/2007/05/30/new-theme-for-version-3/#comments">ikram-zidane said</a>  that the comment list and comment form should be on the same side. The final idea for the form is to mix both idea; and it turn out pretty good so far. <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Another idea is to get rid of the form labels; those with &#8216;name&#8217;, &#8216;email&#8217;, &#8216;website&#8217; and so on ; and put some nice little icon to act as the label.</p>
<p><img src="http://www.flisterz.com/wp-content/uploads/2008/01/sss.jpg" alt="comment form" /></p>
<p>This is nothing new; I&#8217;ve seen this in some other websites before. However the concern is; what happen if my blog is viewed with a non standard compliant browsers or mobile devices that doesn&#8217;t support CSS very well. The icon will not appear and theres no labels on the forms. Visitors will get confused; what should be filled inside this form and that form and so on.</p>
<p><span id="more-364"></span></p>
<p>I believe this is called user <del>accessibility</del> usability. Correct me if I&#8217;m wrong. <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The solution I&#8217;m using is simple. Instead of directly remove the labels from the code, I&#8217;ll just apply a simple CSS to hide it from normal view.</p>
<p><code>#commentform label{<br />
display:none;<br />
}</code></p>
<p>So when viewed from a mobile devices or any old browsers; the label will appear to guide the visitorsl.</p>
<h2></h2>
<p>I am trying to give a very huge attention about user accessibility/usability especially in this upcoming theme. When to use image replacement technique and when not to use it; the importance of <code>&lt;ul&gt;</code> tag around the template; the loading order of page elements and so forth. I&#8217;ll talk more about this later; maybe <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2008/01/04/road-to-fb-50-part-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Currently listening/reading on Wordpress</title>
		<link>http://www.flisterz.com/2007/12/07/currently-listeningreading-on-wordpress/</link>
		<comments>http://www.flisterz.com/2007/12/07/currently-listeningreading-on-wordpress/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 15:16:10 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/2007/12/07/currently-listeningreading-on-wordpress/</guid>
		<description><![CDATA[If you notice, I have a Current Music section on my sidebar &#8211; showing the album artwork of my latest tunes I have been listening to. You can create that too &#8211; &#8216;Currently Listening&#8217; for music or &#8216;Currently Reading&#8217; for books or &#8216;Currently Playing&#8217; for game or anything you can think of. And all of [...]]]></description>
			<content:encoded><![CDATA[<p>If you notice, I have a Current Music section on my sidebar &#8211; showing the album artwork of my latest tunes I have been listening to. You can create that too &#8211; &#8216;Currently Listening&#8217; for music or &#8216;Currently Reading&#8217; for books or &#8216;Currently Playing&#8217; for game or anything you can think of. And all of them have one thing in common &#8211; showing a small picture &#8211; no long text &#8211; just picture/thumbnail.</p>
<h2>How to do this?</h2>
<p>First off, this method does not use any extra plugins &#8211; only a common Wordpress features. Yes, it is common &#8211; but you might have not think of this before ( ..like myself before I figure this out). This method utilize Wordpress Blogroll function.<br />
However, the template tag that we are going to use, <code>get_links</code>, is <a href="http://codex.wordpress.org/Template_Tags/get_links">already deprecated</a> from the latest version of Wordpress. But, I tested it and yeah, so far its working fine.</p>
<h2>Create your blogroll category and one link</h2>
<p>Log in to your dashboard and create a new Blogroll category. I dont think theres any &#8216;New category&#8217; link somewhere, right? So we need to create it while adding a link. Choose Add Link to start.</p>
<p><img src="http://www.flisterz.com/wp-content/uploads/2007/12/ms1.jpg" alt="abdx" /></p>
<p><span id="more-322"></span></p>
<ul>
<li>[A] This is where the user will be directed to when they click the image.</li>
<li>[B] Description will appear as a tooltip when user hover on the image. It can be set to appear somewhere around the image but its not in our discussion here.</li>
<li>[C] The location of you image. Remember, <a href="http://altlab.com/hotlinking.html">hotlinking</a> image from other websites is very very unethical. Upload them into you server or use free image hosting services</li>
<li>[D] This is an important step. On the first link addition, you might need to create a new category. So create one that is relevant.</li>
</ul>
<p>Now go back to the Blogroll manager, and click the name of the category you created just now. What you need is to get the ID of the category. Look in your address bar.</p>
<p class="box2"><code>http://www.yoursite.com/blog/wp-admin/link-manager.php?cat_id=8</code></p>
<p>As you can see, the ID is &#8216;8&#8242;. We will use this in the code in the next step.</p>
<h2>Continue with the codes</h2>
<p>You need to add some codes in you layout (or widget) to accomplish this. For example, open you <code>sidebar.php</code> and place this code anywhere you want it to appear.</p>
<p class="box2"><code>&lt;div id="music"&gt;<br />
&lt;h2&gt;Currently Listening&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;?php get_links(8, '&lt;li&gt;', '&lt;/li&gt;', '', 'TRUE', '_id','','',6); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</code></p>
<p>What does it means? Lets break the paramaters apart</p>
<ul>
<li>&#8216;<strong>8</strong>&#8216; is your category ID just now.</li>
<li><strong>&lt;li&gt;</strong> and <strong>&lt;/li&gt;</strong> is the code that should be BEFORE and AFTER each link. Something common for a list though.</li>
<li><strong>TRUE</strong> is a parameter for image, say &#8220;YES I want the image to appear. True!&#8221;</li>
<li>&#8216;<strong>_id</strong>&#8216; is the parameter for &#8216;order&#8217; &#8211; meaning our images will be sorted up according to their ID. The underscore (_) sign is to reverse the order because we want the latest image (with higher ID value) to appear on top of the previous images and so on</li>
<li>&#8216;<strong>6</strong>&#8216; is the number of images that will appear on your sidebar. You can change it to any number</li>
</ul>
<p>However, you can add more customization on the parameters. <a href="http://codex.wordpress.org/Template_Tags/get_links">Read more about them here</a>.</p>
<h2>CSS style</h2>
<p>Now, you&#8217;ve put the code in you sidebar,  we need to create some CSS styling.</p>
<p class="box2"><code>#music {padding:5px;}<br />
#music ul{list-style-image:none;}<br />
#music ul li{display:inline;}<br />
#music ul li img {<br />
border:1px solid #999999;<br />
margin:3px;<br />
width:100px;<br />
}</code></p>
<p>There are only few things you need to concern here, especially under <code>#music ul li img</code>.<br />
The border is optional actually &#8211; set your own thickness and color.<br />
<code>margin:3px</code> means you are putting 3px separation between the images.<br />
<code>width:100px</code> means you want all the images to have the same width no matter what is the width of the original image. So don&#8217;t you have to edit an image every time you want to add a new one. Why only width, no height? because it may stretch the image</p>
<h2></h2>
<p>So thats it. Easy isn&#8217;t it? As I said before, this is not only meant for showing current music; you can do anything with it by utilizing this method. The Short Notes section on my sidebar is also using the same method but with different parameters. Maybe you want to try that out too. <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2007/12/07/currently-listeningreading-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Coolness roundup #4 : CSS Resources</title>
		<link>http://www.flisterz.com/2007/11/04/coolness-roundup-4-css-resources/</link>
		<comments>http://www.flisterz.com/2007/11/04/coolness-roundup-4-css-resources/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 08:54:34 +0000</pubDate>
		<dc:creator>flisterz</dc:creator>
				<category><![CDATA[coolness roundup]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.flisterz.com/2007/11/04/coolness-roundup-4-css-resources/</guid>
		<description><![CDATA[Another coolness roundup entry - specifically about CSS resources. Get some cool collection of CSS tutorial, CSS softwares and free CSS layouts!]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.flisterz.com/wp-content/uploads/2007/11/cr4.jpg" alt="coolness roundup 4" /></p>
<p>Been ignoring CSS related entries for quite a long time. So, I decided to take some time to compile this. Taken from my old and fresh bookmarks.</p>
<h2>CSS Techniques Collection</h2>
<p><img src="http://www.flisterz.com/wp-content/uploads/2007/11/nav.jpg" alt="Tab" /></p>
<p><a href="http://cssjuice.com/30-free-css-based-navigation-menus/">30 Free CSS Based Navigation Menu</a> &#8211;  a great collection of inspirational navigation menu for your website. CSS is proven to be the only tool we need for a cool and simple menu, replacing Flash that is extensively used before. Watch and learn.</p>
<p><a href="http://cssjuice.com/25-rounded-corners-techniques-with-css/">25 Rounded Corners Techniques with CSS</a> &#8211; Rounded corner is..er..web2.0-ish, if i can say that. However, if Im not mistaken, theres no specific CSS properties to easily style a rounded corner. Check out these techniques, and choose any that suits you.</p>
<p><a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/">Advanced CSS Menu</a> &#8211; cool tutorial by Web Designer Wall</p>
<p><a href="http://cssjuice.com/25-rounded-corners-techniques-with-css/"></a></p>
<h2>CSS Layout</h2>
<p>You are a beginner in CSS. You dont want to read everything from the beginning. Or, you dont have enough time to code. Well, get basic code for your website template, as how you want it to look like.</p>
<p><img src="http://www.flisterz.com/wp-content/uploads/2007/11/layout.jpg" alt="layout" /></p>
<ul>
<li> <a href="http://csseasy.com/">CSSeasy </a>(8)</li>
<li><a href="http://www.code-sucks.com/css%20layouts/faux-css-layouts/">Faux Column CSS Layouts</a> (42)</li>
<li><a href="http://csstinderbox.raykonline.com/">CSS Tinderbox</a> (8)</li>
<li><a href="http://www.mycelly.com/">Nice and Free CSS Templates</a> (12)</li>
<li><a href="http://mitchbryson.com/css-templates/">Free CSS Templates</a> (8)</li>
<li><a href="http://blog.html.it/layoutgala/">Layout Gala</a> (40)</li>
<li>&#8230;and how about Advanced <a href="http://www.webreference.com/authoring/style/sheets/layout/advanced/">CSS Layout step-by-step guide</a> (tutorial)</li>
</ul>
<h2>CSS Software</h2>
<p><a href="http://www.hostm.com/css/">Simple CSS</a> &#8211; Simple CSS is a ..er.. simple CSS editor (freeware) that allows you to easily create CSS from scratch and modify existing ones,  using a familiar point-and-click interface. Also support CSS2. Although I prefer Notepad, but its good for quick editing though, and when you forgot names for some properties -_-</p>
<p><img src="http://www.flisterz.com/wp-content/uploads/2007/11/smcss.jpg" alt="simple css" /></p>
<p><a href="http://www.highdots.com/css-tab-designer/"> CSS Tab Designer</a> &#8211; Create wonderful Tab for navigation menu and link list with this simple software. It also generates strict xhtml compliant code, which is a good thing. Free download.</p>
<p><a href="http://litmusapp.com/labs">CSS Vista</a>  &#8211; I used to write about this. Anyhow, here it is, again. CSS Vista allows you to do live rendering and editing on both IE and Firefox simultaneously. Sounds useful, huh? Try it out.</p>
<h2>Other CSS related</h2>
<p><a href="http://www.solidstategroup.com/page/1592">CSS Hacks and Issues</a> &#8211; Although I think CSS Hacks are useless and I never used them, but, someone else might need them <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>How about an <a href="http://wheeqo.web.id/index.php/Tutorial/Create-Islamic-CSS-Style.html">Islamic CSS tips</a>? Nice one.</p>
<p><a href="http://www.wittysparks.com/2007/04/22/60-best-css-directories-you-would-die-to-watch/">60 best CSS directories you would die to watch!</a>  &#8211; really? an old article. but nevermind. Hope to see <a href="http://www.blogohblog.com/">Bob</a>&#8217;s <a href="http://csssnap.com/">CSSsnap</a> in this sort of list in the future <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You dont know what am I crapping here? wtf is CSS? maybe you want to <a href="http://www.programimi.com/2007/08/18/why-you-should-convert-to-css/">read this</a> <img src='http://www.flisterz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flisterz.com/2007/11/04/coolness-roundup-4-css-resources/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
