<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Strangeattractor</title>
	<atom:link href="http://www.strangeattractor.ca/wp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strangeattractor.ca/wp</link>
	<description>Ellen Kaye-Cheveldayoff's weblog</description>
	<lastBuildDate>Mon, 07 Jun 2010 14:29:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on As You Like It at the Stratford Festival 2010 by Tweets that mention Strangeattractor » As You Like It at the Stratford Festival 2010 -- Topsy.com</title>
		<link>http://www.strangeattractor.ca/wp/2010/06/07/as-you-like-it-at-the-stratford-festival-2010/comment-page-1/#comment-4218</link>
		<dc:creator>Tweets that mention Strangeattractor » As You Like It at the Stratford Festival 2010 -- Topsy.com</dc:creator>
		<pubDate>Mon, 07 Jun 2010 14:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=95#comment-4218</guid>
		<description>[...] This post was mentioned on Twitter by Stratford Festival, strangeattractor. strangeattractor said: Ben Carlson is hilariously funny, songs are like a modern musical in As You Like It at @stratfest. My review: http://bit.ly/azijGf [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Stratford Festival, strangeattractor. strangeattractor said: Ben Carlson is hilariously funny, songs are like a modern musical in As You Like It at @stratfest. My review: <a href="http://bit.ly/azijGf" rel="nofollow">http://bit.ly/azijGf</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Barecity: a minimalist and customizable Wordpress theme by Ellen</title>
		<link>http://www.strangeattractor.ca/wp/2009/04/23/barecity-a-minimalist-and-customizable-wordpress-theme/comment-page-1/#comment-3732</link>
		<dc:creator>Ellen</dc:creator>
		<pubDate>Wed, 28 Apr 2010 20:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=17#comment-3732</guid>
		<description>Hi Leachdog.  I have some answers for you.

&lt;b&gt;1. Bringing the sidebar up to the top of the page&lt;/b&gt;

To bring the sidebar up to the top of the page, you need to modify the header.php file and the footer.php file.  You need to move this line of code:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
			&lt;?php get_sidebar(); ?&gt;
&lt;/pre&gt;

from after the first div tag in the footer.php file to after the div tag with the id of &quot;rap&quot; in the header.php file. 			

The original footer.php file begins like:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
&lt;!-- begin footer --&gt;
		&lt;/div&gt;
			&lt;?php get_sidebar(); ?&gt;
			&lt;div class=&quot;credit&quot;&gt;
				&lt;!--Creative Commons License--&gt; 
&lt;/pre&gt;

After the change it should look like:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
&lt;!-- begin footer --&gt;
		&lt;/div&gt;
			&lt;div class=&quot;credit&quot;&gt;
				&lt;!--Creative Commons License--&gt; 
&lt;/pre&gt;

The original header.php file looks like this, starting at line 20:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
&lt;body&gt;
	&lt;div id=&quot;rap&quot;&gt;	
		&lt;div id=&quot;headwrap&quot;&gt;
			&lt;div id=&quot;header&quot;&gt;
&lt;/pre&gt;


After the change it should look like this, starting at line 20:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
&lt;body&gt;
	&lt;div id=&quot;rap&quot;&gt;
		&lt;?php get_sidebar(); ?&gt;	
		&lt;div id=&quot;headwrap&quot;&gt;
			&lt;div id=&quot;header&quot;&gt;
&lt;/pre&gt;

I&#039;ve tweaked my page a little more than that, so that the sidebar doesn&#039;t go quite all the way to the top.  What I did to achieve that was to adjust the margin in the CSS.

This is what the sidebar portion of the style.css file looked like before:

&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
#sidebar {
	background: #fff;
	border-left: 1px dotted #ccc;
	padding: 0px 0 10px 20px;
	float: right;
	width: 144px;
}
&lt;/pre&gt;


This is what the sidebar portion of the style.css file looks like now.  (I also changed the colour of the border and adjusted the padding.)

&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
#sidebar {
	background: #fff;
	border-left: 1px dotted #444;
	padding: 0px 0px 0px 20px;
	margin-top: 36px;
	float: right; 
	width: 144px;
}
&lt;/pre&gt;


&lt;b&gt;2.  Making the widget titles in the sidebar bold.&lt;/b&gt;

I figured out how to make the widget titles bold, but first let&#039;s look at what seems like it should work, but doesn&#039;t work.

