<?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>Fahlstad Design &#187; Webdesign</title>
	<atom:link href="http://fahlstad.se/category/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://fahlstad.se</link>
	<description>WordPress Unlimited</description>
	<lastBuildDate>Wed, 20 Jul 2011 22:11:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Scaffold, new WP theme</title>
		<link>http://fahlstad.se/2011/07/scaffold-new-wp-theme/</link>
		<comments>http://fahlstad.se/2011/07/scaffold-new-wp-theme/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 19:03:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fahlstad.se/?p=1022</guid>
		<description><![CDATA[I have decided to share this theme with the WordPress community. I wanted to have it exclusive on this site, but hey.. it&#8217;s open source. Grab it from here. I will be getting some pictures and a demo site up for the new themes and plugins shortly. Got vaccation now so hopefully I  get some time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fahlstad.se/?attachment_id=1053" rel="attachment wp-att-1053"><img src="http://fahlstad.se/wp-content/uploads/2011/07/scaffold-150x102.png" alt="" title="scaffold" width="150" height="102" class="alignleft size-thumbnail wp-image-1053" /></a>I have decided to share this theme with the WordPress community. I wanted to have it exclusive on this site, but hey.. it&#8217;s open source.</p>
<p>Grab it from <a href="http://fahlstad.se/wordpress">here</a>.</p>
<p>I will be getting some pictures and a demo site up for the new themes and plugins shortly. Got vaccation now so hopefully I  get some time to re-upload the old themes and plugins as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2011/07/scaffold-new-wp-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded corners with jquery</title>
		<link>http://fahlstad.se/2008/10/rounded-corners-with-jquery/</link>
		<comments>http://fahlstad.se/2008/10/rounded-corners-with-jquery/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 21:37:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/?p=680</guid>
		<description><![CDATA[Everybody loves rounded corners in a web page but it&#8217;s a hassle to accomplish, multiple divs and different images aligned in the corret way. I&#8217; gonna show you how to do it with just a couple lines of javascript using the jquery framework. First go grab a copy of the jquery framework and the jquery.borders.js [...]]]></description>
			<content:encoded><![CDATA[<p>Everybody loves rounded corners in a web page but it&#8217;s a hassle to accomplish, multiple divs and different images aligned in the corret way. I&#8217; gonna show you how to do it with just a couple lines of javascript using the <a href="http://www.jquery.com">jquery </a>framework.<span id="more-680"></span></p>
<p>First go grab a copy of the jquery framework and the <a href="http://www.methvin.com/jquery/jquery.corner.js">jquery.borders.js</a> plugin.</p>
<p>Let&#8217;s go and create an index.html file and add some basic markup and text to it.  A div containing some text and a single paragraph. The &#8220;rounded&#8221; div is the one we are going to apply the rounded corners to.</p>
<pre lang="HTML4STRICT" line="1">
<body>
<div id="rounded" style="background:#ccc;">

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

</div>

</body>
</pre>
<p>The style is just to make the div visible.<br />
It should look like this:</p>
<div id="rounded" style="background:#ccc;">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<p>Next add the javascript files to the header between the head tags. Make sure the src is set to the path of the js files.</p>
<pre lang="HTML4STRICT" line="1">
<head>
	<script type="text/javascript" src="jquery.js "></script>
	<script type="text/javascript" src="jquery.corner.js "></script>
</head>
</pre>
<p>Now let&#8217;s add the javascript code that actually make the corners rounded. Just below the javascript src files in the header we add:</p>
<pre lang="HTML4STRICT" line="1">
<script type="text/javascript">
	$(function(){
		$("#rounded").corner();
	});
</script>
</pre>
<p>Now it should look like this:</p>
<p><img class="noborder" src="http://www.fahlstad.se/wp-content/uploads/picture-31.png" /></p>
<p>Complete code listing.</p>
<pre lang="HTML4STRICT" line="1">
// Doctype etc
<html>
<head>
	<script type="text/javascript" src="jquery.js "></script>
	<script type="text/javascript" src="jquery.corner.js "></script>
<script type="text/javascript">
	$(function(){
		$("#rounded").corner();
	});
</script>
</head>
<body>
<div id="rounded" style="background:#ccc;">

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

</div>

</body>
</html>
</pre>
<p>Yupp, thats all. Easy isn&#8217;t it? You can specify the corner style and radius in the corner call. For example:</p>
<pre lang="HTML4STRICT" line="1">
$("#rounded").corner("10px"); // 10px radius
$("#rounded").corner("tl tr 10px"); // Rounds top left and top right 10px
</pre>
<p>There&#8217;s loads more of styles, take a look at the <a href="http://www.methvin.com/jquery/jq-corner-demo.html">demo</a> page.</p>
<p>Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2008/10/rounded-corners-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fVariant WordPress theme released</title>
		<link>http://fahlstad.se/2006/10/fvariant-wordpress-theme-released/</link>
		<comments>http://fahlstad.se/2006/10/fvariant-wordpress-theme-released/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 10:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/13/fvariant-wordpress-theme-released/</guid>
		<description><![CDATA[Lately I&#8217;ve gotten some indications that there are some interest in the fVariant WordPress theme found on the demo site. The theme was origally intended for use on this site and was highly specialized so a public release was not possible without modifications. Now I have done those modifications and can proudly announce that the [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve gotten some indications that there are some interest in the fVariant <a href="http://www.wordpress.org">WordPress</a> theme found on the <a href="/demo">demo</a> site. The theme was origally intended for use on this site and was highly specialized so a public release was not possible without modifications. Now I have done those modifications and can proudly announce that the theme is now available for <a href="/themes">download</a>.<br />
<img id="image414" src="http://www.fahlstad.se/wp-content/pics/2006/10/fvariant.jpg" alt="fvariant.jpg" class="imgleft" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/10/fvariant-wordpress-theme-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fGlare theme on the way</title>
		<link>http://fahlstad.se/2006/09/fglare-theme-on-the-way/</link>
		<comments>http://fahlstad.se/2006/09/fglare-theme-on-the-way/#comments</comments>
		<pubDate>Sat, 16 Sep 2006 10:17:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/09/16/282/</guid>
		<description><![CDATA[I haven&#8217;t release a new WordPress theme for some time now but finally I found some extra time for making one. This one&#8217;s called fGlare Features Livesearch Gravatars, requires plugin. Features can be changed without prior notice.]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t release a new WordPress theme for some time now but finally I found some extra time for making one. This one&#8217;s called fGlare<br />
<span id="more-282"></span></p>
<h4>Features</h4>
<ul>
<li>Livesearch</li>
<li>Gravatars, requires plugin.</li>
</ul>
<p>Features can be changed without prior notice.</p>
<p><img id="image281" src="http://www.fahlstad.se/wp-content/pics/2006/09/Picture 1.png" alt="Picture 1.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/09/fglare-theme-on-the-way/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>f3Green IE bug fixed (again)</title>
		<link>http://fahlstad.se/2006/07/f3green-ie-bug-fixed-again/</link>
		<comments>http://fahlstad.se/2006/07/f3green-ie-bug-fixed-again/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 12:51:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/07/25/f3green-ie-bug-fixed-again/</guid>
		<description><![CDATA[At last I found the bug that made f3Green render like a mess in IE. I have tested the theme in IE, Safari, Camino and Firefox and it&#8217;s working like a charm. Thanks to all of you who had patience with me and this pesky little bug. The new theme can be downloaded here. If [...]]]></description>
			<content:encoded><![CDATA[<p>At last I found the bug that made f3Green render like a mess in IE. I have tested the theme in IE, Safari, Camino and Firefox and it&#8217;s working like a charm. Thanks to all of you who had patience with me and this pesky little bug.<br />
<img id="image245" src="http://www.fahlstad.se/wp-content/pics/2006/07/Picture 1.png" alt="Picture 1.png" /></p>
<p>The new theme can be downloaded <a href="/themes">here</a>. If you are using images wider then the center area the sidebars will not fit the layout, so use images wisley.</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://www.technorati.com/tag/url" rel="tag">url</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/07/f3green-ie-bug-fixed-again/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress theme fLight released</title>
		<link>http://fahlstad.se/2006/07/wordpress-theme-flight-released/</link>
		<comments>http://fahlstad.se/2006/07/wordpress-theme-flight-released/#comments</comments>
		<pubDate>Tue, 11 Jul 2006 07:03:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/07/11/wordpress-theme-flight-released/</guid>
		<description><![CDATA[Finally I managed to get some time over to finish this theme, download link can be found at my themes page. Some tweaking of this theme is probably necessary, but I leave that to you.]]></description>
			<content:encoded><![CDATA[<p>Finally I managed to get some time over to finish this theme, download link can be found at my <a href="/themes">themes</a> page.</p>
<p><img id="image233" alt="Picture 2.png" src="http://www.fahlstad.se/wp-content/pics/2006/07/Picture%202.thumbnail.png" /><br />
<span id="more-234"></span>Some tweaking of this theme is probably <span class="p">necessary</span>, but I leave that to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/07/wordpress-theme-flight-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Theme release delayed</title>
		<link>http://fahlstad.se/2006/07/theme-release-delayed/</link>
		<comments>http://fahlstad.se/2006/07/theme-release-delayed/#comments</comments>
		<pubDate>Thu, 06 Jul 2006 08:56:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/07/06/theme-release-delayed/</guid>
		<description><![CDATA[A couple a weeks a go I announced a new theme to be released. I have had an extensive amount of work lately and the development of the theme have gotten second priority. I&#8217;m hoping to be able to do some work soon and I will release the theme as soon as possible. I also [...]]]></description>
			<content:encoded><![CDATA[<p>A couple a weeks a go I <a href="/2006/06/05/currently-working-on-a-new-theme-2/">announced</a> a new theme to be released. I have had an extensive amount of work lately and the development of the theme have gotten second priority. I&#8217;m hoping to be able to do some work soon and I will release the theme as soon as possible.</p>
<p>I also had an request to release the previous theme of this web site, I will release it as soon as my work load decreses.<br />
<span id="more-227"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/07/theme-release-delayed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>f3Green IE bug fixed</title>
		<link>http://fahlstad.se/2006/06/f3green-ie-bug-fixed/</link>
		<comments>http://fahlstad.se/2006/06/f3green-ie-bug-fixed/#comments</comments>
		<pubDate>Wed, 07 Jun 2006 09:13:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/06/07/f3green-ie-bug-fixed/</guid>
		<description><![CDATA[Finally I found the bug that made IE display f3Green single wired. The improved theme can be downloaded here.]]></description>
			<content:encoded><![CDATA[<p>Finally I found the bug that made IE display f3Green single wired. The improved theme can be downloaded <a href="/themes">here</a>.</p>
<p><img id="image183" src="http://www.fahlstad.se/wp-content/pics/2006/06/Untitled-1.gif" alt="Untitled-1.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/06/f3green-ie-bug-fixed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Currently working on a new theme</title>
		<link>http://fahlstad.se/2006/06/currently-working-on-a-new-theme-2/</link>
		<comments>http://fahlstad.se/2006/06/currently-working-on-a-new-theme-2/#comments</comments>
		<pubDate>Mon, 05 Jun 2006 11:50:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/06/05/currently-working-on-a-new-theme-2/</guid>
		<description><![CDATA[Here&#8217;s a preview of a non-finished copy. Any changes will be announced here.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a preview of a non-finished copy. Any changes will be announced here.</p>
<p><img id="image181" src="http://www.fahlstad.se/wp-content/pics/2006/06/Picture 2.png" alt="Picture 2.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/06/currently-working-on-a-new-theme-2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>fUnique WP-theme released</title>
		<link>http://fahlstad.se/2006/05/funique-wp-theme-released/</link>
		<comments>http://fahlstad.se/2006/05/funique-wp-theme-released/#comments</comments>
		<pubDate>Mon, 29 May 2006 17:40:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahlstad.se/2006/05/29/funique-wp-theme-released/</guid>
		<description><![CDATA[A three column theme based on the one used on this page previously. Downlad at the themes page.]]></description>
			<content:encoded><![CDATA[<p>A three column theme based on the one used on this page previously. Downlad at the <a href="/themes">themes</a> page.<br />
<img id="image170" src="http://www.fahlstad.se/wp-content/pics/2006/05/summer-preview-copy.png" alt="summer-preview-copy.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fahlstad.se/2006/05/funique-wp-theme-released/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

