<?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>Christina Fowler</title>
	<atom:link href="http://christinafowler.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://christinafowler.com</link>
	<description>Portfolio &#38; more</description>
	<lastBuildDate>Fri, 09 Apr 2010 09:09:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The confusion between Wordpress h1s and h2s</title>
		<link>http://christinafowler.com/wordpress/wordpress-h1s-and-h2s/</link>
		<comments>http://christinafowler.com/wordpress/wordpress-h1s-and-h2s/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 14:20:49 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://christinafowler.com/?p=385</guid>
		<description><![CDATA[One thing that confuses me about many Wordpress powered sites is the fact that on a single post the title is a link to itself and is a h2. Why?! I know that this problem isn&#8217;t restricted to just Wordpress sites but I find they tend to be the worst offenders. 
I expect the answer [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that confuses me about many Wordpress powered sites is the fact that on a single post the title is a link to itself and is a <code>h2</code>. Why?! I know that this problem isn&#8217;t restricted to just Wordpress sites but I find they tend to be the worst offenders. </p>
<p>I expect the answer is that whatever theme you have was developed using Wordpress&#8217;s default theme as a framework. </p>
<p>What makes more sense semantically is that on the homepage the website name is the <code>h1</code>, but on all other pages the page title should be the <code>h1</code>.</p>
<p>Here are a few snippets that can be used on every Wordpress powered site, from blogs to portfolios, e-commerce to magazine &#8211; there are just some things that defy genre.<span id="more-385"></span></p>
<h2>Logo is a link but not on the homepage</h2>
<p>It is a popular convention that a website&#8217;s main logo should link back to the homepage and most sites have that down. However, as <a href="http://www.webcredible.co.uk/user-friendly-resources/web-usability/big-websites-usability.shtml">Webcredible</a> rightly point out, a page should not link back to its self &#8211; that just doesn&#8217;t make sense and can cause usability problems.</p>
<p>So, here is the snippet that will make sure that on the homepage the logo is the <code>h1</code> and on all other pages it is a link that takes the user back to the home page.</p>
<pre><code>
&lt;?php if (is_front_page()) { ?>
	&lt;h1><span>&lt;?php bloginfo('name'); ?>&lt;/span>&lt;/h1>
&lt;?php } else { ?>
	&lt;a class="faux-h1" href="&lt;?php bloginfo('url'); ?>">
		&lt;span>&lt;?php bloginfo('name'); ?>&lt;/span>
	&lt;/a>
&lt;?php } ?>
</code></pre>
<p>Note that I have used <code>is_front_page()</code> as opposed to <code>is_home()</code> &#8211; this is to ensure that any Wordpress powered sites that use a static page as their front page still benefit.</p>
<p>To go with that here is the CSS &#8211; note that I have styled the <code>h1</code> and <code>a.faux-h1</code> the same. The user will see no difference but semantically the code makes far more sense.</p>
<pre><code>
#header h1, #header .faux-h1 {
background:url('images/logo.gif') no-repeat;
width:200px;
height:50px;
display:block; /* For the A tag */
}
</pre>
<p></code></p>
<h2>Single post &amp; Page title is not a link</h2>
<p>Continuing on the idea that on the homepage the site title is the <code>h1</code> but on all other pages the page title is the <code>h1</code>, in all of your templates (404.php, archive.php, archives.php, fullwidth.php, links.php, page.php, search.php, single.php, sitemap.php, etc.) replace your title with this snippet:</p>
<pre><code>
&lt;h1>&lt;?php the_title(); ?>&lt;/h1>
</code></pre>
<p>You might not be keen on the fact that your page title was perhaps a <code>h2</code> on the homepage and is now a <code>h1</code> on the single post page which could affect the size or overall styling so try attaching a class of <code>.post-title</code> - this will give you the opportunity to style the post titles to look the same in the CSS no matter what tag they are using and still remain semantic.</p>
<p>Adopting this method with all your templates should now mean that you have a more standard structure. For example, on a search results page the <code>h1</code> is "Search results" and the individual post titles are <code>h2</code>s, just like on your archives and the homepage.</p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/wordpress/wordpress-h1s-and-h2s/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free color wheel download</title>
		<link>http://christinafowler.com/blog/free-color-wheel-download/</link>
		<comments>http://christinafowler.com/blog/free-color-wheel-download/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:08:04 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[.psd]]></category>
		<category><![CDATA[color theory]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://christinafowler.com/?p=355</guid>
		<description><![CDATA[I like to have a color / colour wheel image on my desktop that I can can open whenever I am designing. I tend to use Creative Curio&#8217;s wheel but I also like the wheel in Veerle&#8217;s Color Angels presentation.
However, sometimes I want a wheel that I can edit by changing the hues or blocking [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-367" title="color-wheel-thumb" src="http://christinafowler.com/wp-content/uploads/2010/03/color-wheel-thumb.jpg" alt="" width="200" height="150" />I like to have a color / colour wheel image on my desktop that I can can open whenever I am designing. I tend to use <a href="http://creativecurio.com/2008/05/the-color-wheel-and-color-theory/">Creative Curio&#8217;s wheel</a> but I also like the wheel in <a href="http://veerle.duoh.com/blog/comments/sxswi_2009_color_angels_session/">Veerle&#8217;s Color Angels</a> presentation.</p>
<p>However, sometimes I want a wheel that I can edit by changing the hues or blocking out some colors so I can use the wheel in presentations to clients or colleagues.</p>
<p>After much googling I couldn&#8217;t find any PSD or AI color wheels so I made them myself and here they are for you to download.<span id="more-355"></span></p>
<p><a href="http://christinafowler.com/wp-content/uploads/2010/03/color-wheel.zip">Download color-wheel.zip </a></p>
<p>In the PSD each segment of the wheel is a shape layer so you can change the hues with ease. I have included labels for each of the hue, tint, tone and shade areas. There are also layer styles which you can easily switch on for blocking out colors.</p>
<p>The AI has each segment as a separate shape and the labels are also included for each of the hue, tint, tone and shade areas.</p>
<p><img class="alignnone size-full wp-image-369" title="color-wheel-labeled" src="http://christinafowler.com/wp-content/uploads/2010/03/color-wheel-labeled1.jpg" alt="" width="560" height="420" /></p>
<p><img class="alignnone size-full wp-image-370" title="color-wheel-shaded" src="http://christinafowler.com/wp-content/uploads/2010/03/color-wheel-shaded1.jpg" alt="" width="560" height="420" /></p>
<p>You might also be interested in:</p>
<ul>
<li><a href="http://creativecurio.com/2008/05/the-color-wheel-and-color-theory/">Color wheel and colour theory</a>;</li>
<li><a href="http://creativecurio.com/2008/02/finding-color-inspiration-around-the-web/">Color inspiration around the web</a>;</li>
<li><a href="http://veerle.duoh.com/blog/comments/sxswi_2009_color_angels_session/">Color Angels</a>;</li>
<li><a href="http://colorschemedesigner.com/">Color scheme designer</a>;</li>
<li><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/">Color theory for designers</a>; and</li>
<li><a href="http://www.paper-leaf.com/blog/2010/01/color-theory-quick-reference-poster/">Color theory cheat sheet</a>.</li>
</ul>
<h2>Updates</h2>
<p><strong>18 Mar 10</strong> &#8211; Download now includes AI version of the colour wheel as well as the the PSD version.</p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/blog/free-color-wheel-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accomplice</title>
		<link>http://christinafowler.com/portfolio/accomplice-your-first-resource/</link>
		<comments>http://christinafowler.com/portfolio/accomplice-your-first-resource/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 09:48:30 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=62</guid>
		<description><![CDATA[
Accomplice helps you shape your organisation and workforce to deliver in the most efficient way. Primarily working across the East Midlands with the NHS and its partners, Accomplice offer cost-effective organisational development solutions.
This is the second refresh I have completed for Accomplice. The first refresh involved rebuilding the site for Wordpress based on the current [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.accomplice.uk.com"><img class="alignright size-full wp-image-340" title="accomplice" src="http://christinafowler.com/wp-content/uploads/2010/03/accomplice.jpg" alt="" width="300" height="225" /></a></p>
<p>Accomplice helps you shape your organisation and workforce to deliver in the most efficient way. Primarily working across the East Midlands with the NHS and its partners, Accomplice offer cost-effective organisational development solutions.</p>
<p>This is the second refresh I have completed for Accomplice. The first refresh involved rebuilding the site for Wordpress based on the current Dreamweaver design. This time we completely reassessed the navigational structure, content and resources to make sure users could easily access all of the great content that had been previously hidden away.</p>
<p>There was a concern that the previous content did not fully show the capabilities of Accomplice. My tasks involved copy editing page content, articles and resources then presenting this newly exposed content in the best possible way to demonstrate Accomplice&#8217;s products, services and roles.</p>
<p>New features include a refreshed grid-based design, task based navigation, and increased use of posts for new and republished articles and events, as well as company news.</p>
<p>Future plans for the site include case studies to enrich the portfolio and more details on the roles that Accomplice can play in your NHS organisation.</p>
<p><strong>URL:</strong> <a title="Accomplice" href="http://www.accomplice.uk.com/" target="_blank">http://www.accomplice.uk.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/accomplice-your-first-resource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glitter</title>
		<link>http://christinafowler.com/wordpress-themes/glitter/</link>
		<comments>http://christinafowler.com/wordpress-themes/glitter/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 00:41:18 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=306</guid>
		<description><![CDATA[It&#8217;s been quite a while since I have released a wordpress theme but I   have been inspired by a lot of things recently so here&#8217;s a new one!
This sparkly theme has features including post images, threaded comments and drop down category menus. It has been tested on Wordpress 2.9 in Firefox, Safari, Opera, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since I have released a wordpress theme but I   have been inspired by a lot of things recently so here&#8217;s a new one!</p>
<p>This sparkly theme has features including post images, threaded comments and drop down category menus. It has been tested on Wordpress 2.9 in Firefox, Safari, Opera, Chrome and IE6+.</p>
<p>The layout is based on the <a href="http://960.gs/">960.gs</a> vertical grid and the <a href="http://baselinecss.com/">baseline.css</a> horizontal grid. There are some neat CSS3 enhancements including RGBA  transparency, text shadow and rounded corners.</p>
<p>Glitter is simple enough to be used for any type of blog, but the cute and girly style makes it ideal for the personal blog of a mommy, craft enthusiast or even a teen blogger.</p>
<p><a href="http://www.christinafowler.com/demo/">View the demo</a> | <a href="http://christinafowler.com/wp-content/uploads/2010/02/glitter.zip">Download the theme</a></p>
<p style="text-align: center;"><a href="http://www.christinafowler.com/demo/"><img class="alignnone size-full wp-image-349" title="glitter" src="http://christinafowler.com/wp-content/uploads/2010/03/glitter.jpg" alt="" width="500" height="726" /></a></p>
<p style="text-align: center;"><a href="http://christinafowler.com/wp-content/uploads/2010/02/grid1.gif"><img class="alignnone size-full wp-image-326" title="grid" src="http://christinafowler.com/wp-content/uploads/2010/02/grid1.gif" alt="" width="500" height="150" /></a></p>
<p style="text-align: center;"><a href="http://christinafowler.com/wp-content/uploads/2010/02/post-image1.gif"><img class="alignnone size-full wp-image-327" title="post-image" src="http://christinafowler.com/wp-content/uploads/2010/02/post-image1.gif" alt="" width="500" height="150" /></a></p>
<p style="text-align: center;"><a href="http://christinafowler.com/wp-content/uploads/2010/02/css31.gif"><img class="alignnone size-full wp-image-328" title="css3" src="http://christinafowler.com/wp-content/uploads/2010/02/css31.gif" alt="" width="499" height="151" /></a></p>
<h2>Key features</h2>
<ul>
<li>Grid based design;</li>
<li>RGBa transparency;</li>
<li>Text shadow;</li>
<li>Rounded corners;</li>
<li>Large glitter background image;</li>
<li>Drop down category menus;</li>
<li>Post images (small on post listings, large on single post page);</li>
<li>Smooth scrolling on &#8220;jump to top&#8221; and &#8220;reply&#8221; links;</li>
<li>Threaded comments;</li>
<li>Full width, sitemap, archive and links page templates;</li>
<li>Supports Firefox, Safari, Chrome, Opera and IE7+; and</li>
<li>Supports IE6 without drop down menus.</li>
</ul>
<h2>Notes</h2>
<ul>
<li>Post and page content area is 600px wide; and</li>
<li>Sidebar content area is 280px wide.</li>
</ul>
<h2>Upcoming features</h2>
<p>In the next release (once Wordpress 3.0 is released) I hope to include the following features:</p>
<ul>
<li>Custom menu navigation;</li>
<li>Excerpt styling for posts and pages;</li>
<li>Theme options including different backgrounds; and</li>
<li>PSD file download.</li>
</ul>
<p>If you have any suggestions for the next feature release of Glitter please leave a comment below.</p>
<p>I  have also decided to take down my old themes and rebuild some of  theme   with the latest features. They are all quite old now and just  aren&#8217;t up   to scratch for anyone looking for a new wordpress theme but hopefully they&#8217;ll be back up soon!</p>
<p>Updates:</p>
<ul>
<li><strong>17 MAR 10</strong> &#8211; Version 1.1 released including hanging ordered lists and improved dropdown menu for 3rd and 4th level categories.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/wordpress-themes/glitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nottingham Roller Girls</title>
		<link>http://christinafowler.com/portfolio/nottingham-roller-girls/</link>
		<comments>http://christinafowler.com/portfolio/nottingham-roller-girls/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 02:16:20 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=265</guid>
		<description><![CDATA[Nottingham Roller Girls league started in October 2009 joining many other teams that are sprouting up around the country in a fast and frantic sport played by two teams on quad roller skates racing around a track trying to score the most points.
The team required a website that provided a public facing source of information [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nottinghamrollergirls.com"><img class="alignright size-full wp-image-268" title="nrg" src="http://christinafowler.com/wp-content/uploads/2010/02/nrg1.jpg" alt="" width="300" height="225" /></a>Nottingham Roller Girls league started in October 2009 joining many other teams that are sprouting up around the country in a fast and frantic sport played by two teams on quad roller skates racing around a track trying to score the most points.</p>
<p>The team required a website that provided a public facing source of information on the team, news, events and transactions such as donations and membership payments. The site also needed to be flexible to accommodate future features such as a discussion forum and merchandise shop.</p>
<p>I designed and built a wordpress theme around the existing team mascot, Nyx, designed by pin up illustrator <a href="http://www.charlottethomson.co.uk/">Charlotte Thomson</a>. Features include flexible home page widgets for features, donate button and individual <a href="http://nottinghamrollergirls.com/team">member pages</a>.</p>
<p>Discussion forum and online shop soon to be launched.</p>
<p><strong>URL:</strong> <a href="http://nottinghamrollergirls.com/">http://nottinghamrollergirls.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/nottingham-roller-girls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beacon Street Online</title>
		<link>http://christinafowler.com/portfolio/beacon-street-online/</link>
		<comments>http://christinafowler.com/portfolio/beacon-street-online/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 23:56:49 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=179</guid>
		<description><![CDATA[Beacon Street Online run by Jenny Fowler (no relation!) is a fansite representing Orange County&#8217;s finest band, No Doubt, since the late nineties.
The latest project with BSO included a custom wordpress theme with jQuery features including carousel and smooth scroll.
This wordpress theme was based on a header design by Geo C and developed by myself [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.doghousegallery.net/blog/"><img class="alignright size-full wp-image-261" title="bso-rasta" src="http://christinafowler.com/wp-content/uploads/2010/02/bso-rasta1.jpg" alt="" width="300" height="225" /></a>Beacon Street Online run by Jenny Fowler (no relation!) is a fansite representing Orange County&#8217;s finest band, No Doubt, since the late nineties.</p>
<p>The latest project with BSO included a custom wordpress theme with jQuery features including carousel and smooth scroll.</p>
<p>This wordpress theme was based on a header design by <a href="http://geocdesign.wordpress.com/">Geo C</a> and developed by myself into a wordpress theme. Key features of the site are the <a href="http://www.doghousegallery.net/blog/events/">events calendar</a> and <a href="http://www.doghousegallery.net/blog/lyrics-archive">lyrics archive</a>.</p>
<p>The design theme was then extended across the BSO network to reskin the <a href="http://www.doghousegallery.net/gallery/">gallery</a> and <a href="http://www.doghousegallery.net/audioexplorer/">audio explorer</a>.</p>
<p><strong>URL:</strong> <a href="title:%20Wilson%20Goodchild%20%20URL:%20http://wilsongoodchild.co.uk%20%20Tasks:%20Site%20Design,%20Installation%20of%20Content%20Management%20System,%20Training%20for%20Site%20Updates,%20Custom%20wordpress%20theme%20built%20using%20CSS.%20%20Wilson%20Goodchild%20aims%20to%20support%20organisations%20to%20make%20a%20difference.%20They%20provide%20impartial%20management%20advice%20and%20support%20to%20our%20clients.%20Wilson%20Goodchild%20was%20formed%20in%202006%20by%20Janette%20Goodchild%20and%20are%20based%20in%20the%20East%20Midlands.">http://doghousegallery.net/blog</a><strong></strong></p>
<p><strong>Previous work for BSO:</strong></p>
<p><strong><img class="size-thumbnail wp-image-218 alignnone" title="bso-jackie-arce" src="http://www.christinafowler.com/wp-content/uploads/2009/04/bso-jackie-arce-160x110.png" alt="bso-jackie-arce" width="160" height="110" /> <img class="alignnone size-thumbnail wp-image-180" title="bso" src="http://www.christinafowler.com/wp-content/uploads/2009/04/bso-160x110.png" alt="" width="160" height="110" /></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/beacon-street-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horizontal stripes</title>
		<link>http://christinafowler.com/tutorial/horizontal-stripes/</link>
		<comments>http://christinafowler.com/tutorial/horizontal-stripes/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 21:50:18 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[stripes]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=236</guid>
		<description><![CDATA[In this tutorial I will show you how to create never ending horizontal stripes in your web design using CSS.
View the demo &#124; Download the demo
I first got the idea for horizontal stripes from Elliot Jay Stocks&#8216; book, Sexy Web Design, where he produces a web design that has horizontal stripes running off the browser [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.christinafowler.com/demo/stripes/"><img class="alignright size-thumbnail wp-image-252" title="Picture 3" src="http://www.christinafowler.com/wp-content/uploads/2010/02/Picture-3-160x110.png" alt="" width="160" height="110" /></a>In this tutorial I will show you how to create never ending horizontal stripes in your web design using CSS.</p>
<p><a href="http://www.christinafowler.com/demo/stripes/">View the demo</a> | <a href="http://www.nodoubtscrapbook.com/stripes.zip">Download the demo</a></p>
<p>I first got the idea for horizontal stripes from <a href="http://elliotjaystocks.com/">Elliot Jay Stocks</a>&#8216; book, <a href="https://sitepoint.com/bookstore/neworderform.php?SSLSESSID=76cebc756ba0e6b9806cddc0fe048bac">Sexy Web Design</a>, where he produces a web design that has horizontal stripes running off the browser page. I then implemented it myself in the design of <a href="http://www.oldschoolnodoubt.com/">oldschoolnodoubt.com</a>.</p>
<p>More recently, <a href="http://neutroncreations.com/">Neutron Creations</a> launched a new design, again by Elliot Jay Stocks with CSS implemented by <a href="http://benbodien.info/">Ben Bodien</a> which features the effect both horizontally and vertically.<span id="more-236"></span></p>
<h2>Right stripes</h2>
<p>Here&#8217;s the html for a stripe that starts in the middle and heads off to the right side of the screen, let&#8217;s keep it simple:</p>
<pre><code>&lt;div id="container"&gt;
&lt;p class="horizontal right"&gt;Horizontal stripe&lt;/p&gt;
&lt;/div&gt;</code></pre>
<p>Here&#8217;s the css:</p>
<pre><code>.horizontal {
width:100%;
position:absolute;
margin:20px 0;
padding:20px;
}

.right {
left:50%;
margin-left:-100px;
text-align:left;
}</code></pre>
<p>Ok, let&#8217;s break down the css. Firstly <code>width:100%;</code> this will make sure that your stripe is always the width of the user&#8217;s browser so, no matter how humongous their screen is your stripes will always go off their page.</p>
<p>In order to make sure we can start the stripe from wherever we like we use <code>position:absolute;</code> and use <code>margin:20px 0;</code> to place it vertically. Finally, we use <code>padding:20px;</code> because, well, everything needs a bit of padding.</p>
<p>Now we position the stripe horizontally. For a stripe that heads off to the right we set <code>left:50%;</code> which will give you a stripe that starts in the exact center of the page and continues on forever.</p>
<p>But, I want my stripe to start off center, in fact 100px towards the left of where it is now so I set <code>margin-left:-100px;</code>. If I want it to be off center and 100px towards the right I will use <code>margin-left:100px;</code>.</p>
<p>I then align my text with <code>text-align:left;</code> because I want the text to be next to the end of the stripe.</p>
<p>At this point you probably have a long stripe that heads off in the direction you want but you also have a horizontal scrollbar and that&#8217;s rarely a good thing. So now we need to do some work on the container <code>div</code> to get rid of that scroll bar.</p>
<p>Here is the css to go with that:</p>
<pre><code>#container {
width:100%;
overflow:hidden;
position:relative;
height:200px;
}</code></pre>
<p>We want the stripes to head off the browser page so the containing <code>div</code> must be the full width of the browser with <code>width:100%;</code> and in order to get rid of the scroll bar we use <code>overflow:hidden;</code> hiding the excess of the stripe.</p>
<p>You will now have a blank screen beacuse the stripes have a <code>position:absolute;</code> and as there is no content in the containing <code>div</code> we need to set a <code>height:200px;</code> and <code>position:relative;</code> to make sure that the stripes are visible.</p>
<h2>Left stripes</h2>
<p>To acheive a stripe that starts on the left and stops in the middle I add replace the right class with a class of left on the <code>p</code>:</p>
<pre><code>&lt;div id="container"&gt;
&lt;p class="horizontal left"&gt;Horizontal stripe&lt;/p&gt;
&lt;/div&gt;</code></pre>
<p>I then reverse all the right stripe styling:</p>
<pre><code>.left {
right:50%;
margin-right:-100px;
text-align:right;
}</code></pre>
<p>Please note: If you are using an inline element (<code>span</code>, <code>strong</code>, <code>em</code>, <code>a</code>), instead of the <code>p</code> to create your stripes you will also need a <code>display:block;</code> in your css.</p>
<p><strong>19 FEB 10 &#8211; EDIT: Added a demo suitable for download.</strong></p>
<p><strong>22 FEB 10 &#8211; EDIT: Credited <a href="http://benbodien.info/">Ben Bodien</a> for the CSS implementation of <a href="http://neutroncreations.com/">Neutron Creations</a>.<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/tutorial/horizontal-stripes/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Pink Party Nottingham</title>
		<link>http://christinafowler.com/portfolio/pink-party-nottingham/</link>
		<comments>http://christinafowler.com/portfolio/pink-party-nottingham/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:18:57 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=232</guid>
		<description><![CDATA[URL: http://www.pinkpartynottingham.co.uk
Tasks: Design and custom Wordpress theme built using CSS.
Pink Party Nottingham, a charity event took place on October 28th 2009 at Fire&#38;Ice, West Bridgford in aid of Breakthrough Breast Cancer. This year&#8217;s event raised a whopping £1,500 towards a cure for breast cancer. The website features blog posts, opportunity to purchase tickets plus twitter [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.pinkpartynottingham.co.uk"><img class="alignright size-thumbnail wp-image-233" title="pinkribbon" src="http://www.christinafowler.com/wp-content/uploads/2009/11/pinkribbon-160x110.png" alt="pinkribbon" width="160" height="110" /></a>URL:</strong> <a href="http://www.pinkpartynottingham.co.uk">http://www.pinkpartynottingham.co.uk</a></p>
<p><strong>Tasks:</strong> Design and custom Wordpress theme built using CSS.</p>
<p><!-- end header -->Pink Party Nottingham, a charity event took place on October 28th 2009 at Fire&amp;Ice, West Bridgford in aid of Breakthrough Breast Cancer. This year&#8217;s event raised a whopping £1,500 towards a cure for breast cancer. The website features blog posts, opportunity to purchase tickets plus twitter and flickr feeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/pink-party-nottingham/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wilson Goodchild Learning Haven</title>
		<link>http://christinafowler.com/portfolio/wilson-goodchild-learning-haven/</link>
		<comments>http://christinafowler.com/portfolio/wilson-goodchild-learning-haven/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:15:29 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=273</guid>
		<description><![CDATA[Wilson Goodchild provide a range of management support services to: increase customer satisfaction; improve team working and staff morale; understand the needs and expectations of customers or potential customers; plan for your future workforce; learn from experience; and adopt a culture which promotes innovation and continuous improvement.
The business required a new, closed to public, extension [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-274" title="learningWG" src="http://christinafowler.com/wp-content/uploads/2010/02/learningWG1.jpg" alt="" width="300" height="225" /><a href="http://christinafowler.com/wp-content/uploads/2010/02/learningWG1.jpg">Wilson Goodchild</a> provide a range of management support services to: increase customer satisfaction; improve team working and staff morale; understand the needs and expectations of customers or potential customers; plan for your future workforce; learn from experience; and adopt a culture which promotes innovation and continuous improvement.</p>
<p>The business required a new, closed to public, extension to their current, public facing, website especially for clients to create and update learning logs online. These logs would be used to document and help clients reflect on their progress in their development.</p>
<p>I installed Wordpress Mu and Buddypress to create the Learning Haven, a social network where users can have profiles, post status updates, create blogs, comment on peer blogs and join groups.</p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/wilson-goodchild-learning-haven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just No Doubt</title>
		<link>http://christinafowler.com/portfolio/just-no-doubt/</link>
		<comments>http://christinafowler.com/portfolio/just-no-doubt/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:09:20 +0000</pubDate>
		<dc:creator>Christina</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.christinafowler.com/?p=222</guid>
		<description><![CDATA[URL: http://www.justnodoubt.net/updates

Tasks: Custom wordpress theme built using CSS based on the owner&#8217;s design.
Just No Doubt a fansite dedicated to an amazing band &#8211; No Doubt. You will find here all the latest news, high quality pictures, downloads, media and lots more.
]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.justnodoubt.net/updates"><img class="alignright size-thumbnail wp-image-223" title="justnodoubt" src="http://www.christinafowler.com/wp-content/uploads/2009/11/justnodoubt-160x110.png" alt="justnodoubt" width="160" height="110" /></a>URL:</strong> <a href="http://www.justnodoubt.net/updates">http://www.justnodoubt.net/updates</a><strong><br />
</strong></p>
<p><strong>Tasks: </strong>Custom wordpress theme built using CSS based on the owner&#8217;s design.</p>
<p>Just No Doubt a fansite dedicated to an amazing band &#8211; No Doubt. You will find here all the latest news, high quality pictures, downloads, media and lots more.</p>
]]></content:encoded>
			<wfw:commentRss>http://christinafowler.com/portfolio/just-no-doubt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
