<?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>Evert Semeijn</title>
	<atom:link href="http://evertsemeijn.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://evertsemeijn.nl</link>
	<description>Premium and custom themes</description>
	<lastBuildDate>Fri, 27 Apr 2012 10:11:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creative, professional and unrivalled experience</title>
		<link>http://evertsemeijn.nl/creative-professional-and-unrivalled-experience/</link>
		<comments>http://evertsemeijn.nl/creative-professional-and-unrivalled-experience/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:26:38 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=589</guid>
		<description><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p><cite>I have been running a succesful job boards for several years. Since I have been working with Evert at <a href="http://fourleafed.com">FourLeafed</a> the rate of website development  has improved beyond measure. He is able to turn ideas into practical solutions. He is creative, professional and has unrivalled experience of creating job boards. I have no hesitation in recommending his services ~ <a href="http://tpjobs.com/" title="Creative, professional and unrivalled experience">James Phillips</a></cite></p>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p><cite>I have been running a succesful job boards for several years. Since I have been working with Evert at <a href="http://fourleafed.com">FourLeafed</a> the rate of website development  has improved beyond measure. He is able to turn ideas into practical solutions. He is creative, professional and has unrivalled experience of creating job boards. I have no hesitation in recommending his services ~ <a href="http://tpjobs.com/" title="Creative, professional and unrivalled experience">James Phillips</a></cite></p><p><span style="color: #808080;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/creative-professional-and-unrivalled-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Gradients</title>
		<link>http://evertsemeijn.nl/css-gradients/</link>
		<comments>http://evertsemeijn.nl/css-gradients/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 09:39:06 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=517</guid>
		<description><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p>On of the most used visual tricks are gradients. With CSS3 you can now do this without needing images. You use it like this: background: linear-gradient([color1], [color2]); Now color1 will fade to color2 from the top of the element to bottom. With the different prefixes this is fairly easy to use (top to bottom gradient [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p>On of the most used visual tricks are gradients. With CSS3 you can now do this without needing images. You use it like this:</p>
<blockquote>
<pre><code>background: linear-gradient([color1], [color2]);</code></pre>
</blockquote>
<p>Now color1 will fade to color2 from the top of the element to bottom. With the different prefixes this is fairly easy to use (top to bottom gradient going from white to black).</p>
<blockquote><p><code>background: #000; /* solid color for older browsers */<br />
background: -moz-linear-gradient(#FFF, #000);<br />
background: -o-linear-gradient(#FFF, #000);<br />
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#000)); /* older webkit */<br />
background: -webkit-linear-gradient(#FFF, #000);</code></p></blockquote>
<p>You can spice it up by using RGBA colors which adds the option of transparency, but as a webdesigner I want to be working with re-usable code. This saves me and my clients time and makes things easier to adjust. So in principle I&#8217;d want to extract the gradient from the color.</p>
<p>Since the background declaration will overrule the background-color declaration this might seem impossible, but not if you combine the base color of your gradient and the possibilities of the transparency from RGBA.</p>
<blockquote><p><code>background: #55B361; /* solid color for older browsers */<br />
background: #55B361 -moz-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));<br />
background: #55B361 -o-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));<br />
background: #55B361 -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.1)), to(rgba(0,0,0,0.1))); /* older webkit */<br />
background: #55B361 -webkit-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));</code></p></blockquote>
<p>As you see the color is now added to the background declaration before the gradient is defined. The gradient colors are defined in RGBA which gives you control over the transparency of the gradient colors and to what extend they will mix with the background-color. In the above example I am using a gradient going from white (10% visible) to black (10% visible). Re-using the gradients is now very simple; I just have to replace the background-color and I am done.</p>
<p>Although this is a possibility for many situations, it also has its downside. I works best when using a gradient with the same colors, for instance from black to black or white to white, where you only change the alpha. I had the best results with setting the alpha of the first gradient color to 0 and only adjusting the alpha of the second color.</p>
<p>What do think of this solution? Will you be using it?</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/css-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive site redesign</title>
		<link>http://evertsemeijn.nl/responsive-site-redesign/</link>
		<comments>http://evertsemeijn.nl/responsive-site-redesign/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 11:43:18 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=501</guid>
		<description><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p>As I have a redesign of my website planned I&#8217;m diving into the latest solutions on webdesign. Since browsing on mobile devices will grow in popularity and there are so many screen sizes I want my site to fit on any screen, without making several versions for every possible resolution. Since this approach is recently [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p>As I have a redesign of my website planned I&#8217;m diving into the latest solutions on webdesign. Since browsing on mobile devices will grow in popularity and there are so many screen sizes I want my site to fit on any screen, without making several versions for every possible resolution. Since this approach is recently growing in usage it has been given a name: Response Web Design.<span id="more-501"></span></p>
<p>In a recent article Ethan Marcotte<sup><a title="Responsive Web Design by Ethan Marcotte" href="http://www.alistapart.com/articles/responsive-web-design/">1</a></sup> points out that &#8220;<em>Fluid grids, flexible images, and media queries are the three technical ingredients for responsive web design, but it also requires a different way of thinking. Rather than quarantining our content into disparate, device-specific experiences, we can use media queries to progressively enhance our work within different viewing contexts</em>.&#8221;</p>
<p>Resources on Responsive Web Design are emerging on the web. Seeing several demos online I understand why this will become the future trend in webdesign, which doesn&#8217;t only requires sites to be rebuild, but also requires a shift in the concept of sites and the way we used to build them. The content on sites will have to be fluid.</p>
<p>Since you might want to see what I am talking about I am share the following links with you. What do you think? Will you rethink your sites to make them responsive too?</p>
<p><a href="http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/">http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/</a><br />
<a href="http://demos.simplethemes.com/skeleton/">http://demos.simplethemes.com/skeleton/</a><br />
<a href="http://www.smashingmagazine.com/2011/08/24/freebie-responsive-jquery-slider-plugin-flexslider/">http://www.smashingmagazine.com/2011/08/24/freebie-responsive-jquery-slider-plugin-flexslider/</a><br />
<a href="http://fitvidsjs.com/">http://fitvidsjs.com/</a><br />
<a href="http://letteringjs.com/">http://letteringjs.com/</a><br />
<a href="http://fittextjs.com/">http://fittextjs.com/</a></p>
<p>And a little treat: <a href="http://www.smashingmagazine.com/2011/09/08/to-five-smashing-years-and-a-free-anniversary-ebook-treat/">http://www.smashingmagazine.com/2011/09/08/to-five-smashing-years-and-a-free-anniversary-ebook-treat/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/responsive-site-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@Quora</title>
		<link>http://evertsemeijn.nl/quora/</link>
		<comments>http://evertsemeijn.nl/quora/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 10:30:35 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=491</guid>
		<description><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p>[blackbirdpie url="https://twitter.com/evertsemeijn/status/124068174852399104"] link]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p>[blackbirdpie url="https://twitter.com/evertsemeijn/status/124068174852399104"]</p>
<p><a href="https://twitter.com/evertsemeijn/status/124068174852399104">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/quora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New service: Launch Effect</title>
		<link>http://evertsemeijn.nl/new-service-launch-effect/</link>
		<comments>http://evertsemeijn.nl/new-service-launch-effect/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 19:48:32 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=478</guid>
		<description><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p>Lets be honest: I can&#8217;t create your job board in minutes. It takes time. Time to discuss the overall look of the site, time to discuss the colors we&#8217;ll be using and we need time to test your job board before launching it. But when you think this is bad for the launch of your [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://evertsemeijn.nl/category/blog/" title="Blog">Blog</a></p><p>Lets be honest: I can&#8217;t create your job board in minutes. It takes time. Time to discuss the overall look of the site, time to discuss the colors we&#8217;ll be using and we need time to test your job board before launching it. But when you think this is bad for the launch of your <a title="Job Board installation" href="http://evertsemeijn.nl/job-board-installation/">new jobboard</a> you are wrong! Enter our new add-on <em>Launch Effect</em>.</p>
<p><em>Launch Effect</em> is a one-page theme that lets you create a viral campaign. Here&#8217;s how it works:</p>
<ul>
<li>Visitors to your website sign up on your <em>Launch Effect</em> site using their email.</li>
<li>Upon signing up, the page generates a special URL for them to share with their friends.</li>
<li>Use the URL to track your most active referrers and reward them for spreading the word.</li>
</ul>
<p>While I am working on your new job board you are launching your own viral campaign and collecting vital information on potential customers who are spreading the word for you!</p>
<p>Order your <em>Launch Effect</em> <a title="Contact me" href="http://evertsemeijn.nl/contact-me/">now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/new-service-launch-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