Before I made the fix that I describe in the main post, the Search title responded to a different part of the CSS than the other titles.  It was becoming serif with the main text instead of sans-serif like the other items.  This confused me until I figured it out.  I imagine a similar thing is happening when you attempt to make the font bold.

Indeed, I reproduced the effect you mention by adding a bold font weight to the sidebar ul portion of the stylesheet.

&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
#sidebar ul {
	color: #ccc;
	list-style-type: none;
	margin: 0;
	padding-left: 3px;
	text-transform: lowercase;
	font-weight: bold;
}
&lt;/pre&gt;

I&#039;m not sure if that&#039;s what you did, but that&#039;s how I got similar results.  The search title became bold, the others didn&#039;t.

What you need to do instead is change the tags that the functions.php file inserts before and after the widget titles to create a division and a class just for the titles.  

First modify lines 6 and 7 of the functions.php file so that they look like:

&lt;!--more--&gt;
&lt;pre lang=&quot;php&quot;&gt;
        &#039;before_title&#039; =&gt; &#039;&lt;div class=&quot;widget_title&quot;&gt;&#039;,
        &#039;after_title&#039; =&gt; &#039;&lt;br /&gt;&lt;/div&gt;&#039;,
&lt;/pre&gt;

Then, make a section for the class in the stylesheet.  This is where you will make the widget titles bold, or change their color, or whatever else you want to do with them.

&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
.widget_title {
	font-weight: bold;
}
&lt;/pre&gt;


That will make all of the widget titles except for the search title bold.  Then, if you make the fix I describe in the main post, the Search one will match too.

An alternate way to fix this, instead of changing the functions.php file, is to set the sidebar ul li portion of the stylesheet to bold and the sidebar ul ul li portion to normal.

Those sections would then look like:
&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
#sidebar ul li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-top: 10px;
	padding-bottom: 2px;
}
&lt;/pre&gt;
and 
&lt;!--more--&gt;
&lt;pre lang=&quot;css&quot;&gt;
#sidebar ul ul li {
	border: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 0;
	margin-top: 0;
	padding: 0;
	padding-left: 3px;
}
&lt;/pre&gt;

This alternate fix changes most of the widgets successfully. However, if like me you are using the tag cloud widget, or another widget that stays in the sidebar ul li portion of the stylesheet, then that widget will stay bold in its entirety. 

That&#039;s why I recommend adding a special class for widget titles to the functions.php file and stylesheet instead.

