<?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>TYPO3-Addict &#187; Web design</title>
	<atom:link href="http://www.typo3-addict.com/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.typo3-addict.com</link>
	<description>For those addicted to TYPO3</description>
	<lastBuildDate>Wed, 06 Jul 2011 08:08:32 +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>TYPO3: A multiple line graphical header</title>
		<link>http://www.typo3-addict.com/2010/01/typo3-a-multiple-line-graphical-header/</link>
		<comments>http://www.typo3-addict.com/2010/01/typo3-a-multiple-line-graphical-header/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:01:32 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[GIFBUILDER]]></category>
		<category><![CDATA[Headers]]></category>
		<category><![CDATA[Typoscript]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.typo3-addict.com/?p=855</guid>
		<description><![CDATA[Graphical headers can be just that little extra thing your design needs. Luckily TYPO3 can manage this pretty well using the GIFBUILDER. But what if you have a long headertext? What if you need the headertext to display over more than just one line? GIFBUILDER can&#8217;t actually read your headertext so there&#8217;s no way it [...]]]></description>
			<content:encoded><![CDATA[<p>Graphical headers can be just that little extra thing your design needs. Luckily TYPO3 can manage this pretty well using the GIFBUILDER. But what if you have a long headertext? What if you need the headertext to display over more than just one line?</p>
<p>GIFBUILDER can&#8217;t actually read your headertext so there&#8217;s no way it can determine when to use multiple lines by itself (at least, not without making weird cuts in the middle of your words). Therefore, we need to tell GIFBUILDER when to break the line.</p>
<p><span id="more-855"></span>Since we only use one H1 tag per seo, this snippet modifies the second header layout.</p>
<pre># Start overriding the second header layout.
lib.stdheader.10.2 &gt;
lib.stdheader.10.2 = COA
lib.stdheader.10.2 {
  # Wrap the whole header
  wrap = &lt;div&gt;|&lt;/div&gt;
  10 = IMAGE
  10 {
     # Wrap the first line
     wrap = &lt;div&gt;|&lt;/div&gt;
     file = GIFBUILDER
     file {
        XY = [10.w] + 4, [10.h] + 8
        backColor = #FFFFFF
        10 = TEXT
        10 {
           text.field = header
           # Set the fontfile and font-properties.
           fontFile = fileadmin/fonts/customfont.ttf
           fontSize = 22
           fontColor = #000000
           offset = 0,18
           # Select the first line of our sentence.
           text.listNum = 0
           # Here we determine the break, in this case a pipe (|).
           text.listNum.splitChar = |
        }
     }
  }
  # Check if the second line is there...
  20 = COA
  20.if {
     value.field = header
     isTrue.cObject = TEXT
     isTrue.cObject.field = header
     # The second line starts after the pipe
     isTrue.cObject.listNum.splitChar = |
     # Now use the second line of our sentence
     isTrue.cObject.listNum = 1
  }
  # If the second line is there, use the same markup
  20.10 &lt; .10
  20.10 {
     file {
        10.text.listNum = 1
        10.text.listNum.splitChar = |
     }
  }
}
</pre>
<p>Just to be clear: A header with two lines would now be like:<br />
This is a very long header which will | be displayed over two lines.</p>
<p><a href="http://www.typo3-addict.com/wp-content/uploads/2010/01/header_entry.png"><img class="size-full wp-image-871 alignnone" title="header_entry" src="http://www.typo3-addict.com/wp-content/uploads/2010/01/header_entry.png" alt="" width="552" height="52" /></a></p>
<p>Result:</p>
<p><a href="http://www.typo3-addict.com/wp-content/uploads/2010/01/result.png"><img class="size-full wp-image-872 alignnone" title="result" src="http://www.typo3-addict.com/wp-content/uploads/2010/01/result.png" alt="" width="418" height="115" /></a></p>
<p>The pipe will be the place where you split the header. Ofcourse, all the font properties used in the first line are also available in the second line, so play all you like with different fonts and markup on every other line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2010/01/typo3-a-multiple-line-graphical-header/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Another book review: Neuro Web Design by Susan Weinschenk</title>
		<link>http://www.typo3-addict.com/2009/09/another-book-review-neuro-web-design-by-susan-weinschenk/</link>
		<comments>http://www.typo3-addict.com/2009/09/another-book-review-neuro-web-design-by-susan-weinschenk/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 07:34:03 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Other Webdesign Stuff]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.typo3-addict.com/?p=519</guid>
		<description><![CDATA[I&#8217;m not about to review every book I read, but this one is a really nice addition to the usability books I posted a couple of weeks ago. Neuro Web Design is a very easy to read psychology book which deals with questions like: Why do people decide to buy a product online? and Why [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.typo3-addict.com/wp-content/uploads/2009/09/bookpd.jpg"><img class="size-medium wp-image-520 alignright" title="bookpd" src="http://www.typo3-addict.com/wp-content/uploads/2009/09/bookpd-233x300.jpg" alt="bookpd" width="233" height="300" /></a>I&#8217;m not about to review every book I read, but this one is a really nice addition to the usability books I posted a couple of weeks ago.</p>
<p>Neuro Web Design is a very easy to read psychology book which deals with questions like: Why do people decide to buy a product online? and Why do they trust the information a website provides? The book describes how the human brain works and how information and design is stored in our brain. It teaches you how to get peoples attention on a website without them even knowing you&#8217;re doing it. This book is really interesting when you want to know how the unconscious brain works and how you can activate it. <span id="more-519"></span>After you read this book you know how to design a website which will attract the attention of people because you triggered that unconscious part.</p>
<p>Quote from the website of the book on which I totally agree: &#8220;You will learn the unconscious reasons for people’s actions, how emotions affect decisions, and how to apply the principles of persuasion to design web sites that encourage users to click. Neuro Web Design is scientific, yet you’ll find it accessible and easy to read&#8221;</p>
<p>I suggest you just read the book. You can finish it in half a day and you’ll be surprised by the content and how easy it is to implement these things.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/09/another-book-review-neuro-web-design-by-susan-weinschenk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Usability; 2 books reviewed</title>
		<link>http://www.typo3-addict.com/2009/08/web-usability-2-books-reviewed/</link>
		<comments>http://www.typo3-addict.com/2009/08/web-usability-2-books-reviewed/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:17:27 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Other Webdesign Stuff]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.typo3-addict.com/?p=438</guid>
		<description><![CDATA[During my holiday I&#8217;ve read 2 books concerning web usability&#8230; here&#8217;s my opinion: #1: Don&#8217;t Make Me Think by Steve Krug Wonderful book, a must read for everyone in web design. The book covers most of the usability fields and is plain and simple to read. Steve uses mostly common sense to argue usability problems [...]]]></description>
			<content:encoded><![CDATA[<p>During my holiday I&#8217;ve read 2 books concerning web usability&#8230; here&#8217;s my opinion:</p>
<h4>#1: Don&#8217;t Make Me Think by Steve Krug<a href="http://www.typo3-addict.com/wp-content/uploads/2009/08/dont-make-me-think.jpg"><img class="size-medium wp-image-442 alignright" title="dont-make-me-think" src="http://www.typo3-addict.com/wp-content/uploads/2009/08/dont-make-me-think-233x300.jpg" alt="dont-make-me-think" width="233" height="300" /></a></h4>
<p>Wonderful book, a must read for everyone in web design. The book covers most of the usability fields and is plain and simple to read. Steve uses mostly common sense to argue usability problems and gives you a fresh look on things. I suggest you read this book when you&#8217;re new on usability or you just want a book that&#8217;s easy written with some humour along the way. Steve&#8217;s tips are really useful in everyday&#8217;s work!</p>
<p>201 pages, 2005</p>
<p><strong>I rate this book 5/5</strong></p>
<p><span id="more-438"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<hr />
<p>&nbsp;</p>
<h4>#2: Web Usability Handbook by Mark Pearrow<a href="http://www.typo3-addict.com/wp-content/uploads/2009/08/usability_handbook.jpg"><img class="size-full wp-image-443 alignright" title="usability_handbook" src="http://www.typo3-addict.com/wp-content/uploads/2009/08/usability_handbook.jpg" alt="usability_handbook" width="240" height="240" /></a></h4>
<p>This book is much more detailed than Steve&#8217;s and therefore a lot harder to read. Mark goes into detail about every step in the usability process, from basic usability facts to a detailed plan on how to setup a testinglab. This book is definitely useful when you want to do some usability testing yourself, but with a decent (big) budget. The book is complete but also rough to get through.</p>
<p>352 pages, 2006</p>
<p><strong>I rate this book 4/5</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/08/web-usability-2-books-reviewed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

