<?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>Keelan Rosa Colour &#38; Design</title>
	<atom:link href="http://keelanrosacolour.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://keelanrosacolour.com</link>
	<description>helping you communicate through colour</description>
	<lastBuildDate>Tue, 05 Mar 2013 17:34:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>CSS Background Tips</title>
		<link>http://keelanrosacolour.com/css-background-tips/</link>
		<comments>http://keelanrosacolour.com/css-background-tips/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 17:17:32 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Website CSS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website backgrounds]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=696</guid>
		<description><![CDATA[If you don&#8217;t know any CSS at all, you might want to check out the CSS Cheat Sheet before reading further. Changing backgrounds is pretty basic, but a little extra understanding won&#8217;t hurt. Basic Backgrounds Recolouring a background is easy enough: put body{background-color:#ffffff;} in your stylesheet, with whatever colour you want in place of the [...]
Related posts:<ol>
<li><a href='http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/' rel='bookmark' title='Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet'>Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet</a></li>
</ol>]]></description>
				<content:encoded><![CDATA[<p class="tip">If you don&#8217;t know any CSS at all, you might want to check out the <a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/">CSS Cheat Sheet</a> before reading further. Changing backgrounds is pretty basic, but a little extra understanding won&#8217;t hurt.</p>
<h2>Basic Backgrounds</h2>
<p>Recolouring a background is easy enough: put <strong>body{background-color:#ffffff;}</strong> in your stylesheet, with whatever colour you want in place of the #ffffff.</p>
<p>Background images work in a similar way: <strong>body{background-image:url(background-image.png);}</strong>, with the name of your background image in the parentheses. By default, the image will repeat &#8211; you can change this by adding the background-repeat declaration, for example: <br /><strong>body{<br />background-image:url(background-image.png);<br />background-repeat:no-repeat;<br />}</strong></p>
<p>To move the image away from the centre, use the background-position declaration: <strong>body{background-position:left top;}</strong> will align the image to the top left corner. You can get pixel-specific if &#8216;left top&#8217; isn&#8217;t accurate enough: <strong>background-position:20px 100px;</strong> will put the background image twenty pixels from the left and a hundred pixels from the top.</p>
<p class="tip">It&#8217;s usually a good idea to specify a background colour even if you&#8217;re using a background image. The background colour will show if the image has transparent sections or doesn&#8217;t repeat over the whole screen anyway, but even if the image covers the entire screen, a background colour will come in useful if there&#8217;s ever a problem which prevents the image from loading.</p>
<p>If your code&#8217;s starting to feel a bit long, you can combine the background declarations. <strong>body{background:#ffffff url(background-image.png) no-repeat left center;}</strong> works the same as <strong>body{background-color:#ffffff;background-image:url(background-image.png);background-repeat:no-repeat;background-position:left center;}</strong>, and is significantly faster to type.</p>
<p>You don&#8217;t need to save all your cool backgrounds for the overall body, either. They can be used for everything from major columns to a few selected words, just by changing the chosen selector. <strong>blockquote{background-image:url(quote.png);}</strong> or something similar is commonly used to add a quotation mark image to blockquotes. <strong>strong{background-color:#f0e9a7;}</strong> will add a bit of colour to your <strong style="background-color:#f0e9a7;">any bold words</strong> in your text.</p>
<p class="tip">For greater precision, use IDs or classes: <strong>p.tip{background-color:#f0e9a7;}</strong> will only change the background colour if you specially mark a paragraph with &lt;p class=&#8221;tip&#8221;&gt;.</p>
<h2>More Background Tricks</h2>
<p><strong>Attachments:</strong> Usually a background image will move along with the rest of the page as users scroll through the content. Use <strong>background-attachment:fixed;</strong> to keep a background in one place.</p>
<p><strong>Lists:</strong> Bullet lists are normally marked with, well, a bullet. And a rather plain and ordinary one at that. This can easily be replaced with a bullet-sized image. Remove the old bullets with <strong>ul{list-style:none;}</strong> and add in the new ones with <strong>ul li{background:url(bullet.png) left top no-repeat;}</strong>. Unless your bullet image is <em>very</em> thin, you should also include <strong>padding-left:</strong> in your ul or li attribute, set wide enough to indent your list properly so the text doesn&#8217;t overlap the bullet image.</p>
<p><strong>Gradients:</strong> CSS-generated gradient backgrounds are supported by most modern browsers and are popular on many types of websites. The trick is getting the gradient to work on all browsers &#8211; while many browsers <em>support</em> CSS gradients, they don&#8217;t use the same code. Chrome uses a -webkit prefix, Firefox needs -moz-linear, and (current) IE uses -ms-linear. (Old versions of IE use some kind of mess which i will not even attempt to interpret.) It&#8217;s probably a bit of a cop-out to not include a proper description of creating CSS gradients, but they&#8217;re worthy of an entire article on their own. CSS Tricks has a <a href="http://css-tricks.com/css3-gradients/">solid article on CSS gradients</a>, and <a href="http://www.colorzilla.com/gradient-editor/">gradient generators</a> exist to create the code for all browsers at once.</p>
<p class="tip"><strong>Looking for some good background colours (or any other colour to spice up your website)?</strong> You don’t need to stick with boring black-and-white! I can create a great five-colour website colour scheme for you. <a href="http://krosa.me/5web">For $5, you can have a unique new website colour scheme</a>.</p>
<p>Related posts:</p><ol>
<li><a href='http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/' rel='bookmark' title='Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet'>Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/css-background-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Colour Scheme: Lime Garden</title>
		<link>http://keelanrosacolour.com/colour-scheme-lime-garden/</link>
		<comments>http://keelanrosacolour.com/colour-scheme-lime-garden/#comments</comments>
		<pubDate>Tue, 17 Jul 2012 12:08:14 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Colour Schemes]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[pink]]></category>
		<category><![CDATA[website colour schemes]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=669</guid>
		<description><![CDATA[Colours: Background: #78aa63 Header text: #2d2d29 Banner: #863540 Paragraphs: #c6d584 and #e2ddaa I&#8217;m working on getting the hang of WP child themes – some day I&#8217;d like to be able to create entire themes on my own, but even once I can do those, child themes are a faster and easier way to recolour an [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<p><a href="http://keelanrosacolour.com/wp-content/uploads/LimeGarden-Sample.png"><img src="http://keelanrosacolour.com/wp-content/uploads/LimeGarden-Sample-300x127.png" alt="" title="LimeGarden-Sample" width="300" height="127" class="alignleft size-medium wp-image-670" /></a></p>
<p><strong>Colours:</strong><br />
Background: #78aa63<br />
Header text: #2d2d29<br />
Banner: #863540<br />
Paragraphs: #c6d584 and #e2ddaa</p>
<p>I&#8217;m working on getting the hang of WP child themes – some day I&#8217;d like to be able to create entire themes on my own, but even once I can do those, child themes are a faster and easier way to recolour an entire site. So while right now this one&#8217;s just a sample, some day soon it may be available as a fast install for your WordPress blog. </p>
<div style="text-align:center;line-height:150%"> <a href="http://www.zazzle.com/lime_garden_striped_ipod_case_ipod_case_mate_cases-179319349624494852?gl=KeelanRosaColour&#038;rf=238973238776887912"> <img src="http://rlv.zcache.com/lime_garden_striped_ipod_case_ipod_case_mate_cases-ra631eb17cf604b129938be44a708789d_a46da_325.jpg" alt="Lime Garden striped iPod case Ipod Case-mate Cases" style="border:0;" /> </a> <br /> <a href="http://www.zazzle.com/lime_garden_striped_ipod_case_ipod_case_mate_cases-179319349624494852?gl=KeelanRosaColour&#038;rf=238973238776887912">Lime Garden striped iPod case</a> by <a href="http://www.zazzle.com/keelanrosacolour*">KeelanRosaColour</a></div>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/colour-scheme-lime-garden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Easy Website Requirements for Good Accessibility</title>
		<link>http://keelanrosacolour.com/5-easy-website-requirements-for-good-accessibility/</link>
		<comments>http://keelanrosacolour.com/5-easy-website-requirements-for-good-accessibility/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 17:00:15 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=574</guid>
		<description><![CDATA[Making a website look good isn&#8217;t the only important part of design. Websites should also be designed to be accessible to people with disabilities. A great-looking website which is completely inaccessible to blind people is useless to an entire group of people. There&#8217;s plenty of ways to make websites more accessible to people with disabilities, [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<p>Making a website look good isn&#8217;t the only important part of design. Websites should also be designed to be accessible to people with disabilities. A great-looking website which is completely inaccessible to blind people is useless to an entire group of people.</p>
<p>There&#8217;s plenty of ways to make websites more accessible to people with disabilities, but some of the lists on how to do so are a bit overwhelming. I recommend everyone make their sites as accessible as possible, but if you&#8217;re not sure where to start, here&#8217;s a few simple things you can put into effect immediately.</p>
<ol>
<li><strong>Links</strong> &#8211; Make links clear and descriptive. People who use screen readers will often end up tabbing from one link to another, or getting all the links in one list. If you set up all your links as &#8216;<a href="#">click here</a> to read a great article&#8217;, visually impaired users will hear a long list of &#8216;click here&#8217; with no other reference to where your links go. Much better would be &#8216;<a href="#">click here to read a great article</a>&#8216; &#8211; though if your links are styled properly, it should be obvious where the links are without something as redundant as &#8216;click here&#8217;, and you could drop it completely: &#8216;<a href="#">this is a great article</a>&#8216;.</li>
<li><strong>Image descriptions</strong> &#8211; For best accessibility, every image should have some sort of description in its &#8216;alt&#8217; tag (e.g. <code>&lt;img src="image.jpg" alt="image description" /&gt;</code>). If for some reason or another an alt tag can&#8217;t be used, making sure all the important information in the picture is included in the accompanying text is a good substitute.</li>
<li><strong>Audio transcripts</strong> &#8211; There&#8217;s a wide variety of reasons why a person might not be able to understand audio alone. It might not be possible to provide a full transcript of an hour-long seminar video, but it&#8217;s easy enough for shorter videos. This goes double if you&#8217;re working from a script or prepared statement and thus already have a written copy of everything spoken. If you can&#8217;t do a full transcript, try to at least post a useful summary.</li>
<li><strong>Autoplay</strong> &#8211; <em>For the love of all things holy, do not have audio or video play automatically.</em>
<ul>
<li>It&#8217;s bad for visually-impaired people using text-to-speech screen-readers, because it interferes with the screen reader.</li>
<li>It&#8217;s bad for hearing-impaired people for a whole pile of reasons, but i&#8217;ll stick with the one i&#8217;m most familiar with: people with certain auditory processing disorders can hear more or less like anyone else <em>if</em> there&#8217;s no conflicting sounds. If we&#8217;re trying to listen to something else and music suddenly starts up, we have trouble understanding either sound. If you can&#8217;t even get song lyrics because the words and instruments interfere with each other too much, having a conversation when a video blog has just gone on autoplay is certainly impossible.</li>
<li>It&#8217;s bad for people with certain cognitive disorders who are highly sensitive to sudden, unexpected changes; imagine nails screeching on a chalkboard every time you hear something unexpected. Or, for the really loud and dramatic stuff, your speakers spontaneously combusting. Not going to be spending much longer on a website which has such effect, are you?</li>
<li>It&#8217;s also annoying for able-bodied/neurotypical people who like to actually control what their own computer is doing.</li>
</ul>
</li>
<li><strong>Colours</strong> &#8211; Changing colours is a quick way to change a web design, but it&#8217;s important to be sure the colours don&#8217;t ruin the site for colour-blind users. Don&#8217;t make colour the sole indicator of anything important &#8211; links, by default, are underlined as well as a different colour from the rest of the text, and the underline can be important to colour-blind users. It&#8217;s also important to be sure text and its background contrast well enough for a colour-blind user to read it. You don&#8217;t need to stick with black on white for everything, but high-contrast colours are much easier to read than colours which barely contrast at all.</li>
</ol>
<h2>Extra Web Accessibility Resources</h2>
<p><a href="http://www.netmagazine.com/features/simple-introduction-web-accessibility" title="A simple introduction to web accessibility">A simple introduction to web accessibility</a> &#8211; lists the four main types of disabilities which affect web browsing and how to help users work around them<br />
<a href="http://snook.ca/technical/colour_contrast/colour.html" title="Colour Contrast Check">Colour Contrast Check</a> &#8211; allows you to check the contrast of two colours and be sure any text written with them will be legible<br />
<a href="http://wave.webaim.org/" title="Wave">Wave</a> &#8211; helps you check general accessibility</p>
<p class="tip"><strong>Looking for help in choosing a good, accessible colour scheme?</strong> You don&#8217;t need to stick with black-and-white to have easily-legible text! I can create a five-colour website colour scheme for you which will include colours which contrast perfectly. <a href="http://keelanrosacolour.com/store/" title="Hire Keelan">For $5, you can have a new website colour scheme in under 24 hours.</a></p>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/5-easy-website-requirements-for-good-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Elements to Change when Customising Your Website</title>
		<link>http://keelanrosacolour.com/6-elements-to-change-when-customising-your-website/</link>
		<comments>http://keelanrosacolour.com/6-elements-to-change-when-customising-your-website/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 17:00:15 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=121</guid>
		<description><![CDATA[When it comes down to changing colours on a website, there&#8217;s only three declarations which affect colour: &#8216;background&#8217;, &#8216;color&#8217;, and &#8216;border&#8217;. &#8216;Background&#8217; and &#8216;border&#8217; are fairly self-explanatory; &#8216;color&#8217; refers to changing the colour of text. These three attributes can be attached to almost any design element. So which elements do they really need to be [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<p>When it comes down to changing colours on a website, there&#8217;s only three declarations which affect colour: &#8216;background&#8217;, &#8216;color&#8217;, and &#8216;border&#8217;. &#8216;Background&#8217; and &#8216;border&#8217; are fairly self-explanatory; &#8216;color&#8217; refers to changing the colour of text. These three attributes can be attached to almost any design element.</p>
<p>So which elements do they really <em>need</em> to be attached to in order to best utilise a custom website colour scheme?</p>
<p class="tip">Throughout this post, i&#8217;ll be using the default <a href="http://wordpress.org/extend/themes/twentyeleven">Twenty Eleven</a> WordPress theme and the more elaborate <a href="http://krosa.me/headway">Headway</a> theme as examples. The general ideas apply to any site &#8211; WordPress or not &#8211; but for other designs, you&#8217;ll probably need to use something like <a href="http://getfirebug.com/">Firebug</a> to find out exactly which name each element has (unless your designer was very, very good about commenting their code).</p>
<h2>1. Overall basic elements</h2>
<p>For an immediately obvious change, start under the &#8216;body&#8217; attribute. Changing &#8216;background&#8217; here will <a href="http://keelanrosacolour.com/css-background-tips/">change the background of the entire website</a>, and &#8216;color&#8217; will change the text sitewide. Links are a bit different, sorted under the &#8216;a&#8217; tag, but can be changed with &#8216;color&#8217; just like regular text. Links can also have borders and backgrounds, though usually they&#8217;re just underlined and a different colour than the regular text. Going overboard with decorating them can be a bit too distracting.</p>
<p>Depending on your site design, the overall website background and the &#8216;background&#8217; your content goes over may be the same, or they may be entirely different. Many designs place all content in a large column, leaving the original background showing along the sides.</p>
<p class="code">body{background:#ffffff; color:#000000;}<br />
a{color:#0000ff;}<br />
<strong>Twenty Eleven</strong> content background: #page{background:#ffffff;}<br />
<strong>Headway</strong> content background: div.wrapper{background:#ffffff;}</p>
<h2>2. Headers</h2>
<p>In website design, &#8216;header&#8217; can mean two different things: overall site header and the header tags which alter text headers in content. The overall site header is a more important design element, but sometimes changing the header tags will help change it. Many website designs use &#8216;h1&#8242;, &#8216;h2&#8242;, or similar header tags for the site name and tagline. These tags are often used in places besides the header design, for example the title of a blog post or an attention-grabbing announcement on the front page. It&#8217;s still a good idea to check the exact tags used in your header, though, as some websites will use a special paragraph class instead of h1, or use a separate h1 class for the header than the rest of the content.</p>
<p>Another obvious header change is not in the h1 tags, but in the header background. You can easily add an image to the header with <code>background:url('image.png');</code>, but if you don&#8217;t have a header image &#8211; or if the image has a transparent background or isn&#8217;t large enough to stretch across the entire top of your site &#8211; using a colour will work just as well. You can also edit the header element to add a border all around the header &#8211; or just use &#8216;border-bottom&#8217; to add a border to the bottom edge, neatly separating your header from your main content.</p>
<p>You may also want to change the &#8216;a&#8217; attribute in your header element. It&#8217;s common for the site name in the header to be a link, leading back to the site&#8217;s home page, and changing the &#8216;a&#8217; attribute allows you to control what colour the header link is.</p>
<p class="code">
<strong>Twenty Eleven</strong><br />
Overall header: #branding{background:#ffffff; border-top:2px solid #cccccc;}<br />
Header text: #site-title a{color:#0000ff;}<br />
Tagline text: #site-description{color:#333333;}<br />
<strong>Headway</strong><br />
Overall header and tagline text: .block-type-header{background:#ffffff; color:#333333; border-bottom:2px solid #cccccc;}<br />
Header text: .block-type-header span.banner a{color:#333333;}</p>
<h2>3. Footers, sidebars, and other extra content</h2>
<p>Footers and sidebars tend to be a little less dramatic in appearance than headers. Content is the main point of a site, and headers grab a bit of attention; footers and sidebars are what comes after everything else. Some designs leave the background of the footer and sidebar the same colour as the content, leaving only natural column breaks to separate them. Text in these areas may also be slightly lighter or otherwise blend in more than in the main content area.</p>
<p>In many designs, sidebar areas are &#8216;fluid&#8217;, meaning their height changes to fit the amount of content they contain. This can cause problems for changing backgrounds, as the main site content is also fluid, and usually taller than the sidebar. Just changing &#8216;background&#8217; in a sidebar thus results in an odd block of colour which runs out before it hits the bottom of the page. It varies by design, though &#8211; <a title="Thesis WordPress theme" href="http://www.krosa.me/thesis">Thesis</a>, for example, has full-height sidebars &#8211; so experiment a bit to see what looks best.</p>
<p class="code">
<strong>Twenty Eleven</strong><br />
Footer: #supplementary, #site-generator{background:#ffffff; color:#3333333; border-top:2px solid #cccccc;}<br />
Sidebar: #secondary{color:#333333;}<br />
<strong>Headway</strong><br />
Footer: .block-type-footer{background:#ffffff; color:#333333; border-top:2px solid #cccccc;}<br />
Sidebar: .block-type-widget-area{color:#333333;}<br />
<em>Headway&#8217;s incredibly flexible when it comes to what kind of content goes where, so you might have something besides a widget area for your sidebar. If you&#8217;re having trouble getting the sidebar (and only the sidebar) to change, try adding a custom class to the block you&#8217;re using for your sidebar in the visual editor.</em></p>
<h2>4. Menu</h2>
<p>Menus consist primarily of links over a background, but they can be much more stylish with a little effort. Hover effects can change the background as well as the link, which tends to look overdone on other links but is an interesting effect on menus. The currently-active link can also be emphasised, which makes it easier to show users exactly where they are &#8211; useful if your page title isn&#8217;t clearly visible elsewhere on the page.</p>
<p class="code">
<strong>Twenty Eleven</strong><br />
#access {background:#ffffff; border-bottom:2px solid #cccccc;}<br />
#access a {color:#000000;}<br />
#access a:hover {background:#cccccc; color:#333333;}<br />
#access .current_page_item a {background:#cccccc; color:#333333;}<br />
<strong>Headway</strong><br />
.block-type-navigation {background:#ffffff; border-bottom:2px solid #cccccc;}<br />
.block-type-navigation a {color:#000000;}<br />
.block-type-navigation a:hover {background:#cccccc; color:#333333;}<br />
.block-type-navigation .current_page_item a {background:#cccccc; color:#333333;}</p>
<h2>5. Quotes</h2>
<p>Not every site makes heavy use of quotes, but for the ones which do, they&#8217;re an important design element. Quotes can be quite lengthy, so making sure the background and text contrast as well as the main background and text is important.</p>
<p>A popular addition to quote backgrounds is an image of a quotation mark, added in using <code>background:url(image.png) no-repeat top left;</code>. Quotes often have decorative borders as well, which further separates them from other text. &#8216;border-left&#8217; is especially common as a design element.</p>
<p class="code">blockquote, q {background:#cccccc; border-left:2px solid #999999; color:#000033;}</p>
<h2>6. Custom features</h2>
<p>Once you can handle changing the colours in pre-existing CSS, you&#8217;ll almost certainly want to make your site stand out even more with some little extras.</p>
<p class="tip">This paragraph, for example, uses a custom p.tip class. It&#8217;s styled similarly to a blockquote &#8211; i could easily just style &#8216;blockquote&#8217; like this and use it instead, but having a custom paragraph style is good for keeping them separate in case i ever need to separate them.</p>
<p>Custom classes and IDs can be used for almost anything you want to stand out. Sites which frequently feature guest writers will use custom paragraphs to separate the writer&#8217;s bio from their article. &#8216;h1.shop&#8217; can be styled differently from &#8216;h1.home&#8217;. Particularly important links can be made brighter and bolder than links which are just added for a bit of extra information. Instruction-type sites have special div sections for contents and lists of materials as well as customised paragraphs to better bring users&#8217; attention to warnings or tips.</p>
<p class="code">You&#8217;re on your own on this one! Check out <a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/" title="Changing a Website Colour Scheme, Part One: CSS Basics">&#8216;CSS Basics&#8217;</a> for some inspiration and tips on how to develop custom features to maximise the individuality of your design.</p>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/6-elements-to-change-when-customising-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eight Free WordPress Themes with Customisable Colour Schemes</title>
		<link>http://keelanrosacolour.com/eight-free-wordpress-themes-with-customisable-colour-schemes/</link>
		<comments>http://keelanrosacolour.com/eight-free-wordpress-themes-with-customisable-colour-schemes/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 17:00:03 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[website colour schemes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=429</guid>
		<description><![CDATA[So you know how to customise a website colour scheme, but maybe there&#8217;s still the issue of what design to start off with. Or maybe you&#8217;d like something you can change a little faster: tinkering with website CSS is all well and good, but you want your site up today, and it&#8217;s faster to switch [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<p>So you know how to <a title="Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet" href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/">customise a website colour scheme</a>, but maybe there&#8217;s still the issue of what design to start off with. Or maybe you&#8217;d like something you can change a little faster: tinkering with website CSS is all well and good, but you want your site up <em>today,</em> and it&#8217;s faster to switch up some built-in options than it is to figure out the custom CSS.</p>
<p>There&#8217;s WordPress themes with no options whatsoever, which need to be customised entirely through CSS, but fortunately there&#8217;s also a good many with built-in options. Some only give the options of a few pre-built themes, others are fully customisable. Some (like Suffusion) have both: pre-built themes which can then be further customised. A few even have a built-in CSS section, which gives you a place to customise CSS beyond the standard WordPress theme editor.</p>
<p>Here&#8217;s some samples of some easily-customisable WordPress themes, both as they look by default and how they look with their most basic customisations:</p>
<ol>
<li><a href="http://www.michaeljanzen.com/2009/06/11/basic-simplicity-is-now-in-the-wordpress-free-themes-directory/">Basic Simplicity</a> &#8211; Most, though not quite all, colours are customisable, and there&#8217;s a custom CSS section in the settings page. The header doesn&#8217;t have a built-in upload feature like most themes with customisable headers do, but it&#8217;s still pretty easy to change.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/Basic-Simplicity.gif"><img class="aligncenter size-medium wp-image-466" title="Basic-Simplicity" src="http://keelanrosacolour.com/wp-content/uploads/Basic-Simplicity-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://www.helloper.com/blaskan-wordpress-org">Blaskan</a> &#8211; As far as colours go, only the background and header can be easily customised, but it&#8217;s still a good-looking theme.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/Blaskan.gif"><img class="aligncenter size-medium wp-image-467" title="Blaskan" src="http://keelanrosacolour.com/wp-content/uploads/Blaskan-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://wplook.com/blogolife">Blogolife</a> &#8211; Six different colour themes to change the ribbon-like elements, and the header image and background are fully customisable.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/BlogoLife.gif"><img class="aligncenter size-medium wp-image-468" title="BlogoLife" src="http://keelanrosacolour.com/wp-content/uploads/BlogoLife-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">Graphene</a> &#8211; Tons of options on this one, and not just in appearance. Pretty much every individual element can be customised. There&#8217;s also a built-in section for custom CSS.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/Graphene.gif"><img class="aligncenter size-medium wp-image-469" title="Graphene" src="http://keelanrosacolour.com/wp-content/uploads/Graphene-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://www.riotreactions.com/mantra/">Mantra</a> &#8211; Not every element is customisable, but a good many are, and there&#8217;s a custom CSS section to cover the rest.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/Mantra.gif"><img class="aligncenter size-medium wp-image-470" title="Mantra" src="http://keelanrosacolour.com/wp-content/uploads/Mantra-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://aquoid.com/news/themes/suffusion/">Suffusion</a> &#8211; Includes over twenty prebuilt colour themes which are fully customisable, so you can ditch the default look right off and still have the ability to do a bit of tinkering.<br />
<a href="http://keelanrosacolour.com/wp-content/uploads/Suffusion.gif"><img class="aligncenter size-medium wp-image-471" title="Suffusion" src="http://keelanrosacolour.com/wp-content/uploads/Suffusion-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://wordpress.org/extend/themes/twentyeleven">Twenty Eleven</a> &#8211; This is currently the default WordPress theme, and while it&#8217;s not as highly customisable as some others, it&#8217;s the theme you&#8217;re guaranteed to have installed if you don&#8217;t want to bother uploading anything new. You can choose between a light (black text on white background) or dark (white on black) basic scheme and further customise links, page background, header image, and header text colour.<a href="http://keelanrosacolour.com/wp-content/uploads/TwentyEleven.gif"><img class="aligncenter size-medium wp-image-472" title="TwentyEleven" src="http://keelanrosacolour.com/wp-content/uploads/TwentyEleven-300x175.gif" alt="" width="300" height="175" /></a></li>
<li><a href="http://www.wp-themix.org/themes/wp-creativix-free-premium-portfolio-wordpress-theme/">WP Creativix</a> &#8211; Doesn&#8217;t include much colour customisation beyond background and header/link text, but it does include a slider and some other nice design features.<a href="http://keelanrosacolour.com/wp-content/uploads/WP-Creativix.gif"><img class="aligncenter size-medium wp-image-473" title="WP-Creativix" src="http://keelanrosacolour.com/wp-content/uploads/WP-Creativix-300x175.gif" alt="" width="300" height="175" /></a></li>
</ol>
<p class="tip">Have you tried any of these themes? Know of another customisable WordPress theme which is even better? Leave a comment letting us know all about it!</p>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/eight-free-wordpress-themes-with-customisable-colour-schemes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet</title>
		<link>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/</link>
		<comments>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 03:19:04 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Website CSS]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=348</guid>
		<description><![CDATA[This is Part Two of the &#8216;Changing a Website Colour Scheme&#8217; series. Still need to read Part One? Go to Changing a Website Colour Scheme: CSS Basics and learn everything you need to use this cheat sheet. Basic Colour Options There&#8217;s three main ways to declare colour in CSS: hex, RGB, and colour name. Hex [...]
Related posts:<ol>
<li><a href='http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/' rel='bookmark' title='Changing a Website Colour Scheme, Part One: CSS Basics'>Changing a Website Colour Scheme, Part One: CSS Basics</a></li>
</ol>]]></description>
				<content:encoded><![CDATA[<p class="tip"><strong>This is Part Two of the &#8216;Changing a Website Colour Scheme&#8217; series.</strong> Still need to read Part One? Go to <a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/">Changing a Website Colour Scheme: CSS Basics</a> and learn everything you need to use this cheat sheet.</p>
<h2>Basic Colour Options</h2>
<p>There&#8217;s three main ways to declare colour in CSS: hex, RGB, and colour name.</p>
<p><strong>Hex</strong> is most common among web designers. A hex code breaks a colour down into a six-figure code, ranging from #000000 (pure black) to #ffffff (pure white). Hex colours are declared by putting something like &#8216;color:#ff0000;&#8217; in the appropriate place in your CSS.</p>
<p><strong>RGB</strong> produces the same colours as hex; in fact, hex is a form of RGB itself. The first two digits in a hex code are red, the second two green, and the last two blue. Hex, however, uses letters as well as numbers, whereas RGB only uses numbers: pure black RGB will be 0,0,0 and pure white will be 255,255,255. This makes RGB codes a bit longer and less efficient to type out, but if you&#8217;ve found a colour listed only in RGB and don&#8217;t want to convert it to hex, RGB can be useful. RGB is declared with &#8216;color:rgb(255,0,0);&#8217;</p>
<p class="tip">Want to make something transparent? Change your declaration to &#8216;rgba(255,0,0,0.5);&#8217;. The last number is for alpha transparency, and can vary from 0.0 (completely transparent) to 1.0 (completely opaque).</p>
<p>Colour <strong>names</strong> are more limited than hex and RGB &#8211; hex or RGB can produce over 16 million different colours, but there&#8217;s only 147 different colour names which will work in CSS. Still, 147 is plenty of colour, and it&#8217;s much easier to remember &#8216;color:SeaGreen;&#8217; than &#8216;color:#2e8b57;&#8217;. If you want precise control over your colours, hex or RGB is better, but if you just want a generic navy blue, names will work just fine. W3Schools has a <a href="http://www.w3schools.com/cssref/css_colorsfull.asp">list of colour names supported by all browsers</a> to help you out.</p>
<h2>Declarations Used to Change Colour</h2>
<p><strong><a href="http://keelanrosacolour.com/css-background-tips/" title="CSS Background Tips">Background</a></strong> or <strong>background-color</strong>: will change the colour of the background. This doesn&#8217;t need to be used just for the overall background; &#8216;background&#8217; can also be used to change the colour of a single element, such as a sidebar, navigation menu, paragraph, or link.</p>
<p><strong>Color:</strong> despite the rather generic name, &#8216;color&#8217; only changes the colour of text. It can be used in the body{ selector to change text throughout an entire webpage, or used in other selectors to change the text colour in a single element.</p>
<p><strong>Border:</strong> puts a border around an element. You&#8217;ll also want to list size and type of border, for example &#8216;border:2px solid #ff0000;&#8217;. Borders can also be dotted or dashed, and you can make different borders on each side of an element by using &#8216;border-top&#8217;, &#8216;border-right&#8217;, &#8216;border-bottom&#8217;, and &#8216;border-left&#8217; in place of &#8216;border&#8217;.</p>
<p class="tip">If you&#8217;re using borders on paragraphs or other text-heavy elements, you may also want to use the &#8216;padding&#8217; declaration to give the text a little extra room (e.g. &#8216;padding:2px;&#8217;). Otherwise the text at the edges might bump up against the border and be difficult to read.</p>
<h2>Sample Selectors &#038; Declarations</h2>
<p><strong>body {background:#ccccff; color:#000033;}</strong> &#8211; changes the background of the overall site and all the main text<br />
<strong>a {background:#cccccc; color:#333333;}</strong> &#8211; turns links dark grey and places them over a light grey background<br />
<strong>p.alert {background:#ffffcc; color:#330000; border:2px solid #330000; padding:2px;}</strong> &#8211; for any paragraphs classed &#8216;alert&#8217;, changes the background to yellow and the text to red, and surrounds the alert with a red border<br />
<strong>p.tip {background-color:#F0E9A7; padding:6px;}</strong><br />
<strong>p.tip strong {color:#07608E;}</strong><br />
This is what i use for my little yellow &#8216;tip&#8217; paragraphs (like the one below, pointing you to Part One of this series). Without any extra styling, the HTML element &lt;strong&gt; only makes text bold, but it can be styled separately for different paragraph classes. In my &#8216;tip&#8217; paragraphs, i&#8217;ve changed &lt;strong&gt; to a different colour from the rest of the text in order to make it stand out even more.</p>
<p class="tip"><strong>This is Part Two of the &#8216;Changing a Website Colour Scheme&#8217; series.</strong> Still need to read Part One? Go to <a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/">Changing a Website Colour Scheme: CSS Basics</a> and learn everything you need to use this cheat sheet.</p>
<p>Related posts:</p><ol>
<li><a href='http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/' rel='bookmark' title='Changing a Website Colour Scheme, Part One: CSS Basics'>Changing a Website Colour Scheme, Part One: CSS Basics</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changing a Website Colour Scheme, Part One: CSS Basics</title>
		<link>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/</link>
		<comments>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:00:17 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Website CSS]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=291</guid>
		<description><![CDATA[The best way to change an entire website&#8217;s colour scheme is by using CSS. For those who are unfamiliar with it, CSS (or Cascading Style Sheet) is a method of consistently styling websites. A cascading style sheet can be saved as a separate file (usually style.css or something similar) and then linked to in the [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<p>The best way to change an entire website&#8217;s colour scheme is by using CSS. For those who are unfamiliar with it, CSS (or Cascading Style Sheet) is a method of consistently styling websites. A cascading style sheet can be saved as a separate file (usually style.css or something similar) and then linked to in the code of a website, meaning the same style sheet can be used for multiple web pages, or even multiple sites. Making a change in a style sheet which is used across a website will then change the entire website. Especially for large sites, it&#8217;s much more convenient to use one style sheet than to change every single page individually.</p>
<h2>Selectors, IDs, Classes (and other things you don&#8217;t care about)</h2>
<p>If you&#8217;re only recolouring a pre-existing site, you don&#8217;t need to know much about selectors, IDs, and classes. Use a tool like <a href="http://getfirebug.com/">Firebug</a> to find what you want to edit; it&#8217;ll show exactly what selector you need to change, as well as any relevant IDs and classes.</p>
<div id="attachment_343" class="wp-caption aligncenter" style="width: 310px"><a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/firebug_inspect/" rel="attachment wp-att-343"><img src="http://keelanrosacolour.com/wp-content/uploads/Firebug_Inspect-300x191.png" alt="" title="Using the Firebug inspector" width="300" height="191" class="size-medium wp-image-343" /></a><p class="wp-caption-text">Firebug can help you find your CSS selectors - just click the &#039;inspect&#039; button and then mouse over what you want to change. The name of the element will instantly be highlighted, showing you what you need to change in your CSS.</p></div>
<p>Basically, a <strong>selector</strong> is something which can be changed using CSS, such as a paragraph, heading, or blockquote. Some selectors also have a <strong>class</strong> &#8211; for example, if you need a specially-styled paragraph for important announcements, you might create an &#8216;announcement&#8217; class, and every paragraph classed as an announcement would look like your &#8216;announcement&#8217; class, rather than a regular paragraph. <strong>IDs</strong> are similar to classes but more specific, usually used for something which will only appear once on a page, such as the main header.</p>
<h2>Declarations (the bit you do care about)</h2>
<p><strong>Declarations</strong> are the changes you&#8217;re making to your selectors &#8211; the declaration of what you&#8217;re changing.</p>
<p>Example:</p>
<p class="code">blockquote {background-color:#fe09a7;}</p>
<p>Here, &#8216;blockquote&#8217; is the selector and &#8216;background-color&#8217; is the declaration &#8211; basically, we&#8217;re declaring an intent to change the background colour of every blockquote on the site.</p>
<h2>External Style Sheets</h2>
<p>There&#8217;s several ways to put CSS in a website, but using an external style sheet is the most convenient for making sitewide changes. An external style sheet is a file consisting entirely of CSS selectors and declarations, and is linked to in pages by putting <span class="code">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;yourstylesheet.css&#8221; &gt;</span> between the &lt;head&gt; tags at the top of your site.</p>
<p>If you&#8217;re recolouring an existing site, all the work of creating and linking an external style sheet is already done. Just find your old style sheet &#8211; it will end in .css and will probably be named something like style.css. Save a backup copy so you can revert if necessary and edit away.</p>
<p class="tip"><strong>Advanced tip:</strong> once you know how to create external style sheets, you know everything you need to start making <a href="http://codex.wordpress.org/Child_Themes">WordPress child themes</a>. Child themes allow you to customise a WordPress theme without worrying about losing your customisations if the theme is changed or updated. Creating a child theme is as simple as adding a <a href="http://codex.wordpress.org/Child_Themes#The_required_style.css_file">special header</a> to a CSS file and uploading it to your site as a theme.</p>
<p><strong>And now, a confession:</strong> I am maybe a bit too much of a CSS geek to be writing this sort of thing. I&#8217;m quite certain there&#8217;s one or two (or ten) things i skimmed over as &#8216;too obvious&#8217; which <em>aren&#8217;t</em> obvious to everyone else. So what can i do to make this &#8216;basic&#8217; article clearer to you?</p>
<p class="tip"><strong>Still deciding where to start?</strong> Check out <a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-two-css-cheat-sheet/">Changing a Website Colour Scheme, Part Two: CSS Cheat Sheet</a> now for a colour-centric list of CSS selectors and declarations.</p>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>6 Web Design Tips for Newbies</title>
		<link>http://keelanrosacolour.com/6-website-design-tips-for-newbies/</link>
		<comments>http://keelanrosacolour.com/6-website-design-tips-for-newbies/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:00:36 +0000</pubDate>
		<dc:creator>Keelan</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://keelanrosacolour.com/?p=157</guid>
		<description><![CDATA[What makes a great website? The best way to create a rewarding experience for your site visitors is with a visually striking, useful, and easily navigable website. A variety of programs make it possible for anyone to create a site with limited experience and no programming knowledge, but to make the site truly great, there&#8217;s [...]
Thoughts?]]></description>
				<content:encoded><![CDATA[<h2>What makes a great website?</h2>
<p>The best way to create a rewarding experience for your site visitors is with a visually striking, useful, and easily navigable website. A variety of programs make it possible for anyone to create a site with limited experience and no programming knowledge, but to make the site truly great, there&#8217;s a few things you should keep in mind…</p>
<p><strong>1. Know your objective in having an online presence.</strong> Do you want to sell a product, or just inform? Either way, your homepage must focus on what you are providing your audience. Design the site around your focus. Spice up the page with a picture or two and include a short introduction to explain what your site is about. Include helpful and relevant links, but avoid cluttering your site with useless links and banner ads, which can distract your audience from what you want them to do on your site and make you look less professional in the eyes of your visitors.</p>
<p><strong>2. Be consistent.</strong> Some elements can and should change from page to page &#8211; for example, a sidebar showing new products would be useful on most pages but redundant on your sales page. Most elements, however, should stay as similar as possible. This is especially true of navigation &#8211; you want your visitors to know exactly where they are and how to get where they&#8217;re going, rather than getting frustrated with a menu which jumps all over the page. Have a unifying thematic design or motif for your website which carries across each page and keep your site elements consistent within this design.</p>
<p><strong>3. Use, but don&#8217;t overuse, colour.</strong> Colour is important as it can elicit strong emotions from your visitors. Associating the colour with what you are selling or offering can also enhance the appeal of your site. Overusing colour and drowning your site in fifteen different hues, however, will make your site look disjointed and chaotic. Use as few colours as possible and let the focus of your site, like products or information, stand out from your colour scheme.</p>
<p><strong>4. Keep your fonts legible.</strong> Common and persistent type fonts and sizes are also important in creating a unified design. Few things are as confusing to read as a page with several font types. Prudent design rules limit your fonts to one or two, one for the title and one for the body text. Stick to <a href="http://web.mit.edu/jmorzins/www/fonts.html">websafe fonts,</a> which are more likely to appear the same across all your user&#8217;s computers. Font size is more flexible and can be varied amongst sub-headings and sidebars.</p>
<p><strong>5. Make sure your site pages have reasonable file sizes for fast loading.</strong> Another part of creating a good experience for your site visitor comes in not making them wait for your site &#8211; whether it be the main page or subpages &#8211; to load. While broadband internet connection helps with speed, it&#8217;s still useful to make sure your site will load quickly for those using dial-up. It&#8217;s good for page rank, too: even Google monitors how fast your site loads against average loading times.</p>
<p><strong>6. Find the time to refine the elements in your website before posting it.</strong> If you&#8217;re designing on your computer, confirm the appearance of your site before you even upload it to the webhost. If you&#8217;re designing in your site&#8217;s content manager (e.g., in <a href="http://wordpress.org">WordPress</a>), preview the design before you make it live.</p>
<p>Software can automate the design process, but a perfect website isn&#8217;t developed in a single day. Creating a quality site takes time, but with focus and effort, you can achieve exactly the design you want.</p>
<p class="tip">Want to take your website design to the next level? Check out &#8216;<a href="http://keelanrosacolour.com/changing-a-website-colour-scheme-part-one-css-basics/" title="Changing a Website Colour Scheme, Part One: CSS Basics">CSS Basics</a>&#8216; for tips on using CSS to customise a website.</p>
<p>Thoughts?</p>]]></content:encoded>
			<wfw:commentRss>http://keelanrosacolour.com/6-website-design-tips-for-newbies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
