<?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>Hello there, I&#039;m Aljan Scholtens &#187; Design</title>
	<atom:link href="http://www.aljanscholtens.nl/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aljanscholtens.nl</link>
	<description>Just a blog about design</description>
	<lastBuildDate>Wed, 21 Jul 2010 08:48:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Focussion, the photography community!</title>
		<link>http://www.aljanscholtens.nl/20100611/focussion-the-photography-community/</link>
		<comments>http://www.aljanscholtens.nl/20100611/focussion-the-photography-community/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 13:30:46 +0000</pubDate>
		<dc:creator>Aljan Scholtens</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.aljanscholtens.nl/?p=307</guid>
		<description><![CDATA[Focussion is your new website for all your photographic expressions, creations and needs! Share your best photos, receive feedback and improve.
Give other photographers feedback. Everytime you give feedback you&#8217;ll get credits. With credits you can post your new photos to Focussion. Focussion is the start of becoming a better photographer!
I&#8217;ve worked on this website for [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Focussion, share your photos" href="http://www.focussion.com" target="_blank">Focussion</a> is your new website for all your photographic expressions, creations and needs! Share your best photos, receive feedback and improve.</p>
<p>Give other photographers feedback. Everytime you give feedback you&#8217;ll get credits. With credits you can post your new photos to Focussion. Focussion is the start of becoming a better photographer!<span id="more-307"></span></p>
<p>I&#8217;ve worked on this website for a few months, it was a challenge to keep it real simple and easy to use. There are a lot of photography websites that have loads of features. It&#8217;s hardly about the photos anymore. So we decided to  keep it real simple and let the photos do the work. I&#8217;ve had a pencil in my hand for several weeks, but I think there is a great new photography website on the market with a focus to become better as a photographer.</p>
<p>Visit <a title="Focussion" href="http://www.focussion.com/" target="_blank">www.focussion.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aljanscholtens.nl/20100611/focussion-the-photography-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Before you start slicing</title>
		<link>http://www.aljanscholtens.nl/20091120/before-you-start-slicing/</link>
		<comments>http://www.aljanscholtens.nl/20091120/before-you-start-slicing/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:25:50 +0000</pubDate>
		<dc:creator>Aljan Scholtens</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.aljanscholtens.nl/?p=145</guid>
		<description><![CDATA[In the past few years I experienced the problem that I had to reinvent the wheel on every website. This post will help you starting to slice your website design in a consistent way and use it again on future projects.
To start, I have a basic folder for slicing a website. So every time I [...]]]></description>
			<content:encoded><![CDATA[<p>In the past few years I experienced the problem that I had to reinvent the wheel on every website. This post will help you starting to slice your website design in a consistent way and use it again on future projects.</p>
<p>To start, I have a basic folder for slicing a website. So every time I am going to slice a new design I just copy this folder, rename it and start immediately. Occasionally I adjust this folder because of new techniques and stuff. This is important, because using for example outdated JS files can be very frustrating for you or the programmer on the project. I am not teaching HTML and CSS here, I expect you to know basic <a title="W3C HTML" href="http://www.w3schools.com/html/default.asp" target="_blank">HTML</a> and <a title="Learn CSS" href="http://www.w3schools.com/css/" target="_blank">CSS</a>!</p>
<p><span id="more-145"></span></p>
<h2>Folders</h2>
<p>First, lets create some folders to organize all the assets. It is very important to put the same extensions in the same folder. For instance, put all your CSS files in a folder called &#8220;css&#8221;. This is the folder structure that I use for my projects:</p>
<ul>
<li>css, for all your CSS files;</li>
<li>img, includes all imageworks for you design like backgrounds, icons etc.;</li>
<li>inc, extra HTML files for inclusion are located in this folder;</li>
<li>js, javascript files;</li>
<li>media, this is for photos en videos in the content;</li>
<li>swf, and if you use flash files, put them in here.</li>
</ul>
<p>Be consistent. Do not capatilize the folders, this could give you problems in programming. You can adjust your folders to whatever you like, but create a structure that makes sense. Get rid of folders you don&#8217;t use. No flash means no &#8220;swf&#8221; folder.</p>
<p>The folders that I use most as a front-end developer are &#8220;css&#8221; and &#8220;img&#8221;, but I think that will be the same for you. If you are a programmer you might want to add a folder like &#8220;functions&#8221; or something similar.</p>
<h2>The basic HTML</h2>
<p>Secondly, HTML files in different projects have a lot in common. Why not make a standard template for these files as well? The first HTML file is index.html, on most servers it will be loaded as the default page. Put a <a title="Doctype" href="http://www.w3.org/QA/Tips/Doctype" target="_blank">doctype</a> at the top of this HTML document, so the webserver will handle your html on every project the same.</p>
<p>The head contains the title, meta tags and links to the stylesheets. I&#8217;m requesting two stylesheets, one for the screen and one for printing. After the stylesheets I include the javascript files. All the programmers I work with are using <a title="jQuery" href="http://www.jquery.com" target="_blank">jQuery</a> and for IE6 I&#8217;m using a very nice PNG Fix, <a title="PNG Fix for IE6" href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" target="_blank">DD_BelatedPNG.js</a>.</p>
<pre class="brush: xml;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;

&lt;head&gt;
	&lt;title&gt;Website Title&lt;/title&gt;

	&lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
	&lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
	&lt;meta name=&quot;language&quot; content=&quot;en&quot; /&gt;
	&lt;meta name=&quot;robots&quot; content=&quot;index, follow&quot; /&gt;
	&lt;meta name=&quot;author&quot; content=&quot;Studio Wolf, www.studiowolf.nl&quot; /&gt;
	&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;

	&lt;link rel=&quot;shortcut icon&quot; href=&quot;img/favicon.png&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;css/master.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;css/blueprint/print.css&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;
	&lt;!--[if lt IE 7]&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/blueprint/ie.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;&lt;![endif]--&gt;

	&lt;script type=&quot;text/javascript&quot; src=&quot;js/swfobject.js&quot;&gt;&lt;/script&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
	&lt;!--[if IE 6]&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;js/DD_belatedPNG.js&quot;&gt;&lt;/script&gt;&lt;![endif]--&gt;
&lt;/head&gt;</pre>
<p>If you can&#8217;t get your website to work good enough in Internet Explorer, create a seperate stylesheet for it. This line will only be used on versions of Internet Explorer lower than version 7:</p>
<pre class="brush: xml;">&lt;!--[if lt IE 7]&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/blueprint/ie.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;&lt;![endif]--&gt;</pre>
<p>In my standard HTML document template I already stated the most common HTML elements. There is almost always a header, navigation or a place for content. If not, simply remove them. When I close an element I comment it to know which one is closed. When you are working with big HTML files you can get confused about when closing which element.</p>
<p>Also try to prepare for HTML5, I gave my elements classes like header and nav. In HTML5 the &lt;div class=&#8221;header&#8221;&gt; will be replaced by &lt;header&gt; and &lt;div class=&#8221;nav&#8221;&gt; will be simply &lt;nav&gt;.</p>
<pre class="brush: xml;">&lt;body&gt;

  &lt;div class=&quot;container&quot;&gt;

    &lt;div class=&quot;header&quot;&gt;
      Header
    &lt;/div&gt;&lt;!-- End Header --&gt;

    &lt;div class=&quot;nav&quot;&gt;
      Navigation
    &lt;/div&gt;&lt;!-- End Nav --&gt;

    &lt;div class=&quot;section&quot;&gt;
      Section
      &lt;div class=&quot;article&quot;&gt;
        Article
      &lt;/div&gt;&lt;!-- End Article --&gt;
    &lt;/div&gt;&lt;!-- End Section --&gt;

    &lt;div class=&quot;aside&quot;&gt;
      Aside
    &lt;/div&gt;&lt;!-- End Aside --&gt;

    &lt;div class=&quot;footer&quot;&gt;
      Footer
    &lt;/div&gt;&lt;!-- End Footer --&gt;

  &lt;/div&gt;&lt;!-- End Container --&gt;

&lt;/body&gt;</pre>
<h2>Seperate your CSS</h2>
<p>I am using a CSS framework, called <a title="Blueprint CSS Framework" href="http://www.blueprintcss.org/" target="_blank">Blueprint</a>, for my grid and stylesheets. With Blueprint you work faster and it prevents you from reinventing the same code over and over again.</p>
<p>In the &lt;head&gt; I call out master.css, in this CSS file I am importing several other CSS files:</p>
<ul>
<li>reset, to set all the browsers (especially Internet Explorer) to one consistent standard;</li>
<li>layout, includes the basic interface elements and where they are positioned;</li>
<li>elements, all other elements like hyperlinks, headers, lists, tables etc;</li>
<li>colors, if you want to change colors sometimes, set your colors apart (I don&#8217;t use it often);</li>
<li>forms, for all forms and buttons.</li>
</ul>
<p>Imagine that you only use one stylesheet on a large website project. I would really lose my focus. With multiple stylesheets I know exactly where to find the tag where I am looking for. This advantage is not only for you, but as well for others who are working on the same project as you do.</p>
<h2>Helpful resources</h2>
<p>I hope this post can help you to organize your design process, you can download my folder structure and the basic files to start make a start.</p>
<ul>
<li><a title="Website structure" href="http://www.aljanscholtens.nl/uploads/website.ext.rar">Download the folder structure which I described in this post</a></li>
<li><a title="Website structure" href="http://www.aljanscholtens.nl/uploads/website.ext.rar"></a><a title="Blueprint CSS Framework" href="http://net.tutsplus.com/tutorials/html-css-techniques/a-closer-look-at-the-blueprint-css-framework/" target="_blank">A closer look at the Blueprint CSS Framework</a></li>
<li><a title="Blueprint CSS Framework" href="http://net.tutsplus.com/tutorials/html-css-techniques/a-closer-look-at-the-blueprint-css-framework/" target="_blank"></a><a title="HTML5 layout" href="http://www.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/" target="_blank">Design a HTML5 layout from scratch</a></li>
<li><a title="Tim Sluis" href="http://www.timsluis.nl" target="_blank">Tim Sluis checked this post</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.aljanscholtens.nl/20091120/before-you-start-slicing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
