<?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>The Kiermans &#187; css</title>
	<atom:link href="http://www.thekiermans.co.uk/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thekiermans.co.uk</link>
	<description>The personal blog of Darren Kierman (of Kierweb)</description>
	<lastBuildDate>Fri, 23 Jul 2010 11:19:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS3</title>
		<link>http://www.thekiermans.co.uk/css3/</link>
		<comments>http://www.thekiermans.co.uk/css3/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 11:15:22 +0000</pubDate>
		<dc:creator>darren</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.thekiermans.co.uk/?p=10786</guid>
		<description><![CDATA[So what is CSS3? Firefox has it, Internet Explorer hasn&#8217;t! Have you noticed on some sites that when you view it on Firefox compared to Internet Explorer it seems to look better, the reason behind this could be CSS3 support. CSS3 support allows a web designer to create a wide range of extra effects to [...]]]></description>
			<content:encoded><![CDATA[<p>So what is CSS3? Firefox has it, Internet Explorer hasn&#8217;t! <span id="more-10786"></span></p>
<p>Have you noticed on some sites that when you view it on Firefox compared to Internet Explorer it seems to look better, the reason behind this could be CSS3 support.</p>
<p>CSS3 support allows a web designer to create a wide range of extra effects to be applied which CSS2 never did. Effects including curves and shadows.</p>
<p>JQuery will allow a lot of these effects to be applied on a CSS2 based browser like Internet Explorer but you are still restricted to what you can do and requires additional modules to be installed and ends up taking a lot longer to do it.</p>
<p>Microsoft have announced that CSS3 support will appear in Internet Explorer 9, but we&#8217;ll wait and see if full support is actually added.</p>
<p>Want to know about CSS3? More information on CSS3 is available at <a href="http://www.css3.info/">http://www.css3.info/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thekiermans.co.uk/css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS &#8211; Its !important</title>
		<link>http://www.thekiermans.co.uk/css-its-important/</link>
		<comments>http://www.thekiermans.co.uk/css-its-important/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:25:39 +0000</pubDate>
		<dc:creator>darren</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>
		<category><![CDATA[!important]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.thekiermans.co.uk/?p=100</guid>
		<description><![CDATA[CSS styling will always cascade &#8211; meaning if you have more than one declaration of the same style &#8211; the last one it finds will always be used. You can override this functionality by using the !important function. A CSS rule which has !important on the end will always be applied no matter where that rule appears [...]]]></description>
			<content:encoded><![CDATA[<p>CSS styling will always cascade &#8211; meaning if you have more than one declaration of the same style &#8211; the last one it finds will always be used.<br />
<span id="more-100"></span><br />
You can override this functionality by using the <em>!important</em> function. A CSS rule which has !important on the end will always be applied no matter where that rule appears in the CSS document.</p>
<p>For example &#8230; the following CSS rule will always make sure paragraph text is always red, regardless if the paragraph text colour is changed (to blue) later on in the CSS document.</p>
<p style="padding-left: 30px;"><strong>p { color: #ff0000 !important; }<br />
</strong>&#8230;<br />
p { color: #0000ff; }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thekiermans.co.uk/css-its-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Cycle Extras</title>
		<link>http://www.thekiermans.co.uk/jquery-cycle-extras/</link>
		<comments>http://www.thekiermans.co.uk/jquery-cycle-extras/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 14:39:50 +0000</pubDate>
		<dc:creator>darren</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[cycle]]></category>
		<category><![CDATA[header]]></category>

		<guid isPermaLink="false">http://www.thekiermans.co.uk/2010/02/04/jquery-cycle-extras/</guid>
		<description><![CDATA[Yesterday I told you about an excellent Jquery script called Cycle. I’ve been using this recently on a lot of sites – mostly as a header. It works well as a header slideshow except when you want to put a logo on it – the first idea would be to just put the logo on [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I told you about an excellent Jquery script called Cycle. I’ve been using this recently on a lot of sites – mostly as a header.</p>
<p><span id="more-44"></span></p>
<p>It works well as a header slideshow except when you want to put a logo on it – the first idea would be to just put the logo on the actual images – but this requires you to do it on all images, and future images, if you decide to change the images at a later date.</p>
<p><strong>A solution is to overlay the image using a transparent image ……</strong></p>
<p>After the <strong>&lt;div&gt;&lt;/div&gt; </strong>which adds the images add …</p>
<blockquote><p>&lt;div class=&#8221;logo&#8221;&gt;<br />
    &lt;img src=&#8221;images/logo.png&#8221;&gt;<br />
&lt;/div&gt;</p></blockquote>
<p><em><strong>Note:</strong> Make sure the logo image file is the same size as the images in the </em>slideshow.</p>
<p>Now style the new class with the following …</p>
<blockquote><p>.logo {<br />
    height: 175px;<br />
    width: 960px;<br />
    overflow: hidden;<br />
    z-index: 10;<br />
    position: relative;<br />
    top: -175px;<br />
}</p></blockquote>
<p><em><strong>Note:</strong> Make sure that the height, width and top match the height and the width of the slideshow.</em></p>
<p>Examples of this …</p>
<p><em></em><a title="http://www.graemehowefencing.co.uk/" href="http://www.graemehowefencing.co.uk/">http://www.graemehowefencing.co.uk/</a><br />
<a title="http://www.svlhire.co.uk/home.html" href="http://www.svlhire.co.uk/home.html">http://www.svlhire.co.uk/home.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thekiermans.co.uk/jquery-cycle-extras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
