<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
>

<channel>
	<title>Bill Selak &#187; web design</title>
	<atom:link href="http://www.billselak.com/archives/category/blog/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.billselak.com</link>
	<description>the (ed)tech (bill)tech podcast: where education and technology meet</description>
	<lastBuildDate>Sat, 10 Apr 2010 04:06:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<!-- podcast_generator="Blubrry PowerPress/1.0.6" mode="advanced" entry="normal" -->
	<itunes:summary>With a new topic every 10 weeks, (ed)tech (bill)tech teaches you how to incorporate technology into your classroom successfully.</itunes:summary>
	<itunes:author>Bill Selak</itunes:author>
	<itunes:explicit>clean</itunes:explicit>
	<itunes:image href="http://www.billselak.com/podcast/edtech_billtech_itunes.jpg" />
	<itunes:owner>
		<itunes:name>Bill Selak</itunes:name>
		<itunes:email>billselak@gmail.com</itunes:email>
	</itunes:owner>
	<managingEditor>billselak@gmail.com (Bill Selak)</managingEditor>
	<copyright>2009</copyright>
	<itunes:subtitle>How to incorporate technology into your classroom successfully.</itunes:subtitle>
	<itunes:keywords>Ed  tech, educational technology, education, technology, podcasting, classroom teacher, training, technology for the classroom</itunes:keywords>
	<image>
		<title>Bill Selak &#187; web design</title>
		<url>http://www.billselak.com/podcast/edtech_billtech_rss.jpg</url>
		<link>http://www.billselak.com/archives/category/blog/web-design</link>
	</image>
	<itunes:category text="Education">
		<itunes:category text="Education Technology" />
		<itunes:category text="Education Technology" />
		<itunes:category text="Education Technology" />
	</itunes:category>
		<item>
		<title>Say no to sidebars! (customize your Wordpress pages)</title>
		<link>http://www.billselak.com/archives/407</link>
		<comments>http://www.billselak.com/archives/407#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:47:43 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[525]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[conditional formatting]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=407</guid>
		<description><![CDATA[Typically, I blog about educational technology that the average teacher can understand. This, however, is some heavy lifting.
Here is an advanced trick for Wordpress users. This is how I removed the sidebar from one specific page (titled forum) on my wordpress site. After much searching, I found that I needed to implement conditional formatting using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/billselak/3299787804/" title="custom drink by billaday, on Flickr"><img src="http://farm4.static.flickr.com/3354/3299787804_ab4df00995_m.jpg" width="240" height="180" alt="custom drink" /></a>Typically, I blog about educational technology that the average teacher can understand. This, however, is some heavy lifting.</p>
<p>Here is an advanced trick for Wordpress users. This is how I removed the sidebar from one specific page (titled forum) on my wordpress site. After much searching, I found that I needed to implement conditional formatting using php. </p>
<p>Here&#8217;s my problem:<br />
I wanted one single wordpress page to <strong>not</strong> have a sidebar. I wanted it to take up the entire width of the page. Makes sense for a <a href="http://www.billselak.com/forum">forum</a>, right? Not so easy&#8230;</p>
<p>Solution:<br />
In the wordpress dashboard, navigate to Appearance > Editor > page.php.<br />
On page.php, I changed:
<pre class="brush: plain; light: true;">&lt;?php get_sidebar();; ?&gt;</pre>
<p>to:
<pre class="brush: plain; light: true;">&lt;?php if(!is_page('Forum')) get_sidebar();; ?&gt;</pre>
<p>Here&#8217;s what that means:<br />
Typically, wp displays the sidebar. That&#8217;s what we usually want. In this case, the exclamation point means &#8220;if it is not&#8221;. So, the php translation is, &#8220;If it&#8217;s not the Forum page, then show the sidebar.&#8221;</p>
<p>Perfect, so far. However, there was a blank space where the sidebar used to be. Another problem. The forum should be wider. This won&#8217;t happen, though, because my stylesheet says the page can only be 510 pixels wide.</p>
<p>So, I went to my stylesheet and created a  div titled #widecolumn with a width of 100%. </p>
<p>Back on page.php, I changed the original div titled #contentleft to:</p>
<pre class="brush: plain;">&lt;?php if(!is_page('Forum')) { ?&gt;
&lt;div id=&quot;contentleft&quot;&gt;
&lt;?php } else { ?&gt;
&lt;div id=&quot;widecolumn&quot;&gt;
&lt;?php } ?&gt;</pre>
<p>Again, with the php translation: &#8220;If it&#8217;s not the Forum page, use the div #contentleft (with a width of 510 px). If it is the Forum page, use the #widecolumn div that you just made (with a width of 100%).</p>
<p>Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/407/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sliding Notes</title>
		<link>http://www.billselak.com/archives/273</link>
		<comments>http://www.billselak.com/archives/273#comments</comments>
		<pubDate>Mon, 11 May 2009 05:35:26 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wp wordpress plugin css howto webdesign]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=273</guid>
		<description><![CDATA[
I just installed Hackadelic&#8217;s Sliding Notes onto this WordPress blog. Here&#8217;s the idea: type something inside a hidden, accordion-style note. Click to reveal more info. Let&#8217;s try it in this example&#8230;
I think Sliding Notes will be helpful in my class. Do you see how you can click on the word EDUC525. It gives more info [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/billselak/901611927/" title="Stealing first... not so much by billaday, on Flickr"><img src="http://farm2.static.flickr.com/1318/901611927_f39f6459d9_m.jpg" width="240" height="160" alt="Stealing first... not so much" /></a><br />
I just installed <a href="http://hackadelic.com/solutions/wordpress/sliding-notes">Hackadelic&#8217;s Sliding Notes</a> onto this WordPress blog. Here&#8217;s the idea: type something inside a hidden, accordion-style note. Click to reveal more info. Let&#8217;s try it in this example&#8230;</p>
<p>I think Sliding Notes will be helpful in my <a href="javascript:;" class="hackadelic-sliderButton"onclick="toggleSlider('#hackadelic-sliderPanel-1')" title="click to expand/collapse slider EDUC525">EDUC525&raquo;</a> <span class="hackadelic-sliderPanel concealed" id="hackadelic-sliderPanel-1"></span>class. Do you see how you can click on the word EDUC525. It gives more info if you need it. Very cool. So now that it works on my page, here is how to do it on your Wordpress page:</p>
<ol>
<li>Download &lt;a href=&#8221;http://wordpress.org/extend/plugins/hackadelic-sliding-notes/&#8221;&gt;Sliding Notes&lt;/a&gt; on wordpress.org.</li>
<li>Install the plug-in in wp-content &gt; plugins</li>
<li>Add &lt;a href=&#8221;http://hackadelic.com/solutions/wordpress/sliding-notes#sample-css&#8221;&gt;this css&lt;/a&gt; to your style.css sheet.</li>
<li>Type this in when you want to add a note (and make sure to add square brackets): <code>slider title="sliderbuttontitle"note here/slider</code></li>
</ol>
<p>Very cool tool. Very easy to install.</p>
<div id="hackadelic-sliderNote-1" class="concealed">Students learn and apply the educational uses of Web design. Emphasis is placed on making website design a teaching and learning tool. Effective design is accentuated in the course and is assessed by usability tests.<br />
<span style="display: block; margin-top: 3px; font-size: 7px"><a href="http://hackadelic.com/solutions/wordpress/sliding-notes" title="Powered by Hackadelic Sliding Notes 1.6.4">Powered by Hackadelic Sliding Notes 1.6.4</a></span></div>]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/273/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ed Tech Wiki</title>
		<link>http://www.billselak.com/archives/170</link>
		<comments>http://www.billselak.com/archives/170#comments</comments>
		<pubDate>Sun, 01 Mar 2009 01:20:17 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=170</guid>
		<description><![CDATA[ I added a wiki to this site. I am using MediaWiki (the same software package use by Wikipedia). So go check it out: read a page, join the wiki, and edit a page.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.billselak.com/wiki"><img class="alignnone" title="edtech wiki" src="http://www.billselak.com/wiki/skins/monobook/wiki.png" alt="" width="135" height="135" /></a> I added a <a href="http://www.billselak.com/wiki">wiki</a> to this site. I am using <a href="http://www.mediawiki.org/" target="blank">MediaWiki</a> (the same software package use by Wikipedia). So go check it out: read a page, <a href="http://www.billselak.com/wiki/index.php?title=Special:UserLogin&amp;returnto=Main_Page">join</a> the wiki, and edit a page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/170/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web design tips</title>
		<link>http://www.billselak.com/archives/150</link>
		<comments>http://www.billselak.com/archives/150#comments</comments>
		<pubDate>Sat, 21 Feb 2009 04:45:03 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[525]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=150</guid>
		<description><![CDATA[
Don&#8217;t do this.
Smashing Magazine gives you some easy ways to avoid bad designs. For example, make it easy (not hard) to search your page. Avoid the basic pitfall that make your web site fall to its death (see figure 1).
Do this.
Here are 40 web design services. Find a color scheme, screen capture your current page [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Sean jumping off by billaday, on Flickr" href="http://www.flickr.com/photos/billselak/438722148/"><img src="http://farm1.static.flickr.com/160/438722148_9478982aea_m.jpg" alt="Sean jumping off" width="159" height="240" /></a></p>
<h1>Don&#8217;t do this.</h1>
<p><a href="http://www.smashingmagazine.com/2009/02/18/9-common-usability-blunders/">Smashing Magazine</a> gives you some easy ways to avoid bad designs. For example, make it easy (not hard) to search your page. Avoid the basic pitfall that make your web site fall to its death (see figure 1).</p>
<h1>Do this.</h1>
<p>Here are <a href="http://www.noupe.com/tools/40-useful-handy-web-designers-web-services-tools.html#more-8567">40 web design services</a>. Find a <a href="http://colorschemedesigner.com/">color scheme</a>, screen <a href="http://myspyder.net/tools/websnapshot/">capture</a> your current page design&#8230; all sorts of cool links. And best of all, they are free resources.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/150/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Favicon</title>
		<link>http://www.billselak.com/archives/130</link>
		<comments>http://www.billselak.com/archives/130#comments</comments>
		<pubDate>Tue, 10 Feb 2009 20:31:01 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=130</guid>
		<description><![CDATA[You can generate a favicon for you web page here:
http://favicon-generator.org/
This is the 16&#215;16 pixel icon that is next to the url of a web site.  It&#8217;s important for branding, especially because this icon is saved in most people&#8217;s bookmarks.
If you want to create your own favicon without this tool, you need to download someone else&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>You can generate a favicon for you web page <a href="http://favicon-generator.org/&lt;br &gt;&lt;/a&gt;">here:</a></p>
<p><a href="http://favicon-generator.org/&lt;br &gt;&lt;/a&gt;">http://favicon-generator.org/</a><br />
This is the 16&#215;16 pixel icon that is next to the url of a web site.  It&#8217;s important for branding, especially because this icon is saved in most people&#8217;s bookmarks.</p>
<p>If you want to create your own favicon without this tool, you need to download someone else&#8217;s favicon, open it in Photoshop, resize the icon you want to 16&#215;16 px, and paste your icon over the .ico you imported. Photoshop will let you save the file, but won&#8217;t let you open a jpg and choose Save As&#8230; .ico.</p>
<p>Finally, type this code into your page for it to see and use your new favicon:</p>
<pre><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"shortcut icon"</span> <span class="na">href=</span><span class="s">"/favicon.ico"</span> <span class="na">type=</span><span class="s">"image/x-icon"</span><span class="nt">&gt;</span>
<span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"icon"</span> <span class="na">href=</span><span class="s">"/favicon.ico"</span> <span class="na">type=</span><span class="s">"image/x-icon"</span><span class="nt">&gt;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/130/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
