<?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>FatBasturd &#187; Grease</title>
	<atom:link href="http://www.fatbasturd.co.uk/tag/grease/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fatbasturd.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 20 Aug 2009 10:58:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Layout using percentage (%) and pixels (px) together</title>
		<link>http://www.fatbasturd.co.uk/css-layout-using-percentage-and-pixels-px-together/</link>
		<comments>http://www.fatbasturd.co.uk/css-layout-using-percentage-and-pixels-px-together/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 19:19:19 +0000</pubDate>
		<dc:creator>FatBasturd</dc:creator>
				<category><![CDATA[Design, CSS & Xhtml]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Fat]]></category>
		<category><![CDATA[Grease]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.fatbasturd.co.uk/?p=141</guid>
		<description><![CDATA[Quite often either I or other people are asked how to control CSS layouts using both pixels and percentages. The answer is a simple one but I will demonstrate the code needed a little more so you can better understand it. For this tutorial I will be basing the tutorial on a post I answered [...]]]></description>
			<content:encoded><![CDATA[<p>Quite often either I or other people are asked how to control CSS layouts using both pixels and percentages. The answer is a simple one but I will demonstrate the code needed a little more so you can better understand it. For this tutorial I will be basing the tutorial on a post I answered on Neowin.net (A forum I frequent).</p>
<p>Ok, so start with we want to have a main div which stretches for 80% of the browser width. Our main div will have the class .red and uses the following CSS.<br />
<span id="more-141"></span></p>
<pre>
.red {
	background-color: #F00;
	width: 80%;
	height: 800px; /* Just for illustration purposes */
	margin-right: auto;
	margin-left: auto;
}
</pre>
<p>So you can see that our .red class has an 80% width and uses margin auto for left and right. This centers the div within the browser and gives it a percentage of 80%.</p>
<p>Now, what we want to achieve is the following. A left column within .red with the width of 250px and a right column that will fill the remainder of the 80% width. Tricky? Not really&#8230;</p>
<p>Our left column will be called .blue and uses the following CSS.</p>
<pre>
.blue {
	float: left;
	width: 250px;
	background-color: #06C;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: center;
}
</pre>
<p>The CSS for our left column is simple as you can see. It uses 250px for the width and I simply float it to the left. Our right column however needs a little more to achieve our result and is achieved like so.</p>
<p>Our right column will have the class .green and uses the following CSS.</p>
<pre>
.green {
	float: none;
	left: auto;
	margin-left: 250px;
	position: static;
	width: auto;
	background-color: #0F6;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-align: center;
}
</pre>
<p>.green has a static position, uses no float and has the width set to auto to ensure it fills the remaining space and the all important margin. the margin is the important part here as you need to set the value as per the width of your left column so if you have a column on the left that is 190px wide then your margin-left must be 190px and so on.</p>
<p>That is all you need for the desired effect (<a href="http://www.fatbasturd.co.uk/neowin-rgb.html">Live Demo</a>). As usual, to leave me a fat comment dripping with greasy left over meat just look below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fatbasturd.co.uk/css-layout-using-percentage-and-pixels-px-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s official!! The world wide web has an ozone layer and we are destroying that too.</title>
		<link>http://www.fatbasturd.co.uk/its-official-the-world-wide-web-has-an-ozone-layer-and-we-are-destroying-that-too-enter-keepittidycouk/</link>
		<comments>http://www.fatbasturd.co.uk/its-official-the-world-wide-web-has-an-ozone-layer-and-we-are-destroying-that-too-enter-keepittidycouk/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 10:46:17 +0000</pubDate>
		<dc:creator>FatBasturd</dc:creator>
				<category><![CDATA[Design, CSS & Xhtml]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Fat]]></category>
		<category><![CDATA[Grease]]></category>
		<category><![CDATA[Meat]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.fatbasturd.co.uk/?p=13</guid>
		<description><![CDATA[
Ok, so scientists haven&#8217;t actually stated that there is indeed a www ozone layer but at this point you are reading the post so the title&#8217;s job has been done. This post is actually about the world wide web but I am going to be focussing on how we got it into the mess it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fatbasturd.co.uk/its-official-the-world-wide-web-has-an-ozone-layer-and-we-are-destroying-that-too-enter-keepittidycouk"><img title="kitter" src="http://www.fatbasturd.co.uk/wp-content/uploads/2009/01/kitter.jpg" alt="kitter" /></a></p>
<p>Ok, so scientists haven&#8217;t actually stated that there is indeed a www ozone layer but at this point you are reading the post so the title&#8217;s job has been done. This post is actually about the world wide web but I am going to be focussing on how we got it into the mess it is today.</p>
<p>Every developer or designer at one stage is guilty of a dodgy contribution to the basement of the grand old interweb and most learn from the mistake then move on to better things. I am of course reffering to bad design, markup or use of flashing animated .gif&#8217;s.</p>
<p>On an average day of web browsing looking for more useless information to forget an hour later I would say that 50% + of the sites either look or work absolutely cack. A little more time spent on the finer details can make a world of difference and websites that showcase the best of the best should really do what they say on the tin and actually show the ones that function, look good and inspire others.<span id="more-13"></span></p>
<p>I am guilty of shirking certain duties involved when building a site especially when the deadline is close but I like to think that the finesse is always there and my shirking will not be noticed or indeed important to the websites progression. Sometimes when there is a deadline and I have a designers block thing going on I usually check out some of the web showcase websites I frequent.</p>
<p>As of late (<a href="http://www.fatbasturd.co.uk/css-showcase-websites-degrading/" target="_blank">Refer to recent post</a>) these sites seem to add more than their fair share of &#8220;ok websites&#8221; into the database so when somebody like me visits the site looking to steal some inspiration I am instead faced with trawling through more than a couple of designs to find anything decent enough to be classed as &#8220;best of the best&#8221;. A big culprit of this is <a href="http://www.cssshowcase.co.uk">CSS Showcase</a>! The site seems to accept ANY website submitted to it (probably just to populate the database a bit more) so does not suit its purpose. It is also found on top of Google for &#8220;CSS Showcase&#8221; which is understandable by the domain name but how it could EVER inspire designers i will never know.</p>
<h4>The birth of KIT</h4>
<p>I&#8217;m not talking about the car off Knight Rider that would be silly and irrelevent although he does have a nice shine&#8230;Nope I am talking about a newly developed website called Keep It Tidy (<a href="http://www.keepittidy.co.uk" target="_blank">keepittidy.co.uk</a>) designed by a fat, greasy, ugly, sweaty bastard&#8230;&#8230;ME <img src='http://www.fatbasturd.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>KIT is a Flash, CSS &amp; HTML website showcase gallery which will feature websites that I deem suitable for inspiration to designers and developers. This could be for several reasons such as tutorials included, design, usability etc but ultimately will be based off the inspiration levels. I have created my own graph with an inspiration level from 1-10 and if a website reaches above 7 then it is suitable to be included.</p>
<h4>What will this achieve?</h4>
<p>Hopefully once we get more submissions into our database it can become an inspiration portal to designers and developers which can aid us all in our time of need when the inspiration blocker devil starts his rounds.</p>
<p>Have you created an awesome site? <a title="KIT" href="http://www.keepittidy.co.uk/submit_a_site.php" target="_blank">Submit it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fatbasturd.co.uk/its-official-the-world-wide-web-has-an-ozone-layer-and-we-are-destroying-that-too-enter-keepittidycouk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am fat, greasy, short and ugly but&#8230;..I have a new blog design</title>
		<link>http://www.fatbasturd.co.uk/i-am-fat-greasy-short-and-ugly-buti-have-a-new-blog-design/</link>
		<comments>http://www.fatbasturd.co.uk/i-am-fat-greasy-short-and-ugly-buti-have-a-new-blog-design/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 10:51:32 +0000</pubDate>
		<dc:creator>FatBasturd</dc:creator>
				<category><![CDATA[Life, strife & general shite]]></category>
		<category><![CDATA[Fat]]></category>
		<category><![CDATA[Grease]]></category>
		<category><![CDATA[Lard]]></category>
		<category><![CDATA[Meat]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.fatbasturd.co.uk/?p=18</guid>
		<description><![CDATA[So I have finally decided that my blog users deserve a little something for visiting my site so I have created a new simple design which should be pleasing on the eyes and simple to use.
Although I am a website designer and developer the focus of this blog isn&#8217;t aimed at that! Instead it is [...]]]></description>
			<content:encoded><![CDATA[<p>So I have finally decided that my blog users deserve a little something for visiting my site so I have created a new simple design which should be pleasing on the eyes and simple to use.</p>
<p>Although I am a website designer and developer the focus of this blog isn&#8217;t aimed at that! Instead it is aimed at my entire life and the things that interest me along with several tutorials on certain things I see as important. To be honest, I don&#8217;t really have a lot of free time to post on here but I will post what I can, when I can.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fatbasturd.co.uk/i-am-fat-greasy-short-and-ugly-buti-have-a-new-blog-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
