<?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>The Best CSS Web Manual</title>
	<atom:link href="http://csswebmanual.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://csswebmanual.com</link>
	<description></description>
	<lastBuildDate>Wed, 16 Sep 2009 11:09:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to prepare menus with CSS styles.</title>
		<link>/?p=7</link>
		<comments>/?p=7#comments</comments>
		<pubDate>Wed, 16 Sep 2009 11:09:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[styling]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web tools]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://csswebmanual.com/?p=7</guid>
		<description><![CDATA[Other CSS-based menus that I saw before I wrote these required different classes for every level of the menu to be present on every list item, which I felt made them unnecessarily complex. So when I originally approached the problem of creating a menu from nested list markup, I wanted to have it work without [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Other CSS-based menus that I saw before I wrote these required different classes for every level of the menu to be present on every list item, which I felt made them unnecessarily complex. So when I originally approached the problem of creating a menu from nested list markup, I wanted to have it work without needing to add any additional markup—just vanilla XHTML list markup and the CSS.</p>
<p style="text-align: justify;">What follows is an exercise that will teach you how to create CSS drop-down menus from “ID-and-class-free” lists. All that’s required is context—a surrounding div with a class, so the correct CSS styles are applied to the list within. The biggest benefi t of this all-CSS based approach is that it scales to a limitless number of choices at every level, simply by adding more items to the nested lists, without any modifi cations to the CSS.</p>
]]></content:encoded>
			<wfw:commentRss>http://csswebmanual.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menus that are designed with CSS</title>
		<link>/?p=5</link>
		<comments>/?p=5#comments</comments>
		<pubDate>Sat, 12 Sep 2009 17:28:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css tips]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[css course]]></category>

		<guid isPermaLink="false">http://csswebmanual.com/?p=5</guid>
		<description><![CDATA[If my email is anything to go by, drop-down menus like these appear to be one of the most sought-after pieces of CCS code, and I wrote my original version of them back in 2003 after I became tired of dealing with the complexities of making menus work with JavaScript. As you can see from [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If my email is anything to go by, drop-down menus like these appear to be one of the most sought-after pieces of CCS code, and I wrote my original version of them back in 2003 after I became tired of dealing with the complexities of making menus work with JavaScript. As you can see from Figure 6.36, this menu can be up to four levels deep, and it is very easy to implement in your site.</p>
<p style="text-align: justify;">All you need to do is write a simple set of unordered lists, just like the ones we saw in the navigation element we made previously, and nest them inside each other to create the various levels of the menu, as I will show you shortly. Then wrap the whole thing in a div that has a class to associate the menu with the related CSS (multi_level_menus_class.css in the Stylib library), and you are done. If you plan to generate the menu choices from items in your site’s database, the programmers on your team will love the simplicity of the code (just nested unordered lists) that their middleware has to generate to populate these menus.</p>
]]></content:encoded>
			<wfw:commentRss>http://csswebmanual.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating CSS-Based Menus</title>
		<link>/?p=3</link>
		<comments>/?p=3#comments</comments>
		<pubDate>Wed, 09 Sep 2009 12:53:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css tips]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web tools]]></category>
		<category><![CDATA[css course]]></category>

		<guid isPermaLink="false">http://csswebmanual.com/?p=3</guid>
		<description><![CDATA[Drop-down menus allow you to offer your users a large number of navigation options using very little screen estate, while providing an insight into your site’s structure. The menus illustrated here, which you can fi nd in the Stylib library fi les, could provide links to dozens of pages, although only the top level choices [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Drop-down menus allow you to offer your users a large number of navigation options using very little screen estate, while providing an insight into your site’s structure. The menus illustrated here, which you can fi nd in the Stylib library fi les, could provide links to dozens of pages, although only the top level choices are visible until the user hovers over the menu.</p>
<p style="text-align: justify;">Anyone who read the original edition of Stylin’ with CSS might think they have seen these menus in Figure 6.36 before, but I have entirely rewritten the CSS to make them lighter (less code), and optimized them for the new breed of browsers that has emerged since Stylin’ was written way back in 2004. The user-modifi able CSS, such as colors, line weights, and font sizes, is separated from the more complex code that makes the menus work, so you can dive in and make stylistic changes confi dently, knowing you will not break the underlying “mechanics.” These menus also now work better in IE6, as I have hacked the bugs that prevented the backgrounds of the menu items from responding to clicks in that browser. So while they are visually similar (the XHTML markup I use to demo them here is unchanged from the original Stylin’ version), the CSS is greatly improved.</p>
]]></content:encoded>
			<wfw:commentRss>http://csswebmanual.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
