<?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; karrock</title>
	<atom:link href="http://blog.team-noir.net/author/karrock/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>How to autoupdate WordPress hosted at Host Europe</title>
		<link>http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/</link>
		<comments>http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 19:33:39 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=473</guid>
		<description><![CDATA[All who has webspace at Host Europe and installed WordPress by itself (not out of the box) have problems to use the autoupdate function from WordPress. For me it said always that the installtion path of WordPress was not found. Now, after a long while, I found a german blog article WordPress AutoUpdate bei Hosteurope. [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/' rel='bookmark' title='TYPO3 4.5 &#8211; sendmail on Host Europe Server'>TYPO3 4.5 &#8211; sendmail on Host Europe Server</a></li>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>All who has webspace at Host Europe and installed WordPress by itself (not out of the box) have problems to use the autoupdate function from WordPress.</p>
<p>For me it said always that the installtion path of WordPress was not found. Now, after a long while, I found a german blog article <a title="WordPress AutoUpdate bei Hosteurope" href="http://viel-palaver.de/2008/12/wordpress-autoupdate-bei-hosteurope/">WordPress AutoUpdate bei Hosteurope</a>. There is described that you just have to put one single line in the config file wp-config.php of WordPress and all works as expected. The problem which cause the error is the directory for temporary files, which is set by this line via a environmental variable.</p>
<pre><strong>putenv('TMPDIR='.ini_get('upload_tmp_dir') );</strong>
if ( !defined('ABSPATH') )
   define('ABSPATH', dirname(__FILE__) . '/');</pre>
<p>Just put the bold line in your config-file at this position and then you can use WordPress auto update. But be sure to <a title="WordPress Backups" href="http://codex.wordpress.org/WordPress_Backups">backup your data as explained in the WordPress Codex</a>!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/' rel='bookmark' title='TYPO3 4.5 &#8211; sendmail on Host Europe Server'>TYPO3 4.5 &#8211; sendmail on Host Europe Server</a></li>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/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 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>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>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>
		<item>
		<title>CSS floating problems</title>
		<link>http://blog.team-noir.net/2009/06/css-floating-problems/</link>
		<comments>http://blog.team-noir.net/2009/06/css-floating-problems/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 16:30:24 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[clear]]></category>
		<category><![CDATA[float]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=127</guid>
		<description><![CDATA[Today I had a really annoying problem with two floated elements and a clear afterwards. It´s well known if you want to put two elements (two div-container) side by side instead of one below the other you have to use CSS-floating and to stop the float afterwards (to start the normal document flow) you have [...]
Related posts:<ol>
<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/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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I had a really annoying problem with two floated elements and a clear afterwards. It´s well known if you want to put two elements (two <span style="font-family: courier new,courier;">div</span>-container) side by side instead of one below the other you have to use CSS-floating and to stop the float afterwards (to start the normal document flow) you have to clear the elements.</p>
<pre><code>.element_a {float: left;}
.element_b {float: right;}
.element_c {clear: both;}</code></pre>
<p>Today I had this problem. I was using within a YAML Layout (middle column) some elements, two were floated like shown above. Now I do a css clear for the <span style="font-family: courier new,courier;">hr</span>-tag (horizontal dashed line) to stop floating. What I got was the stopped floating, but also a big gap above the line (see first picture below). I was now trying with Firebug and other tools to eliminate this gap for one or two hours and it doesn´t work.<br />
I just wanted to put a negative <span style="font-family: courier new,courier;">margin-top</span> to slide the element above. But this doesn´t work at all! <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><span id="more-127"></span></p>
<p>Then I had an idea: I tried out, if this problem also occur when I set a other element (instead of the <span style="font-family: courier new,courier;">hr</span>-line) after the floated elements and clear this one. So I put an empty <span style="font-family: courier new,courier;">div</span>-container after the floated elements, but I get the same problem.<br />
I remembered the idea with the negative margin and test a little bit around with Firebug and then I see the solution. I can´t minimize the gap itself above the line. But I can set a negative margin for the bottom of the empty <span style="font-family: courier new,courier;">div</span>-container, which will pull the elements a few pixels nearer to the top.</p>
<p>I tried it out and it worked! So if you have a similar problem you don´t have to clear the <span style="font-family: courier new,courier;">hr</span>-element. Set just a <span style="font-family: courier new,courier;">div</span>-element after the floated container and clear this one. Then set a negativ <span style="font-family: courier new,courier;">margin-bottm</span> to close the gap above! Now I´m happy and can let the day end &#8230; in freedom. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PS:<br />
Sorry that there will be no example available. I can´t put the HTML and CSS code here. But I can show you a little picture to illustrate the problem.</p>
<div id="attachment_129" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_problem.jpg"><img class="size-medium wp-image-129" title="Problem with clearing" src="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_problem-300x46.jpg" alt="Problem with clearing" width="300" height="46" /></a><p class="wp-caption-text">Problem with clearing</p></div>
<div id="attachment_132" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_solution.jpg"><img class="size-medium wp-image-132" title="clearing_solution" src="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_solution-300x37.jpg" alt="Solution of the clearing problem" width="300" height="37" /></a><p class="wp-caption-text">Solution of the clearing problem</p></div>
<p>Related posts:<ol>
<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/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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/06/css-floating-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using YAML and be fully variable</title>
		<link>http://blog.team-noir.net/2009/04/using-yaml-and-be-fully-variable/</link>
		<comments>http://blog.team-noir.net/2009/04/using-yaml-and-be-fully-variable/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 21:53:57 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[YAML]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=98</guid>
		<description><![CDATA[I´m using YAML now for a while on our projects, also at work and for my own website. YAML is build as a core version which has many hacks (maybe for IE) and is made as an 3-column layout. On top of this there are some files which overwrites the other CSS classes and IDs [...]
Related posts:<ol>
<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>
<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>I´m using <a title="Yet Another Multicolumn Layout" href="http://www.yaml.de" target="_self">YAML</a> now for a while on our projects, also at work and for my own website. YAML is build as a core version which has many hacks (maybe for IE) and is made as an 3-column layout. On top of this there are some files which overwrites the other CSS classes and IDs and this is your special layout. Maybe when you use the <a title="YAML-Javascript online Builder" href="http://builder.yaml.de/" target="_self">YAML-Builder</a> you have a finished layout where the classes in the css-directory overwrites the core classes.</p>
<p>For example you want to have a 2-column layout instead of a 3-column one the files in the css-directory set this layout. But when you make your own website you have to overwrite also some settings in the css-directory because you want to change the YAML-layout a bit. Layout, sizing or colours. There are two ways to do this.</p>
<p><span id="more-98"></span></p>
<ol>
<li>You edit the files in the css-directory</li>
<li>You make a 2nd css-file especially for your website and include it as the last one in your html-file(s) (must be included before the IE7-hack will be included)</li>
</ol>
<p>The first solution is good and easy but I prefer the 2nd one and now I will explain on a little example (from a project at my work I do at the moment).<br />
I made a 2-column-layout with YAML for a little project at work. The template and layout is growing and will be finished in the next days. Now a collegue comes to me and we discuss the style and discuss about other internal websites and the corporate design. Now we decided to change to a 3-column layout, because it´s closer to the style-guide. I used the 2nd method and now I have the possibility to change the full YAML-core-layout and the overwriting files (in the css-directory) to get an 3-column layout without losing my special settings and layout-configurations for our design. If I used the first method I would have to backup the files in the css-directory, make with YAML-Builder a new 3-column layout and redo the changes from the backuped files again in the new one. This would be more complex.<br />
The downside is, that you have a extra file and you have to include this extra css-file in every html-file you make.</p>
<p>Related posts:<ol>
<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>
<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/2009/04/using-yaml-and-be-fully-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

