<?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>Web Development Blog &#187; Web 2.0</title>
	<atom:link href="http://www.web-development-blog.com/archives/tag/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-development-blog.com</link>
	<description>Web development tutorials, SEO articles and PHP script resources</description>
	<lastBuildDate>Sun, 25 Jul 2010 14:38:00 +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>CSS navigation bar with stylish web2.0 elements</title>
		<link>http://www.web-development-blog.com/archives/css-navigation-bar-with-stylish-web2-0-elements/</link>
		<comments>http://www.web-development-blog.com/archives/css-navigation-bar-with-stylish-web2-0-elements/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 22:29:57 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/archives/css-navigation-bar-with-stylish-web20-elements/</guid>
		<description><![CDATA[Marino from TechSymptom is great web-designer and started a series of Fireworks tutorials on web 2.0 styled navigation bars. The last one inspired me to create this small CSS tutorial. UPDATE: Based on the tutorials from techSyptom we created a new tutorial, check the tutorial via link below, After we finished the design tutorial we [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>Marino from TechSymptom is great web-designer and started a series of Fireworks tutorials on web 2.0 styled navigation bars. The last one inspired me to create this small CSS tutorial.</p>
<blockquote><p>UPDATE: Based on the tutorials from techSyptom we created a new tutorial, check the tutorial via link below,</p></blockquote>
<p>After we finished the <a href="http://www.all4yourwebsite.com/tutorials/website-navigation-bar/">design tutorial</a> we need to create 2 simple images to style our CSS navigation bar: A background image (the light blue bar) and a transparent button that indicate the active state, all other elements are created with CSS.</p>
<p>Like in most CSS horizontal navigation bars an unordered list is used to hold the menu items:<span id="more-89"></span></p>
<p><a href="http://www.web-development-blog.com/wp-content/uploads/2007/02/screen.jpg" title="screen.jpg" rel="shadowbox[post-89];player=img;" class="imagelink"><img src="http://www.web-development-blog.com/wp-content/uploads/2007/02/screen.jpg" id="image88" alt="screen.jpg" /></a><br />
With the next CSS code it’s possible to style the horizontal navigation bar:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">800px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">600px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #cc00cc;">#navbar</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">/tutorials/web20_css_bar/backgr.jpg</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">repeat-x</span> <span style="color: #000000; font-weight: bold;">left</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">3px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#98CB00</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#00CCFF</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">31px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #cc00cc;">#navbar</span> li <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #cc00cc;">#navbar</span> li a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span> <span style="color: #933;">15px</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span> <span style="color: #933;">16px</span> <span style="color: #ff0000;">&quot;Trebuchet MS&quot;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#00CCFF</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-0.1em</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #cc00cc;">#navbar</span> li a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#98CB00</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #cc00cc;">#navbar</span> li a<span style="color: #cc00cc;">#current</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">/tutorials/web20_css_bar/current.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #993333;">center</span> <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#98CB00</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>We placed the background image behind &#8220;ul&#8221; element and added the two borders to the top and bottom. The li element is defined as a floated block element and got some padding to create a bigger button. The last definition is for the current state, which will show up the tri-angle. You need some server-side code (php) to get a dynamic position every time a different page is loaded.</p>
<p>That&#8217;s all, download the example files <a href="http://www.web-development-blog.com/tutorials/web20_css_bar.zip">here</a>.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/your-e-mail-address-hidden-with-jquery/" rel="bookmark" title="February 25, 2010">Your e-mail address hidden with jQuery?</a></li>
<li><a href="http://www.web-development-blog.com/archives/image-manipulations-with-imagemagick/" rel="bookmark" title="May 5, 2009">Image manipulations with Imagemagick</a></li>
<li><a href="http://www.web-development-blog.com/archives/jquery-contact-form-for-your-website/" rel="bookmark" title="January 11, 2010">jQuery Contact form for your website</a></li>
</ul>
<p><!-- Similar Posts took 3.023 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/css-navigation-bar-with-stylish-web2-0-elements/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>This generation web advertising</title>
		<link>http://www.web-development-blog.com/archives/this-generation-web-advertising/</link>
		<comments>http://www.web-development-blog.com/archives/this-generation-web-advertising/#comments</comments>
		<pubDate>Tue, 07 Nov 2006 21:21:47 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/archives/this-generation-web-advertising/</guid>
		<description><![CDATA[After writing last week a short review about the advertisement site 43ads.com I got some interesting comments about other nice Web 2.0 styled advertising ideas. bla.st This is a nice combination of free and paid advertising, in the beginning you will get a spot on the first page of common key words like &#8220;web-design&#8221;. Interesting [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>After writing last week a short review about the advertisement site <a href="http://www.43ads.com/" rel="nofollow">43ads.com</a> I got some interesting <a href="http://www.web-development-blog.com/archives/the-next-one-million-dollar-websites/">comments</a> about other nice Web 2.0 styled advertising ideas.</p>
<p><strong>bla.st</strong><br />
This is a nice combination of free and paid advertising, in the beginning you will get a spot on the first page of common key words like &#8220;web-design&#8221;. Interesting at this site is, that your ad is live after submission and the possibility to get a direct information how much a bid will raise your ad on selected pages. The website is really clear and you get the chance to have a 270&#215;165 pixel banner ad for free. <span id="more-73"></span></p>
<p><strong>ispuare</strong><br />
I found this advertising site via other blogs about the popular &#8220;Web 2.0 advertising thing&#8221;. Placing a link is for free and after that I got the invitation to get also a free &#8220;square&#8221; in exchange for a link. Sure the websites idea is very &#8220;original&#8221;, but I&#8217;m not sure that this is the &#8220;coolest&#8221; way to surf the internet. Placing a square inclusive an extra text link is € 50 at the moment.</p>
<p>At the end I&#8217;m asking me, who will visit all the websites behind the ads? In these days there is a lot of traffic because of all the blog posts but what about the real visitors a website need to sell products?<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/8-link-building-ideas-for-corporate-websites/" rel="bookmark" title="March 11, 2010">8 Link building ideas for corporate websites</a></li>
<li><a href="http://www.web-development-blog.com/archives/is-adbrite-your-advertising-partner/" rel="bookmark" title="September 7, 2006">Is AdBrite your advertising partner?</a></li>
<li><a href="http://www.web-development-blog.com/archives/social-media-services-are-more-efficient-these-days/" rel="bookmark" title="September 27, 2009">Social media services are more efficient these days</a></li>
</ul>
<p><!-- Similar Posts took 2.952 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/this-generation-web-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->