<?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>fragmente &#187; HTML</title>
	<atom:link href="http://blog.team-noir.net/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.team-noir.net</link>
	<description>team noir blog</description>
	<lastBuildDate>Thu, 19 Jan 2012 15:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>CSS: center background image in Firefox &amp; Co.</title>
		<link>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/</link>
		<comments>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 10:09:09 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[background-image]]></category>
		<category><![CDATA[center]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=399</guid>
		<description><![CDATA[Today just a short snippet. To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;: body { background-image: url(....); background-position: center center; background-attachment: fixed; height: 100%; } Tested with: IE 6 &#8211; 8, Firefox 3.6, Safari 4 With this little trick, my day will be fine! Ole. Related posts: How [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today just a short snippet.</p>
<p>To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;:</p>
<pre>body {
background-image: url(....);
background-position: center center;
<strong><span style="color: #800000;">background-attachment: fixed</span></strong>;
height: 100%;
}</pre>
<p>Tested with:<strong> IE 6 &#8211; 8, Firefox 3.6, Safari 4</strong></p>
<p>With this little trick, my day will be fine! Ole.</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</title>
		<link>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/</link>
		<comments>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:43:19 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[ie7]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=376</guid>
		<description><![CDATA[When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct. I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct.</p>
<p>I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In IE 7 the CSS-menu lays, in the part outside the sorrounding container, behind those elements. But for a menu you aspect to be the first element in the hierarchy.</p>
<p>Those layer positions can be set using z-index in CSS. The higher the index, the higher the position of the element to users-view. So I set the z-index to a high value but in IE 7 nothing happened.</p>
<p><span id="more-376"></span></p>
<p>After trying a while I worked out a very easy solution. If you use for an element the position-absolute attribute it will be set out of the normal element-flow of the website and be positioned absolute to the given position. But IE 7 inherits the value from the parent-element (here the sorrounding div-container) which had no z-index.</p>
<p>So my <em>solution</em> is to give both, the surrounding and the inner div-container a z-index. The surrounding container gets (in my case) a higher z-index than the surrounding one and the problem is fixed! <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The surrounding element is the YAML #topnav-element and the inner one is a div-container with list-items which are styled as a JS-free fully CSS-menu.</p>
<pre>#topnav {
  overflow:visible;
  z-index:5;
  position:absolute;
  [...]
}

#inner_container {
  position:absolute;
  z-index:2;
  [...]
}</pre>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to delete csc-default and id tag in TYPO3 4.3</title>
		<link>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/</link>
		<comments>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:48:34 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[htmlcode]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=350</guid>
		<description><![CDATA[How to &#8230; Since TYPO3 Version 4.3 all the source code is tagged with unlovely id and class tags with div-wrapper. &#60;div id="c1" class="csc-default"&#62; But with one little typoscript snippet you will get rid off it: tt_content.stdWrap.innerWrap &#62; Now everything looks clean and sweet. I love TYPO3 anyway! Related posts: mixed TYPO3 &#038; TypoScript Snippets [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Since TYPO3 Version 4.3 all the source code is tagged with unlovely <em>id</em> and <em>class</em> tags with <em>div-wrapper</em>.</p>
<pre>&lt;div id="c1" class="csc-default"&gt;</pre>
<p>But with one little typoscript snippet you will get rid off it:</p>
<pre>tt_content.stdWrap.innerWrap &gt;
</pre>
<p>Now everything looks clean and sweet. I love TYPO3 anyway!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to code a jQuery slider menu</title>
		<link>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 13:25:54 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=339</guid>
		<description><![CDATA[How to &#8230; I show you a nice jQuery snippet for a smoothy slider menu. This was my first jQuery experience &#8211; if you find some tuning options, tell me please! Here you can see my script in Action: http://www.gyn-endoskopie.de/ /** * @author team noir GbR * simple slide-out Menu * www.gyn-endoskopie.de * Version 1.5 [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>I show you a nice jQuery snippet for a smoothy slider menu.</p>
<p>This was my first <a href="http://jquery.com/">jQuery</a> experience &#8211; if you find some tuning options, tell me please!</p>
<p>Here you can see my script in Action: <a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></p>
<p><span id="more-339"></span></p>
<pre>/**
 * @author team noir GbR
 * simple slide-out Menu
 * www.gyn-endoskopie.de
 * Version 1.5 - 11.01.2010
 */
$(document).ready(function() {
 //on first loading, hide the submenu
 $(".subul li").hide();
 //show active sub element, after paging
 $(".active").parent().parent(".subul").css('margin-top', -4).children("li").show(".subul li");

 //Actionhandling
 //click on menu
 $(".slide").click(function(){

 //only one submenu is allowed to show
 $(".angeklickt li").slideUp("fast");
 $(".angeklickt").removeClass("angeklickt");
 //close other open submenus
 $(".active").parent().parent(".subul").children("li").slideUp(".subul li");

 //mark heading ul
 $(this).next("ul").addClass('angeklickt');

 //show marked submenu
 if ($(".angeklickt li").is(":hidden")) {
 $(".angeklickt li").slideDown("slow");
 $("ul.angeklickt").css('margin-top', -4);
 return false;
 }
 //close/slide submenu
 else {
 $(".angeklickt li").slideUp("slow");
 $("ul.angeklickt").css('margin-top', 0);
 $(this).next("ul").removeClass("angeklickt");
 return false;
 }
 });

});
</pre>
<p>this is the menu source code:</p>
<pre>&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#"&gt;Startseite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Zur Person&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#l"&gt;Operationen&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Operationsspektrum"&gt;Operationsspektrum&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Aufklärung"&gt;OP-Aufklärung&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Patienteninfos"&gt;OP-Patienteninfos&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anmeldung"&gt;Anmeldung&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="#" title="Novasure/Goldnetz"&gt;Novasure/Goldnetz&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#" title="Tagesklinik"&gt;Tagesklinik&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Kontakt&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Schreiben Sie uns"&gt;Schreiben Sie uns&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anfahrt mit dem Auto"&gt;Anfahrt mit dem Auto&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Wegbeschreibung"&gt;Wegbeschreibung&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>System information:</p>
<ul>
<li>TYPO3 4 CMS</li>
<li>YAML 3.1</li>
<li>CSS 2/3</li>
<li>XHTML 1.0</li>
<li><a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></li>
</ul>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png"><img class="alignnone size-full wp-image-347" title="slider_menu" src="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png" alt="" width="214" height="357" /></a></p>
<p>greetz!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use images base64 encoded inline an img-tag</title>
		<link>http://blog.team-noir.net/2010/03/how-to-use-images-base64-encoded-inline-an-img-tag/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-use-images-base64-encoded-inline-an-img-tag/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 09:56:56 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=295</guid>
		<description><![CDATA[It´s feasible to put elements (like an image) in raw format (base 64 encoded) directly into an HTML-tag. I will show you an example with an img-tag. First of all you need your image in a base64 encoded format. For this you can use the base64-decoder-encoder of motobit.com. Just choose your file to upload and [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>It´s feasible to put elements (like an image) in raw format (base 64 encoded) directly into an HTML-tag. I will show you an example with an img-tag.</p>
<p>First of all you need your image in a base64 encoded format. For this you can use the <a title="base64 encoder / decoder" href="http://www.motobit.com/util/base64-decoder-encoder.asp">base64-decoder-encoder of motobit.com</a>. Just choose your file to upload and afterwards hit &#8220;convert the source data&#8221;. The base64 encoded string will be shown in a textbox. For this example I use the external-link-image of <a title="The image for an external link from Wikipedia" href="http://bits.wikimedia.org/skins-1.5/monobook/external.png">wikipedia</a>. And I´ll get back the following base64 encoded string:</p>
<p><span id="more-295"></span></p>
<pre>iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAFVBMVEVmmcwzmcyZzP8A
ZswAZv////////9E6giVAAAAB3RSTlP///////8AGksDRgAAADhJREFUGFcly0ESAEAEA0Ei6/9P3sEcVB8k
mrwFyni0bOeyyDpy9JTLEaOhQq7Ongf5FeMhHS/4AVnsAZubxDVmAAAAAElFTkSuQmCC</pre>
<p>If you have this, you need to extend your normal img-tag with the information about an inline used image in base64-format. You put this information in the src-attribute. After the keyword &#8220;data:&#8221; you have to put the <a title="List of all mime-types at Wikipedia" href="http://en.wikipedia.org/wiki/Mime_type#List_of_common_media_types">mime-type</a> of the encoded image. We have to use &#8220;image/png&#8221;. If you put all together it looks like this:</p>
<pre>&lt;img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+P
AAAAFVBMVEVmmcwzmcyZzP8AZswAZv////////9E6giVAAAAB3RSTlP///////8AGksDRgAAADhJREF
UGFcly0ESAEAEA0Ei6/9P3sEcVB8kmrwFyni0bOeyyDpy9JTLEaOhQq7Ongf5FeMhHS/4AVnsAZubxD
VmAAAAAElFTkSuQmCC" border="0" alt="an image base64 encoded inline" /&gt;</pre>
<p>This can be very useful if you e.g. want to give an image-tag or an html-code-snippet to a client or a colleague. So there is no need to copy or send the used image. It´s just enough to copy the html-code-snippet. Have fun &#8230; <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-use-images-base64-encoded-inline-an-img-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fight old Browsers &#8211; YouTube follows</title>
		<link>http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/</link>
		<comments>http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:02:50 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[advise]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[popup]]></category>
		<category><![CDATA[warning]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=188</guid>
		<description><![CDATA[Good news! I just found several messages about YouTube and Internet Explorer 6 Support. Great. They also use a small popup for User&#8217;s with old browsers. http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/ http://www.heise.de/newsticker/YouTube-stellt-Unterstuetzung-fuer-Internet-Explorer-6-ein&#8211;/meldung/141998 http://www.googlewatchblog.de/2009/07/14/youtube-stellt-unterstuetzung-fuer-ie-6-ein/ I think this is the right way. Help those users, warn them and in a couple of month &#8211; STOP THE SUPPORT! Thanks YouTube/Google Go for [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/fight-internet-explorer-6-reloaded/' rel='bookmark' title='fight Internet Explorer 6 &#8211; reloaded'>fight Internet Explorer 6 &#8211; reloaded</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/' rel='bookmark' title='Aptana IDE Webdevelopment'>Aptana IDE Webdevelopment</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Good news!</p>
<p>I just found several messages about <a href="http://www.youtube.com">YouTube</a> and <a href="http://www.microsoft.com">Internet Explorer</a> 6 Support. Great.</p>
<p>They <a href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">also</a> use a small popup for User&#8217;s with old browsers.</p>
<ul>
<li><a href="http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/">http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/</a></li>
<li><a href="http://www.heise.de/newsticker/YouTube-stellt-Unterstuetzung-fuer-Internet-Explorer-6-ein--/meldung/141998">http://www.heise.de/newsticker/YouTube-stellt-Unterstuetzung-fuer-Internet-Explorer-6-ein&#8211;/meldung/141998</a></li>
<li><a href="http://www.googlewatchblog.de/2009/07/14/youtube-stellt-unterstuetzung-fuer-ie-6-ein/">http://www.googlewatchblog.de/2009/07/14/youtube-stellt-unterstuetzung-fuer-ie-6-ein/</a></li>
</ul>
<p>I think this is the right way. Help those users, warn them and in a couple of month &#8211; STOP THE SUPPORT!</p>
<p><span id="more-188"></span></p>
<p>Thanks <a href="http://www.youtube.com">YouTube</a>/<a href="http://www.google.com">Google</a> <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Go for it</p>
<p>If you like to warn users also, look at our <a href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">Post about jQuery-Popup</a> &amp; <a title="new Version Bad Browser" href="http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/">our new Version</a> (1.3)<a href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/"><br />
</a></p>
<p>Martin</p>
<p>(in the next days i will check this online and present some screenshots, hopefully)</p>
<p><strong>UPDATE</strong> (17.07.09)</p>
<p>Here is a small screenshot from the InternetExplorer 6 on Youtube.com.<br />
I also checked youtube.com with Opera 9.26 &#8211; but nothing appears.</p>
<p><img class="alignnone size-full wp-image-193" title="Test with InternetExplorer 6 on YouTube.com" src="http://blog.team-noir.net/wp-content/uploads/2009/07/ie6_youtubecom.jpg" alt="Test with InternetExplorer 6 on YouTube.com" width="640" height="394" /></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/fight-internet-explorer-6-reloaded/' rel='bookmark' title='fight Internet Explorer 6 &#8211; reloaded'>fight Internet Explorer 6 &#8211; reloaded</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/' rel='bookmark' title='Aptana IDE Webdevelopment'>Aptana IDE Webdevelopment</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aptana IDE Webdevelopment</title>
		<link>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/</link>
		<comments>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/#comments</comments>
		<pubDate>Sat, 30 May 2009 14:32:00 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[aptana]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=119</guid>
		<description><![CDATA[hey! instead of  giving you TYPO3 hints and snippets i like to share my enthusiasm. Yesterday i found APTANA and started to work with. Amazing! The hole IDE is nice to look at, good to work with and for now i discover so much features &#8230; WHOU. I will continue posting here all the nice [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/new-aptana-version-15/' rel='bookmark' title='new Aptana version 1.5'>new Aptana version 1.5</a></li>
<li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>hey!</p>
<p>instead of  giving you TYPO3 hints and snippets i like to share my enthusiasm. Yesterday i found <a title="Aptana IDE" href="http://aptana.com/">APTANA </a>and started to work with. Amazing!</p>
<p>The hole IDE is nice to look at, good to work with and for now i discover so much features &#8230; WHOU.</p>
<p>I will continue posting here all the nice possibilities to work with.</p>
<p><span id="more-119"></span></p>
<p>for now, look here:  a really cool plugin is ZEN CODE:<br />
(turn off the sound <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/ug84Ypwqfzk" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/ug84Ypwqfzk" /></object></p>
<p>If you want to share your APTANA-experience &#8211; feel free to post here.</p>
<p><strong>Links</strong>:</p>
<ul>
<li><a href="http://aptana.com/">http://aptana.com/</a></li>
<li><a title="Zen Code" href="http://code.google.com/p/zen-coding/">http://code.google.com/p/zen-coding/</a></li>
</ul>
<p>greetz<br />
Martin</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/new-aptana-version-15/' rel='bookmark' title='new Aptana version 1.5'>new Aptana version 1.5</a></li>
<li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