I hope this helps you.</description>
		<content:encoded><![CDATA[<p>Hi Leachdog.  I have some answers for you.</p>
<p><b>1. Bringing the sidebar up to the top of the page</b></p>
<p>To bring the sidebar up to the top of the page, you need to modify the header.php file and the footer.php file.  You need to move this line of code:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">			<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_sidebar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>from after the first div tag in the footer.php file to after the div tag with the id of &#8220;rap&#8221; in the header.php file. 			</p>
<p>The original footer.php file begins like:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- begin footer --&gt;
		&lt;/div&gt;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_sidebar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			&lt;div class=&quot;credit&quot;&gt;
				&lt;!--Creative Commons License--&gt;</pre></div></div>

<p>After the change it should look like:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span> begin footer <span style="color: #339933;">--&gt;</span>
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;credit&quot;</span><span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;!--</span>Creative Commons License<span style="color: #339933;">--&gt;</span></pre></div></div>

<p>The original header.php file looks like this, starting at line 20:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;rap&quot;</span><span style="color: #339933;">&gt;</span>	
		<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;headwrap&quot;</span><span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;header&quot;</span><span style="color: #339933;">&gt;</span></pre></div></div>

<p>After the change it should look like this, starting at line 20:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;body&gt;
	&lt;div id=&quot;rap&quot;&gt;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_sidebar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>	
		&lt;div id=&quot;headwrap&quot;&gt;
			&lt;div id=&quot;header&quot;&gt;</pre></div></div>

<p>I&#8217;ve tweaked my page a little more than that, so that the sidebar doesn&#8217;t go quite all the way to the top.  What I did to achieve that was to adjust the margin in the CSS.</p>
<p>This is what the sidebar portion of the style.css file looked like before:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">dotted</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">144px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>This is what the sidebar portion of the style.css file looks like now.  (I also changed the colour of the border and adjusted the padding.)</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">dotted</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">36px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span> 
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">144px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><b>2.  Making the widget titles in the sidebar bold.</b></p>
<p>I figured out how to make the widget titles bold, but first let&#8217;s look at what seems like it should work, but doesn&#8217;t work.</p>
<p>Before I made the fix that I describe in the main post, the Search title responded to a different part of the CSS than the other titles.  It was becoming serif with the main text instead of sans-serif like the other items.  This confused me until I figured it out.  I imagine a similar thing is happening when you attempt to make the font bold.</p>
<p>Indeed, I reproduced the effect you mention by adding a bold font weight to the sidebar ul portion of the stylesheet.</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span> ul <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">text-transform</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">lowercase</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>I&#8217;m not sure if that&#8217;s what you did, but that&#8217;s how I got similar results.  The search title became bold, the others didn&#8217;t.</p>
<p>What you need to do instead is change the tags that the functions.php file inserts before and after the widget titles to create a division and a class just for the titles.  </p>
<p>First modify lines 6 and 7 of the functions.php file so that they look like:</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">        <span style="color: #0000ff;">'before_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;div class=&quot;widget_title&quot;&gt;'</span><span style="color: #339933;">,</span>
        <span style="color: #0000ff;">'after_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;br /&gt;&lt;/div&gt;'</span><span style="color: #339933;">,</span></pre></div></div>

<p>Then, make a section for the class in the stylesheet.  This is where you will make the widget titles bold, or change their color, or whatever else you want to do with them.</p>
<p><!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.widget_title</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>That will make all of the widget titles except for the search title bold.  Then, if you make the fix I describe in the main post, the Search one will match too.</p>
<p>An alternate way to fix this, instead of changing the functions.php file, is to set the sidebar ul li portion of the stylesheet to bold and the sidebar ul ul li portion to normal.</p>
<p>Those sections would then look like:<br />
<!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span> ul li <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>and<br />
<!--more--></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span> ul ul li <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>This alternate fix changes most of the widgets successfully. However, if like me you are using the tag cloud widget, or another widget that stays in the sidebar ul li portion of the stylesheet, then that widget will stay bold in its entirety. </p>
<p>That&#8217;s why I recommend adding a special class for widget titles to the functions.php file and stylesheet instead.</p>
<p>I hope this helps you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Barecity: a minimalist and customizable Wordpress theme by leachdog</title>
		<link>http://www.strangeattractor.ca/wp/2009/04/23/barecity-a-minimalist-and-customizable-wordpress-theme/comment-page-1/#comment-2769</link>
		<dc:creator>leachdog</dc:creator>
		<pubDate>Mon, 15 Feb 2010 19:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=17#comment-2769</guid>
		<description>Very interesting! Couple of questions, if you don&#039;t mind:

1. How do you momve up the sidebar to the top of the page like you have now?

2. I&#039;ve been trying to make the Widget titles bold. I figured out how to change the color, but for some reason, the widget titles stay normal, even if style.css says they should be &quot;bolder&quot;. Strangely, the Search widget seems to display the title as specified (it&#039;s bolder), but not all the other widget titles.

thanks for your help and time</description>
		<content:encoded><![CDATA[<p>Very interesting! Couple of questions, if you don&#8217;t mind:</p>
<p>1. How do you momve up the sidebar to the top of the page like you have now?</p>
<p>2. I&#8217;ve been trying to make the Widget titles bold. I figured out how to change the color, but for some reason, the widget titles stay normal, even if style.css says they should be &#8220;bolder&#8221;. Strangely, the Search widget seems to display the title as specified (it&#8217;s bolder), but not all the other widget titles.</p>
<p>thanks for your help and time</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Christine</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2233</link>
		<dc:creator>Christine</dc:creator>
		<pubDate>Thu, 14 Jan 2010 13:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2233</guid>
		<description>Perhaps it would be helpful to hear from someone else that lives in Northdale.

My family lives on Albert Street. For the last five years I have spent countless hours trying to get Northdale rezoned. 

There are two visions for intensification. The first is a student precinct. The student population prefers to live in one and two bedroom apartments close to the University. The City allowed developers to build 5 bedroom units. Why not rezone parts of Northdale to MR, build more apartments, condos and three story brownstones for students. Make it a green community with local services like coffee shops, dentists, restaurants and a grocery store. It will limit the need for cars and would house students in safe accomodations. Right now Northdale is full of unlicensed houses that are packed to the gills with students. Don&#039;t you think students deserve better than run down houses that may or may not be safe? 

What is here now was designed for single family occupency not students. And for a variety of reasons single families are not happy here. Why not build something that is accually designed for the students that do want to live in the neighbourhood. 

The second option is a diverse and intensified community- some sort of MR zoning (apartments and condos) mixed with three story brownstones... This community would be roughly 50% students and 50% non students. It would be a youthful community with a wide variety of housing options- but again not five bedroom apartments- one and two bedrooms units. Services for the neighbourhood could be added to the ground floors of the buildings. 

Just to be 100% clear- there would be significantly more student housing in Northdale with either option. I am talking about a seriously intensified neighbourhood close to many area attractions, jobs and the universities. 

What is here doesn&#039;t make sense. Something better needs to be built. 


Christine</description>
		<content:encoded><![CDATA[<p>Perhaps it would be helpful to hear from someone else that lives in Northdale.</p>
<p>My family lives on Albert Street. For the last five years I have spent countless hours trying to get Northdale rezoned. </p>
<p>There are two visions for intensification. The first is a student precinct. The student population prefers to live in one and two bedroom apartments close to the University. The City allowed developers to build 5 bedroom units. Why not rezone parts of Northdale to MR, build more apartments, condos and three story brownstones for students. Make it a green community with local services like coffee shops, dentists, restaurants and a grocery store. It will limit the need for cars and would house students in safe accomodations. Right now Northdale is full of unlicensed houses that are packed to the gills with students. Don&#8217;t you think students deserve better than run down houses that may or may not be safe? </p>
<p>What is here now was designed for single family occupency not students. And for a variety of reasons single families are not happy here. Why not build something that is accually designed for the students that do want to live in the neighbourhood. </p>
<p>The second option is a diverse and intensified community- some sort of MR zoning (apartments and condos) mixed with three story brownstones&#8230; This community would be roughly 50% students and 50% non students. It would be a youthful community with a wide variety of housing options- but again not five bedroom apartments- one and two bedrooms units. Services for the neighbourhood could be added to the ground floors of the buildings. </p>
<p>Just to be 100% clear- there would be significantly more student housing in Northdale with either option. I am talking about a seriously intensified neighbourhood close to many area attractions, jobs and the universities. </p>
<p>What is here doesn&#8217;t make sense. Something better needs to be built. </p>
<p>Christine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Darcy</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2216</link>
		<dc:creator>Darcy</dc:creator>
		<pubDate>Wed, 13 Jan 2010 18:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2216</guid>
		<description>JM Lambert, I think we agree on that last point.  What you&#039;re talking about is perfectly sensible and I don&#039;t think we have a problem with it.  But that&#039;s not what HUG is saying to the papers.  They&#039;re saying the neighbourhood is a ghetto therefore the city needs to bulldoze and put up luxury condos.  

HUG needs better spokespeople.</description>
		<content:encoded><![CDATA[<p>JM Lambert, I think we agree on that last point.  What you&#8217;re talking about is perfectly sensible and I don&#8217;t think we have a problem with it.  But that&#8217;s not what HUG is saying to the papers.  They&#8217;re saying the neighbourhood is a ghetto therefore the city needs to bulldoze and put up luxury condos.  </p>
<p>HUG needs better spokespeople.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by JM Lambert</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2202</link>
		<dc:creator>JM Lambert</dc:creator>
		<pubDate>Tue, 12 Jan 2010 22:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2202</guid>
		<description>There may be some young professionals attracted to Northdale due to its walkability, rental property potential and housing prices, but it&#039;s not contradictory to suggest that the housing stock of the area isn&#039;t typically attractive to that demographic. Every infill development in Northdale, as Michael mentioned, involves high bedroom-count units, which are limited in their appeal. That, and the floorplans of post-war single-family homes in Northdale are relatively unpopular &#8212; it&#039;s practically all Victory Housing and spartan bungalows.

To address the rowdiness issue: yes, most student renters are good neighbors. However, anyone who&#039;s been a student in KW is well aware that people looking for optimally-located &quot;party houses&quot; often look for properties close to the universities or within stumbling distance from bars. So, unfortunately, Northdale is well-suited to the students most likely to be the worst neighbors. A good way to discourage these types of students from living in Northdale is to create mid-market high-density developments with &#8212; here&#039;s the key point &#8212; low bedroom counts. This also makes the neighborhood more attractive to other demographics that would highly value its location and amenities.

Darcy, the people who are calling for a change in Northdale&#039;s zoning &lt;i&gt;are&lt;/i&gt; the same people who want to live there, just not in its current housing stock. It&#039;s great that Ellen managed to find a house that works for her needs, but that doesn&#039;t undermine the fact that Northdale doesn&#039;t have the right properties for many people who fit her demographic.</description>
		<content:encoded><![CDATA[<p>There may be some young professionals attracted to Northdale due to its walkability, rental property potential and housing prices, but it&#8217;s not contradictory to suggest that the housing stock of the area isn&#8217;t typically attractive to that demographic. Every infill development in Northdale, as Michael mentioned, involves high bedroom-count units, which are limited in their appeal. That, and the floorplans of post-war single-family homes in Northdale are relatively unpopular &mdash; it&#8217;s practically all Victory Housing and spartan bungalows.</p>
<p>To address the rowdiness issue: yes, most student renters are good neighbors. However, anyone who&#8217;s been a student in KW is well aware that people looking for optimally-located &#8220;party houses&#8221; often look for properties close to the universities or within stumbling distance from bars. So, unfortunately, Northdale is well-suited to the students most likely to be the worst neighbors. A good way to discourage these types of students from living in Northdale is to create mid-market high-density developments with &mdash; here&#8217;s the key point &mdash; low bedroom counts. This also makes the neighborhood more attractive to other demographics that would highly value its location and amenities.</p>
<p>Darcy, the people who are calling for a change in Northdale&#8217;s zoning <i>are</i> the same people who want to live there, just not in its current housing stock. It&#8217;s great that Ellen managed to find a house that works for her needs, but that doesn&#8217;t undermine the fact that Northdale doesn&#8217;t have the right properties for many people who fit her demographic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Johnny</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2181</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Mon, 11 Jan 2010 20:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2181</guid>
		<description>Can you send this to the Record as a Letter to the Editor? It would be great to see your firsthand perspective get out to a broader audience!</description>
		<content:encoded><![CDATA[<p>Can you send this to the Record as a Letter to the Editor? It would be great to see your firsthand perspective get out to a broader audience!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Michael D</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2155</link>
		<dc:creator>Michael D</dc:creator>
		<pubDate>Sun, 10 Jan 2010 03:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2155</guid>
		<description>Hi Darcy, I would respectfully suggest that I am not missing the point but simply disagreeing.

We&#039;re not talking about mathematical theorems here. It isn&#039;t a contradiction that Ellen -- and some others, I&#039;m sure -- thinks the neighbourhood is fine. Any worthwhile generality has some exceptions. The contention you&#039;d need to make is that Ellen&#039;s is the general experience for live-in property owners in Northdale, and I think you&#039;d have a hard time with that claim. Though I&#039;m not placing much weight on how much I (or others) personally like/dislike the neighbourhood -- what matters is the empirical preference and the manifestations thereof. And more importantly, I simply do not think the zoning there makes for good urban planning today.

What speculation, and what faulty information? Anyway, I think you are seriously misunderstanding the proposal and how it would work -- specifically, how it would affect property owners and developers. I&#039;d be glad to meet with you to discuss this -- tomorrow afternoon, perhaps?

Regarding housing markets and the rest, I&#039;ll respond to the linked post separately.</description>
		<content:encoded><![CDATA[<p>Hi Darcy, I would respectfully suggest that I am not missing the point but simply disagreeing.</p>
<p>We&#8217;re not talking about mathematical theorems here. It isn&#8217;t a contradiction that Ellen &#8212; and some others, I&#8217;m sure &#8212; thinks the neighbourhood is fine. Any worthwhile generality has some exceptions. The contention you&#8217;d need to make is that Ellen&#8217;s is the general experience for live-in property owners in Northdale, and I think you&#8217;d have a hard time with that claim. Though I&#8217;m not placing much weight on how much I (or others) personally like/dislike the neighbourhood &#8212; what matters is the empirical preference and the manifestations thereof. And more importantly, I simply do not think the zoning there makes for good urban planning today.</p>
<p>What speculation, and what faulty information? Anyway, I think you are seriously misunderstanding the proposal and how it would work &#8212; specifically, how it would affect property owners and developers. I&#8217;d be glad to meet with you to discuss this &#8212; tomorrow afternoon, perhaps?</p>
<p>Regarding housing markets and the rest, I&#8217;ll respond to the linked post separately.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Darcy Casselman</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2148</link>
		<dc:creator>Darcy Casselman</dc:creator>
		<pubDate>Sat, 09 Jan 2010 20:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2148</guid>
		<description>Michael, I read your blog and I know where you&#039;re coming from, but I think you&#039;re missing the point.

Ellen (full disclosure: I&#039;m her s/o) is a full-time resident in Northdale who wants to live there.  Ellen&#039;s next door neighbours are young professionals who want to live there.  We think the house across the street was bought by a young family (with kids!) although she hasn&#039;t actually met them yet and don&#039;t know for sure if they&#039;re not just hanging around to fix the place up and fill with students.  Her part of the neighbourhood (a) isn&#039;t that bad and (b) seems to be getting better.

The map that keeps getting printed in the Chronicle is wrong.  The picture the HUG Waterloo people are painting is demonstrably false, and Ellen is the counter-example.  The media coverage has been irresponsible and misleading.  

You&#039;re speculating based on faulty information.  She&#039;s telling you about the actual situation as she sees it.

I would love to see Northdale become a vibrant, high-density urban neighbourhood, but I don&#039;t think the market can bear it.  I could go on, but I&#039;ve written a whole blog post about it, so I won&#039;t belabour it here. See http://waterloowellingtonblogs.org/2010/01/hug-waterloo.shtml

I&#039;d love to talk to you personally about this.  I&#039;m sure Ellen would to. This whole thing bugs me in an irrate blogger sort of way, but it&#039;s personally important for her.  I don&#039;t think we should be basing our urban planning decisions for a neighbourhood based on the wishes of people who don&#039;t want to live there.</description>
		<content:encoded><![CDATA[<p>Michael, I read your blog and I know where you&#8217;re coming from, but I think you&#8217;re missing the point.</p>
<p>Ellen (full disclosure: I&#8217;m her s/o) is a full-time resident in Northdale who wants to live there.  Ellen&#8217;s next door neighbours are young professionals who want to live there.  We think the house across the street was bought by a young family (with kids!) although she hasn&#8217;t actually met them yet and don&#8217;t know for sure if they&#8217;re not just hanging around to fix the place up and fill with students.  Her part of the neighbourhood (a) isn&#8217;t that bad and (b) seems to be getting better.</p>
<p>The map that keeps getting printed in the Chronicle is wrong.  The picture the HUG Waterloo people are painting is demonstrably false, and Ellen is the counter-example.  The media coverage has been irresponsible and misleading.  </p>
<p>You&#8217;re speculating based on faulty information.  She&#8217;s telling you about the actual situation as she sees it.</p>
<p>I would love to see Northdale become a vibrant, high-density urban neighbourhood, but I don&#8217;t think the market can bear it.  I could go on, but I&#8217;ve written a whole blog post about it, so I won&#8217;t belabour it here. See <a href="http://waterloowellingtonblogs.org/2010/01/hug-waterloo.shtml" rel="nofollow">http://waterloowellingtonblogs.org/2010/01/hug-waterloo.shtml</a></p>
<p>I&#8217;d love to talk to you personally about this.  I&#8217;m sure Ellen would to. This whole thing bugs me in an irrate blogger sort of way, but it&#8217;s personally important for her.  I don&#8217;t think we should be basing our urban planning decisions for a neighbourhood based on the wishes of people who don&#8217;t want to live there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northdale Neighbourhood is not a ghetto by Michael D</title>
		<link>http://www.strangeattractor.ca/wp/2010/01/07/northdale-neighbourhood-not-a-ghetto/comment-page-1/#comment-2135</link>
		<dc:creator>Michael D</dc:creator>
		<pubDate>Fri, 08 Jan 2010 21:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangeattractor.ca/wp/?p=87#comment-2135</guid>
		<description>Sorry, one more point: if high-bedroom-count units are allowed and overall density is restricted (i.e. the current situation), what results is only student housing of the five-bedroom apartment kind or the seven-bedroom house kind. What kind of IT worker (+ family) or even upper-year undergrad wants to live like that? Due to the limited supply, it&#039;s not even particularly cheap.</description>
		<content:encoded><![CDATA[<p>Sorry, one more point: if high-bedroom-count units are allowed and overall density is restricted (i.e. the current situation), what results is only student housing of the five-bedroom apartment kind or the seven-bedroom house kind. What kind of IT worker (+ family) or even upper-year undergrad wants to live like that? Due to the limited supply, it&#8217;s not even particularly cheap.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
