<?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>Alec Morrison Media</title>
	<atom:link href="http://www.alphaalec.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.alphaalec.com</link>
	<description></description>
	<lastBuildDate>Sat, 19 May 2012 20:35:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Setting up a WordPress child theme</title>
		<link>http://www.alphaalec.com/2012/05/setting-up-a-wordpress-child-theme?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-up-a-wordpress-child-theme</link>
		<comments>http://www.alphaalec.com/2012/05/setting-up-a-wordpress-child-theme#comments</comments>
		<pubDate>Wed, 16 May 2012 03:18:12 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=780</guid>
		<description><![CDATA[This post was influenced by the previous post I made on why I child theme over scratch build a theme. A child theme is your own personal copy of an actual theme and it’s usually done to change the appearance &#8230; <a href="http://www.alphaalec.com/2012/05/setting-up-a-wordpress-child-theme">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">This post was influenced by the previous post I made on <a href="http://www.alphaalec.com/2012/05/child-versus-custom-theming">why I child theme over scratch build a theme</a>. A child theme is your own personal copy of an actual theme and it’s usually done to change the appearance or add/edit features of an existing theme.</p>
<p>The main reason why you would do this is if you change the files of a theme, the next time that theme updates, it will wipe away any changes you might have made. A child theme allows you to avoid that!<br />
<span id="more-780"></span></p>
<p>It’s also a great way to create a custom and unique looking WordPress site, without having to know all that tricky PHP to build something from scratch. All you need is an ftp connection to the domain &#038; hosting where your WordPress site is (for this tutorial anyway) and a good grasp of css. </p>
<p>Additionally, knowing how to use Firefox’s Firebug or Chrome’s Inspect Element (or any other browser’s equivalent) is very helpful when child theming. If you haven’t used them before, or don’t know what they are, I strongly suggest you go check them out.</p>
<hr />
<p>Now, onto how to make the child theme! This will work with the assumption that your WordPress site is already installed, and you have the TwentyTen and TwentyEleven themes.</p>
<p>Load up your ftp client (I use FileZilla) and connect to the hosting where the WordPress site is. Go inside your public/main html area, and navigate to <strong>wp-content/themes</strong>. Create a new directory, and for the purposes of this tutorial, name it <strong>ten-child</strong>.</p>
<p>Now, open up your html editor, create a new .css document and write the following code:</p>
<pre>/*
	Theme Name: Ten Child
	Description: A Twenty Ten child theme built as part of a tutorial.
	Author: <your name here>
	Author URI: <your url here>
	Template: twentyten
*/</pre>
<p>These are the basic tags I tend to include. The most important one is the last one, <strong>Template</strong>. This lets WordPress know which theme to get information from in order to deal with your child theme.  <strong>Theme Name</strong> is also important to remember! So, as you probably guessed, we’re making a child theme from the WordPress Twenty Ten theme.</p>
<p>There are more tags you can put in there too. These include Description, Version, License, License URI and Tags.</p>
<p>Anywho, what you do next is up to you, are there are two options. You can add this below the above code:</p>
<pre>@import url(“../twentyten/style.css”);</pre>
<p>Or you can copy all the code from the original TwentyTen style sheet from this line downwards, and paste it into your newly created style sheet.</p>
<pre>/* =Reset default browser CSS.</pre>
<p>Personally, I prefer to do the second option. Don’t do both though, as it can result in the same styles being called twice over. If you want an example of the second option, you can <a href="http://www.alphaalec.com/wp-content/themes/alphaalec/style.css" target="_blank">find one here</a> (though this one is based off TwentyEleven).</p>
<p>If you choose the first option, then all you need to do is add in the css that you want to overwrite the default code. If you choose the second option, you go and edit the code you’ve copied over.</p>
<p>Once you’ve done one of those, save your new style.css file, and upload it inside the <strong>ten-child</strong> folder. So the route to this new style sheet should be <strong>wp-content/themes/ten-child/style.css</strong>.</p>
<p>Now, log into your WordPress dashboard, and navigate to <strong>Appearance -> Themes</strong>. Lo and behold, you should now see your new child theme appear as one of the available themes! You can now activate it go to <strong>Appearance -> Editor</strong> to start making changes!</p>
<p>You’ll notice that there’s no screenshot for your theme. Now might not be the time to put one in as you’ve just started on the child theme, but it’s easy to put in when you’re ready. Simple take a screenshot of your site, save it as <strong>screenshot.png</strong> and put it in the same folder that your child theme style sheet is in. According to the Codex, the recommended size is 300 x 225 px.</p>
<p>I hope that&#8217;s both useful and helpful! For more information, you can always check the <a href="http://codex.wordpress.org/Child_Themes">WordPress Codex</a>, so ask a question below. Thanks!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/05/setting-up-a-wordpress-child-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Child versus Custom theming</title>
		<link>http://www.alphaalec.com/2012/05/child-versus-custom-theming?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=child-versus-custom-theming</link>
		<comments>http://www.alphaalec.com/2012/05/child-versus-custom-theming#comments</comments>
		<pubDate>Fri, 04 May 2012 21:05:47 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Internet related musings]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=761</guid>
		<description><![CDATA[When it comes to creating a website with WordPress, I nearly always do a child theme from either TwentyTen or TwentyEleven (I believe TwentyTwelve will be released with WordPress 3.5), rather than coding my own theme from scratch. This post &#8230; <a href="http://www.alphaalec.com/2012/05/child-versus-custom-theming">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">When it comes to creating a website with WordPress, I nearly always do a child theme from either TwentyTen or TwentyEleven (I believe TwentyTwelve will be released with WordPress 3.5), rather than coding my own theme from scratch. This post is going to outline my reasoning behind this.<br />
<span id="more-761"></span></p>
<ul>
<li>Child theming is generally quicker that building a new theme from scratch. You could of course get around this by having your own scratch built framework that you reuse for different projects.</li>
<li>I find there’s a huge advantage to using the core themes. The open source WP community ensures they’re going to be coded excellently, the tech support for them is both awesome &#038; extensive and they have very high universal plugin compatibility.</li>
<li>This method requires far less PHP knowledge and time to implement, focusing more on CSS, which is easier to master.</li>
<li>I’ve got my own ‘clean look’ style sheets for the TwentyTen &#038; TwentyEleven themes, which wipes their default styles to a more bare bones look. This makes the process even quicker!</li>
</ul>
<p>Here are some thoughts I could come up with on the flip side, of why you might not want to use this method.</p>
<ul>
<li>When an update to TwentyTen or TwentyEleven rolls around, it’s possible they will have modified the style structure, which can break your child theme. Options with this are you can just ignore the update (and possibly miss out on awesome new features!) or spend time updating your child theme styles.</li>
<li>The TwentyTen and TwentyEleven have a huge number of lines of css for you to pick through. I daresay if you create your own theme there’s more likely to be a couple of hundred lines, rather than a couple of thousand.</li>
<li>The simple fact that you want to use something entirely built by you.</li>
</ul>
<p>I’m sure there are more reasons why you may or may not child theme; these were the ones that sprang most prominently to my mind. Indeed, feel free to let me know your own ones! In any case, if you were deciding which method to go and were to ask me, I’d suggest do a child theme! </p>
<p>Thanks for reading.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/05/child-versus-custom-theming/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Plugins &#8211; Map Shortcodes and Custom Links</title>
		<link>http://www.alphaalec.com/2012/04/map-shortcodes-custom-links?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=map-shortcodes-custom-links</link>
		<comments>http://www.alphaalec.com/2012/04/map-shortcodes-custom-links#comments</comments>
		<pubDate>Thu, 26 Apr 2012 01:41:05 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=744</guid>
		<description><![CDATA[Today I added two new plugins to the master list. The first is Google Maps v3 Shortcode, the other Gallery Custom Link. The maps plugin is mostly explained by its name &#8211; you put a shortcode on your page/post and &#8230; <a href="http://www.alphaalec.com/2012/04/map-shortcodes-custom-links">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">Today I added two new plugins to the <a href="http://www.alphaalec.com/wordpress-plugins">master list</a>. The first is <a href="http://wordpress.org/extend/plugins/google-maps-v3-shortcode/">Google Maps v3 Shortcode</a>, the other <a href="https://github.com/brewern/gallery-custom-link">Gallery Custom Link</a>.<br />
<span id="more-744"></span></p>
<p>The maps plugin is mostly explained by its name &#8211; you put a shortcode on your page/post and it loads a map there for you. I like it because of the ease of telling what the map should be showing, as well as being able to load in your own custom marker, which is a nice touch.</p>
<p>The Custom Gallery Link is the plugin I&#8217;m more excited about though. It is exceedingly useful if you use the WordPress built in gallery feature. This is because it adds an extra field in an image&#8217;s media area (where you alter the title, alt text, caption, etc) that lets you set a custom url, whereas before it would only link to either the image&#8217;s own page or its attachment page.</p>
<p>I&#8217;m glad that it&#8217;s a plugin now too, as before you had to go into your theme&#8217;s functions file and add the code yourself. Not that I mind doing something like that, but this makes it easier for those who don&#8217;t like digging into php!</p>
<p>Hopefully you get some use out of this. Enjoy!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/04/map-shortcodes-custom-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Featured Plugin &#8211; Display Widgets</title>
		<link>http://www.alphaalec.com/2012/04/display-widgets?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=display-widgets</link>
		<comments>http://www.alphaalec.com/2012/04/display-widgets#comments</comments>
		<pubDate>Tue, 24 Apr 2012 14:43:30 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=708</guid>
		<description><![CDATA[I recently made a page containing useful WordPress plugins, compiled from some blog posts I did last year. I thought I’d share one of them in particular with you, Display Widgets by Strategy11. What this plugin essentially does, is let &#8230; <a href="http://www.alphaalec.com/2012/04/display-widgets">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">I recently made a page containing <a href="http://www.alphaalec.com/wordpress-plugins">useful WordPress plugins</a>, compiled from some blog posts I did last year. I thought I’d share one of them in particular with you, <a href="http://wordpress.org/extend/plugins/display-widgets/">Display Widgets</a> by <a href="http://strategy11.com/display-widgets/">Strategy11</a>.</p>
<p>What this plugin essentially does, is let your control which of your widgets will appear on each of your pages. On the surface, this might appear to just be a handy tool. Beyond that, however, it can help you turn a WordPress site into something truly dynamic.<br />
<span id="more-708"></span><br />
One of the most effective and function uses I’ve found is with custom menus, enabling you to display page specific menus that go in a sidebar. You can do something similar with your homepage as well – set a widget that only displays there and nowhere else. I’ve found this to be invaluable on numerous occasions.</p>
<p>For an example of a site that makes extensive use of this plugin, I’d suggest you check out <a href="http://www.dianefarrisgallery.com/">Diane Farris Gallery</a>. It has over 25 custom menus, allowing its <a href="http://www.dianefarrisgallery.com/artists/">artist pages</a> to each have their own set of unique links.</p>
<p>All in all, this plugin rocks, and I recommend you both remember it and share its existence with others.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/04/display-widgets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A rant about Craigslist house rentals</title>
		<link>http://www.alphaalec.com/2012/04/craigslist?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=craigslist</link>
		<comments>http://www.alphaalec.com/2012/04/craigslist#comments</comments>
		<pubDate>Fri, 20 Apr 2012 21:38:24 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Internet related musings]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=695</guid>
		<description><![CDATA[Listing your place on Craigslist? Please, please read this first. At least skim it, so you know what you should avoid doing. This has been on my mind for a while now. Back in September when my course at BCIT &#8230; <a href="http://www.alphaalec.com/2012/04/craigslist">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">Listing your place on Craigslist? Please, please read this first. At least skim it, so you know what you should avoid doing.</p>
<p>This has been on my mind for a while now. Back in September when my course at BCIT was nearing its end, I started looking for somewhere in Vancouver that had great commuting options (before I lived close to the Burnaby campus).</p>
<p>Where did I start? Craigslist, of course. And quickly, I found that most housing and apartment ads on there are awful. Talking about it with a friend, she pointed out to me that it just wouldn’t occur to most people to list the level of information some people (myself) might require in an ad. I suspect these expectations stem from human factors classes on credibility and persuasion.<br />
<span id="more-695"></span></p>
<p><strong>WRITING IN ALL CAPS</strong><br />
This one is quite common and I nearly always avoid listings written in all caps. Why? It looks like you’re shouting at me. And it looks like you’re using capitals solely to gain my attention, rather than focusing on the quality of your apartment or house to do the job. So I’ll pass you by.</p>
<p><strong>Lack of Pictures</strong><br />
This is perhaps the most annoying thing I see. Or don&#8217;t, as it were. How often do you see ads for expensive items (such as laptops or televisions) that include no pictures? Not including any in your listing begs me to ask what are you trying to hide? Especially as digital or cell phone cameras are so common these days. It doesn’t have to be high quality either, just give a sense of what’s on offer.</p>
<p>However, if you <em>do</em> put up pictures, please make them ones from the interior of the house/apartment. It’s the inside that I’m interested in, not the out. Oh, and bonus tip. Showing the exterior of your place for rent with snow on the ground isn’t a great selling point in early September.</p>
<p><strong>Location</strong><br />
Not as big an issue as others on my list, but bear in mind that for some people, location is the most important thing they’re looking for. Especially if you&#8217;re like me and don&#8217;t drive a vehicle. Most people are willing to provide a Google Maps link, however. To those of you that don’t, please do.</p>
<p><strong>Utilities Included</strong><br />
The place comes with utilities included in the rent? So&#8230;which ones? Hydro (that&#8217;s what Canadians call electric) and gas are the common ones, but the term could include a combination, such as cable and/or internet. So it’s best to specify.</p>
<p><strong>Contact Details</strong><br />
I know Craigslist provides an email link, but sometimes people are on a tight time schedule, or just prefer calling. So give them the option and include a phone number.</p>
<p>That covers my thoughts on the topic. Who knows, maybe this has been both useful and/or helpful.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/04/craigslist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The rise of horizontal websites</title>
		<link>http://www.alphaalec.com/2012/04/the-rise-of-horizontal-websites?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-rise-of-horizontal-websites</link>
		<comments>http://www.alphaalec.com/2012/04/the-rise-of-horizontal-websites#comments</comments>
		<pubDate>Tue, 17 Apr 2012 02:39:50 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Internet related musings]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.alphaalec.com/?p=676</guid>
		<description><![CDATA[In the past, if you’re surfing the web and you come across a webpage where your horizontal scroll bar appears, the initial thought is usually that there’s a fault in the site’s code, causing content to get chucked around. Either &#8230; <a href="http://www.alphaalec.com/2012/04/the-rise-of-horizontal-websites">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="blogPost">In the past, if you’re surfing the web and you come across a webpage where your horizontal scroll bar appears, the initial thought is usually that there’s a fault in the site’s code, causing content to get chucked around. Either that or the designer went over the generally accepted 950-960 pixel width that’s standard these days. And they were arguably wrong to do that. After all, why should we have to move our cursor to two different parts of the screen to navigate the content?<br />
<span id="more-676"></span></p>
<p>But on the other hand, why not change it up? Why not switch to a site where you scroll purely side to side and none of that up and down business? It makes sense from a certain perspective – monitors are wider than they are tall, after all. And sizes are always getting larger and moving towards widescreen these days. For example, today’s iMacs are available with a screen size of 21.5 or 27 inches. Hardly small.</p>
<p><img src="http://www.alphaalec.com/wp-content/uploads/2012/04/horizontal-screen.png" alt="" title="horizontal-screen" width="619" height="138" class="aligncenter size-full wp-image-685" /></p>
<p>With this in mind, it’s reasonable to think that websites with horizontal navigation will become far more popular in the near future, especially for media heavy sites and portfolios. This is not to say that it will end up being a dominant layout for sites, though. As has been pointed out to me, documents and other vertical scrolling media (books for example) wouldn’t work well in a horizontal format.</p>
<p>Additionally, with <a href="http://line25.com/articles/showcase-of-parallax-scrolling-effects-in-web-design" target="_blank">Parallax</a> becoming popular in its own rights, it looks like a concept that would match up well with horizontal websites. So…in the future, be prepared to not go more than 600 pixels in height…but many more than 960 pixels in width.</p>
<p><a href="http://vanityclaire.com/" target="_blank">Example horizontal scrolling website<br />
</a><a href="http://css-tricks.com/166-how-to-create-a-horizontally-scrolling-site/" target="_blank">How to create a horizontal scrolling website</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alphaalec.com/2012/04/the-rise-of-horizontal-websites/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

