<?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; CSS</title>
	<atom:link href="http://blog.team-noir.net/tag/css/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>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</title>
		<link>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/</link>
		<comments>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 17:01:53 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=432</guid>
		<description><![CDATA[How to Some nice CSS3 snippets for every day work &#8230; rounded corners:  border-radius -moz-border-radius: 5px; border-radius: 5px; prefix is only necessary for mozilla! reference: border-radius -moz-border-radius border-top-left-radius -moz-border-radius-topleft border-top-right-radius -moz-border-radius-topright border-bottom-right-radius -moz-border-radius-bottomright border-bottom-left-radius -moz-border-radius-bottomleft more border-radius linear gradients /* Firefox 3.6 */ -moz-linear-gradient(top, #ddd, #fff); /* Safari &#38; Chrome */ -webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to</p>
<p>Some nice CSS3 snippets for every day work &#8230;</p>
<p><span id="more-432"></span></p>
<h4>rounded corners:  <strong>border-radius</strong></h4>
<pre>-moz-border-radius: 5px;
border-radius: 5px;
</pre>
<p>prefix is only necessary for mozilla!</p>
<p>reference:</p>
<pre>border-radius
-moz-border-radius
border-top-left-radius
-moz-border-radius-topleft
border-top-right-radius
-moz-border-radius-topright
border-bottom-right-radius
-moz-border-radius-bottomright
border-bottom-left-radius
-moz-border-radius-bottomleft
</pre>
<p><a href="http://www.css3.info/preview/rounded-border/">more border-radius</a></p>
<h4><strong>linear gradients</strong></h4>
<pre>/* Firefox 3.6 */
-moz-linear-gradient(top, #ddd, #fff);
/* Safari &amp; Chrome */
-webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, #ddd));
/* IE6 &amp; IE7 */
filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff');
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff')";
</pre>
<p><a href="http://codecandies.de/2010/02/16/css-3-gradients/">more gradients 1</a><br />
<a href="http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-using-images/">more gradients 2</a><br />
<a href="http://www.colorzilla.com/gradient-editor/">more gradients 3 (generator)</a></p>
<h4><strong>box-shadow:</strong></h4>
<pre>/*Schlagschatten*/
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;

/*inner shadow */
-moz-box-shadow: inset 0 0 5px #888;
-webkit-box-shadow: inset 0 0 5px#888;
box-shadow: inner 0 0 5px #888;
</pre>
<p><a href="http://www.css3.info/preview/box-shadow/">more box-shadow</a></p>
<h4><strong>text-shadow:</strong></h4>
<pre>text-shadow: 2px 2px 2px #000;
</pre>
<p>and for our best friend -&gt; internet explorer some nice <a href="http://www.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/">workarounds</a></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mixed TypoScript Snippets Vol. 1</title>
		<link>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/</link>
		<comments>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 09:07:45 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=415</guid>
		<description><![CDATA[Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4) show restricted Pages &#38; add css (class=&#8221;locked&#8221;) make restricted pages visible for all, but not accessible # 11 = Page with Login Plugin config.typolinkLinkAccessRestrictedPages = 11 config.typolinkLinkAccessRestrictedPages_addParams = &#38;referer=###RETURN_URL### #for the menu lib.menu.1 { [...]
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/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4)</p>
<h4>show restricted Pages &amp; add css (class=&#8221;locked&#8221;)</h4>
<p><span id="more-415"></span></p>
<p>make restricted pages visible for all, but not accessible</p>
<pre># 11 = Page with Login Plugin
config.typolinkLinkAccessRestrictedPages = 11
config.typolinkLinkAccessRestrictedPages_addParams = &amp;referer=###RETURN_URL###

#for the menu
lib.menu.1 {
 showAccessRestrictedPages = NONE
 showAccessRestrictedPages.addParams = &amp;redirect_url=###RETURN_URL###
}
</pre>
<p>now, add some class or attributes to the restricted pages</p>
<pre>[usergroup = *]
# after login
...
[else]
#without login
...
lib.menu.1.NO = 1
lib.menu.1.NO.ATagParams.if {
         value=0
         isGreaterThan.field = fe_group
     }
lib.menu.1.NO.ATagParams = class="locked"
lib.menu.1.IFSUB = 1
lib.menu.1.IFSUB.ATagParams.if {
         value=0
        isGreaterThan.field = fe_group
     }
lib.menu.1.IFSUB.ATagParams = class="locked"
[end]
</pre>
<p>hard to find the right solution, i spent several hours for this snippets &#8211; so have fun!</p>
<p><a href="http://typo3.org/"><img class="alignnone" title="Inspiring people to share" src="http://typo3.org/fileadmin/templates/images/logo-typo3.gif" alt="Inspiring people to share" width="123" height="34" /></a></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/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use transparency with different Browsers</title>
		<link>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/</link>
		<comments>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:19:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=404</guid>
		<description><![CDATA[How to: One more snippet &#8230; I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool summary. take this: div .test { background: rgb(255, 255, 255); /* fallback for all old guys */ background: rgba(2255, 255, 255, 0.5); } Internet Explorer need a special treatment, via conditional [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to:</strong></p>
<p>One more snippet &#8230;</p>
<p>I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool <a href="http://css-tricks.com/examples/RGBaSupport/" target="_blank">summary</a>.</p>
<p><strong>take this:</strong></p>
<pre><code>div .test {
   background: rgb(255, 255, 255); /* fallback for all old guys */
   background: rgba(2255, 255, 255, <strong>0.5</strong>);
}
</code></pre>
<p><strong>Internet Explorer </strong>need a special treatment, via conditional comment</p>
<pre><code>&lt;!--[if lt IE 9]&gt;
div .test {background:#fff; filter:alpha(opacity=<strong>50</strong>);}
&lt;![endif]--&gt;</code></pre>
<p>Thats all. Enjoy it.</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 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 build a YAML fullscreen layout</title>
		<link>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 12:45:15 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[fullscreen]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=323</guid>
		<description><![CDATA[How to &#8230; Yaml provides a nice solution for column layout, center layout and fullscreen layout. The last team-noir project was a fullscreen-design for our customer. I show you how easy it is to code such a template: Dirk Jesse wrote a very good documentation: Variations of the Markup As demonstrated, the two CSS classes  [...]
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/04/using-yaml-and-be-fully-variable/' rel='bookmark' title='Using YAML and be fully variable'>Using YAML and be fully variable</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Yaml provides a nice solution for column layout, center layout and fullscreen layout.</p>
<p>The <a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">last team-noir project</a> was a fullscreen-design for our customer. I show you how easy it is to code such a template:</p>
<p><span id="more-323"></span></p>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/03/fullscreen.png" target="_blank"><img class="alignnone size-full wp-image-325" title="fullscreen" src="http://blog.team-noir.net/wp-content/uploads/2010/03/fullscreen.png" alt="" width="270" height="458" /></a></p>
<p>Dirk Jesse wrote a very good <a href="http://www.yaml.de/en/documentation/basics/xhtml-source-code.html">documentation</a>:</p>
<blockquote>
<h3>Variations of the Markup</h3>
<p>As demonstrated, the two CSS classes  .page_margins and .page control the basic appearance of the layout, by setting the total width as well as margins, borders, or backgrounds if necessary.</p>
<p>In the source code described above, the outermost DIV container  .page_margins surrounds all the other elements of the webpage. This results in a layout which in its simplest form is a rectangular box against the background of the &lt;body&gt; element.  This effect is not always desirable.</p></blockquote>
<p>So the main ascpect is to order your source by:</p>
<pre><code>&lt;div id="header / col1 / ..."&gt;
    &lt;div class="page_margins"&gt;
      &lt;div class="page"&gt;
         ...
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt; </code></pre>
<p>modify the <em>basemod.css</em>:</p>
<pre>/* (en) Centering layout in old IE-versions */
 body { text-align:center; }
 .page_margins { text-align:left; margin:0 auto; }

 /* (en) Layout:width, background, borders */
 .page_margins { <strong>width: 100%</strong>; background: transparent; }
</pre>
<p>Example on <a href="http://www.yaml.de/fileadmin/examples/07_layouts_advanced_2/fullpage_3col.html">Yaml.de</a>, and <a href="http://www.yaml.de/fileadmin/examples/07_layouts_advanced_2/fullpage_grids.html">here<br />
</a></p>
<p>So as you can see &#8211; really easy coding -&gt; thank&#8217;s to <a href="http://www.highresolution.info/">Dirk Jesse</a>!</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/04/using-yaml-and-be-fully-variable/' rel='bookmark' title='Using YAML and be fully variable'>Using YAML and be fully variable</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS border-bottom for IE 6</title>
		<link>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/</link>
		<comments>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 13:29:08 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=247</guid>
		<description><![CDATA[We have decided we our bad Browser-script to not any longer support browsers like IE 6 which does not follow the HTML-standards. But sometimes, maybe when you are at work, it is not that easy. Sometimes you need a little work around or a special CSS only for IE 6. Today it was one of [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We have decided we our bad Browser-script to not any longer support browsers like IE 6 which does not follow the HTML-standards.</p>
<p>But sometimes, maybe when you are at work, it is not that easy. Sometimes you need a little work around or a special CSS only for IE 6. Today it was one of those days. At work I made a site were articles are shown in a list, only one little overview-snippet for each article. Now I want, to made it more clearly arranged a solid line between each div-container. Thought and done in CSS, it worked fine &#8211; in Firefox. But not for Internet Explorer 6.</p>
<p><span id="more-247"></span></p>
<p>But after a little internet search I found a very easy to use solution: you have to put a margin-bottom also in your CSS-class and than IE 6 let the line appear. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is my class.</p>
<pre>.my_class {
   padding: 10px;
   border-bottom: 1px solid #999;
   margin-bottom: 1px; /* needed to show the border also in IE 6 */
   min-height: 190px;
}</pre>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>new Aptana version 1.5</title>
		<link>http://blog.team-noir.net/2009/08/new-aptana-version-15/</link>
		<comments>http://blog.team-noir.net/2009/08/new-aptana-version-15/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 13:31:50 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[aptana studio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=238</guid>
		<description><![CDATA[Today just a short post: new Aptana Studio IDE is available. I have just downloaded the .exe file. Let&#8217;s see whats new &#8230; greetz, Martin Related posts: Aptana Studio 2.0 under Ubuntu 9.10 Aptana IDE Webdevelopment
Related posts:<ol>
<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/2009/05/aptana-webdevelopment-zen-code/' rel='bookmark' title='Aptana IDE Webdevelopment'>Aptana IDE Webdevelopment</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today just a short post:</p>
<p>new <a title="new Version" href="http://aptana.com/studio/download">Aptana Studio IDE is available</a>.</p>
<p>I have just downloaded the .exe file. Let&#8217;s see whats new &#8230;</p>
<p>greetz, Martin</p>
<p>Related posts:<ol>
<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/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/08/new-aptana-version-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Floating problems with IE 6</title>
		<link>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/</link>
		<comments>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:18:41 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=221</guid>
		<description><![CDATA[The Internet Explorer 6 has sometimes a problem with floating right. Today I had this problem. I have two div-container: one a image which has to float left and a text block which has to float right. On Firefox this works without any problems. But IE 6 do not float the text to the right [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Internet Explorer 6 has sometimes a problem with floating right. Today I had this problem. I have two div-container: one a image which has to float left and a text block which has to float right. On Firefox this works without any problems. But IE 6 do not float the text to the right but just put it after the image. After a little internet search I found a similar problem, the so called <a title="Explanation of the doubled float-margin bug" href="http://www.positioniseverything.net/explorer/doubled-margin.html">doubled float-margin bug</a> on IE 6.<span id="more-221"></span></p>
<p>The solution of this problem, just set the floating boxes with inline-attribute, works also for this right-floating problem. Just set for the CSS-id the following:</p>
<pre>display: inline;</pre>
<p>See the pictures below. The left one is with bug, the right one without. Hope this helps some others. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/ie_float_problem/' title='IE6 right-floating problems'><img width="150" height="123" src="http://blog.team-noir.net/wp-content/uploads/2009/08/ie_float_problem-150x123.png" class="attachment-thumbnail" alt="IE6 right-floating problems" title="IE6 right-floating problems" /></a>
<a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/ie_float_fix/' title='IE6 fixed right-floating'><img width="150" height="119" src="http://blog.team-noir.net/wp-content/uploads/2009/08/ie_float_fix-150x119.png" class="attachment-thumbnail" alt="IE6 fixed right-floating" title="IE6 fixed right-floating" /></a>

<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

