<?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>ExplodingBoy &#187; Design</title>
	<atom:link href="http://www.exploding-boy.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.exploding-boy.com</link>
	<description>A weblog about design, music, entertainment and life.</description>
	<lastBuildDate>Fri, 24 Oct 2008 20:51:07 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>My Top 5 Fonts&#8230;or fonts I use way too&#160;much</title>
		<link>http://www.exploding-boy.com/2008/10/24/my-top-5-fontsor-fonts-i-use-way-too-much/</link>
		<comments>http://www.exploding-boy.com/2008/10/24/my-top-5-fontsor-fonts-i-use-way-too-much/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 18:03:43 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Top Five]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/?p=277</guid>
		<description><![CDATA[Proxima Nova Gotham Helvetica Myriad Palatino]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://www.ms-studio.com/FontSales/proximanova.html">Proxima Nova</a></li>
<li><a href="http://www.typography.com/fonts/font_overview.php?productLineID=100008">Gotham</a></li>
<li><a href="http://www.linotype.com/526/helvetica-family.html">Helvetica</a></li>
<li><a href="http://www.linotype.com/1257/myriad-family.html">Myriad</a></li>
<li><a href="http://www.linotype.com/1317/palatino-family.html">Palatino</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2008/10/24/my-top-5-fontsor-fonts-i-use-way-too-much/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Simple Time Sensitive&#160;CSS</title>
		<link>http://www.exploding-boy.com/2008/06/16/simple-time-sensitive-css/</link>
		<comments>http://www.exploding-boy.com/2008/06/16/simple-time-sensitive-css/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 13:45:05 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/?p=267</guid>
		<description><![CDATA[With the most recent redesign of this site, about a year ago, I decided I wanted to mix things up a little and display a different look/design for each month. I wanted the main page of the site to change with each month, but have the individual entries maintain the look of the month it [...]]]></description>
			<content:encoded><![CDATA[<p>With the most recent redesign of this site, about a year ago, I decided I wanted to mix things up a little and display a different look/design for each month. I wanted the main page of the site to change with each month, but have the individual entries maintain the look of the month it was written. Using a little bit of PHP, 13 different stylesheets, and some handy WordPress conditionals I was able to do just that.<br />
<span id="more-267"></span></p>
<h4>Stylesheets A&#8217; Plenty</h4>
<p>I started by first creating 13 different stylesheets. The first one I created was a base stylesheet containing the basic structure of site. The other stylesheets containing color changes to the header, headings, and link colors, were created for every month. I saved each of the monthly stylesheets by month number, so September&#8217;s stylesheet was saved as 9.css, June&#8217;s was 6.css and December&#8217;s was 12.css. You can take a look through the archived entries on this site to see the various styling for each month.</p>
<h4>Taking Advantage of WordPress Conditional Tags</h4>
<p><a href="http://codex.wordpress.org/Conditional_Tags">WordPress conditional tags</a> are an easy way to tell WordPress to alter various elements within your theme depending on certain conditions. Most early themes for WordPress take advantage of conditional tags to display different content in the sidebar of a page depending on your current location on the site. In order to keep the current month&#8217;s look on the front page of my site, but have the individual entries maintain the look of the month it was written I set up a conditional that said if the page <code>is_single() </code> then display the stylesheet of the month it was published. If we are not on a single entry page then display the current month&#8217;s stylesheet. Here&#8217;s what it looks like:<br />
<code><br />
&lt; ?php if (is_single() ) { ?&gt;<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://sitename.com/&lt;?php the_time('n'); ?&gt;.css&quot; /&gt;<br />
&lt; ?php } else { ?&gt;<br />
&lt;link rel=&quot;stylesheet&rdquo; type=&quot;text/css&quot; href=&quot;http://sitename.com/&lt;?php echo date('n'); ?&gt;.css&quot; /&gt;<br />
&lt; ?php } ?&gt;<br />
</code></p>
<h4>PHP</h4>
<p>Notice the small bit of PHP within the conditional we set up &#8211; <code>&lt;?php echo date('n'); ?&gt;</code>?  I replaced the name of the imported CSS file with a short snippet of PHP, which in turn generates a numerical value of one through twelve depending on the month, and appends the *.css file extension. This is why I saved my monthly stylesheets by month number. You can read more about the <a href="http://us.php.net/datetime">PHP Date/Time functions</a> and decide what format is best for you.</p>
<h4>Options</h4>
<p>If you are not using WordPress you can still easily accomplish the same switching of stylesheets with some simple javascript or server side methods. Once you are familiar with some the options of the PHP Date/Time functions you can experiment with changing the look of your site at any interval you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2008/06/16/simple-time-sensitive-css/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Christ</title>
		<link>http://www.exploding-boy.com/2007/10/12/christ/</link>
		<comments>http://www.exploding-boy.com/2007/10/12/christ/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 16:16:08 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2007/10/12/christ/</guid>
		<description><![CDATA[No pressure&#8230; This is what people see when they try to add me on linkedin.com I&#8217;m thinking the site needs to display a little more than six characters for names.]]></description>
			<content:encoded><![CDATA[<div class="postimage">
<a href="http://flickr.com/photos/exploding-boy/1552469041/">
<span class="flickr"></span><img src="http://exploding-boy.com/entryimages/2007/10_12_2007.jpg" class="entryimage" alt="I Don't Know Christ" /></a>
<p class="caption">No pressure&hellip;</p>
</div>
<p>
This is what people see when they try to add me on <a href="http://www.linkedin.com">linkedin.com</a> I&#8217;m thinking the site needs to display a little more than six characters for names.
</p>]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2007/10/12/christ/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iBoughtAMac&#160;Logo</title>
		<link>http://www.exploding-boy.com/2007/04/23/iboughtamac-logo/</link>
		<comments>http://www.exploding-boy.com/2007/04/23/iboughtamac-logo/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 15:03:08 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[apple-tv]]></category>
		<category><![CDATA[iboughtamac]]></category>
		<category><![CDATA[logo-design-contest]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2007/04/23/iboughtamac-logo/</guid>
		<description><![CDATA[In some good news, it turns out the judges selected my logo design as the winner of iBoughtAMac&#8217;s logo design contest. I&#8217;m sure the judges had a very difficult time making their decision with all the wonderful entries for the contest. Many thanks to Brent at iBoughtAMac and the rest of the judges for the [...]]]></description>
			<content:encoded><![CDATA[<p>In some good news, it turns out the judges selected my logo design as the <a href="http://iboughtamac.com/2007/04/22/iboughtamac-logo-contest-winner/">winner of iBoughtAMac&#8217;s logo design contest</a>. I&#8217;m sure the judges had a very difficult time making their decision with all the wonderful entries for the contest. Many thanks to Brent at <a href="http://iboughtamac.com/">iBoughtAMac</a> and the rest of the judges for the contest. I can&#8217;t wait to get a chance to play around with my new Apple TV.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2007/04/23/iboughtamac-logo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Social Bookmarks to&#160;Blogger</title>
		<link>http://www.exploding-boy.com/2007/01/31/add-social-bookmarks-to-blogger/</link>
		<comments>http://www.exploding-boy.com/2007/01/31/add-social-bookmarks-to-blogger/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 20:37:06 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2007/01/31/add-social-bookmarks-to-blogger/</guid>
		<description><![CDATA[A while back I posted an entry, that received a lot of attention, about how to add various social bookmarks to your WordPress blog entries. Some people think adding these links to blogs are uselees and create visual noise, while others love the idea and feel it is a great way to receive more traffic [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I posted an entry, that received a lot of attention, about how to <a href="http://www.exploding-boy.com/2006/01/09/add-links-for-delicious-digg-and-more-to-blog-posts/">add various social bookmarks</a> to your WordPress blog entries. Some people think adding these links to blogs are uselees and create visual noise, while others love the idea and feel it is a great way to receive more traffic from all of the popular traffic-boosting sites. No matter what category you fall into in this little debate, the idea of offering these links does seem to interest a lot of people. Everyday it seems I receive tons of requests from Blogger users searching for a way to add these links to their blogs.<span id="more-236"></span></p>
<p>I recommend adding the following links to your Blogger template near the bottom of each blog post.</p>
<h4>Del.icio.us</h4>
<p><img class="alignleft" alt="Del.icio.us Logo" title="Del.icio.us Logo" src="http://www.exploding-boy.com/images/logos/delicious.gif" /></p>
<pre>
&lt;a href="http://del.icio.us/post?url=&lt;$BlogItemPermalinkURL$&gt;&#038;title=&lt;$BlogItemTitle$&gt;"&gt;Del.icio.us&lt;/a&gt;
</pre>
<h4>Digg</h4>
<p><img class="alignleft" title="Digg Logo" alt="Digg Logo" src="http://www.exploding-boy.com/images/logos/digg.gif" /></p>
<pre>
&lt;a href="http://digg.com/submit?phase=2&#038;url=&lt;$BlogItemPermalinkURL$&gt;"&gt;Digg&lt;/a&gt;
</pre>
<h4>Technorati</h4>
<p><img class="alignleft" title="Technorati Logo" alt="Technorati Logo" src="http://www.exploding-boy.com/images/logos/technorati.gif" /></p>
<pre>
&lt;a href="http://technorati.com/cosmos/search.html?url=&lt;$BlogItemPermalinkURL$&gt;"&gt;Technorati&lt;/a&gt;
</pre>
<h4>Blinklist</h4>
<p><img class="alignleft" title="Blinklist Logo" alt="Blinklist Logo" src="http://www.exploding-boy.com/images/logos/blinklist.gif" /></p>
<pre>
&lt;a href="http://blinklist.com/index.php?Action=Blink/addblink.php&#038;Description=&lt;$BlogItemTitle$&gt;&#038;url=&lt;$BlogItemPermalinkURL$&gt;"&gt;Blinklist&lt;/a&gt;
</pre>
<h4>Furl</h4>
<p><img class="alignleft" title="Furl Logo" alt="Furl Logo" src="http://www.exploding-boy.com/images/logos/furl.gif" /></p>
<pre>
&lt;a href="http://furl.net/storeIt.jsp?t=&lt;$BlogItemTitle$&gt;&#038;u=&lt;$BlogItemPermalinkURL$&gt;"&gt;Furl&lt;/a&gt;
</pre>
<h4>reddit</h4>
<p><img class="alignleft" title="reddit Logo" alt="reddit Logo" src="http://www.exploding-boy.com/images/logos/reddit.gif" /></p>
<pre>
&lt;a href="http://reddit.com/submit?url=&lt;$BlogItemPermalinkURL$&gt;&#038;title=&lt;$BlogItemTitle$&lt;"&lt;reddit&lt;/a&gt;
</pre>
<h4>Newsvine</h4>
<p><img class="alignleft" alt="Newsvine logo" title="Newsvine Logo" src="http://www.exploding-boy.com/images/logos/newsvine.gif" /></p>
<pre>
&lt;a href="http://www.newsvine.com/_tools/seed&#038;save?u=&lt;$BlogItemPermalinkURL$&gt;&#038;h=&lt;$BlogItemTitle$&gt;"&gt;Newsvine&lt;/a&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2007/01/31/add-social-bookmarks-to-blogger/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Updated Centered Sliding Doors&#160;Menus</title>
		<link>http://www.exploding-boy.com/2006/11/02/updated-centered-sliding-doors-menus/</link>
		<comments>http://www.exploding-boy.com/2006/11/02/updated-centered-sliding-doors-menus/#comments</comments>
		<pubDate>Thu, 02 Nov 2006 20:54:01 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[sliding-doors]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2006/11/02/updated-centered-sliding-doors-menus/</guid>
		<description><![CDATA[A few days back I received a comment from a reader asking for help using the centered sliding door menus that I had expanded upon from Ethan Marcotte’s original tutorial. The commenter explained that the menus were acting a little buggy in IE7 so I decided to download IE7 and try to find a way [...]]]></description>
			<content:encoded><![CDATA[<p>A few days back I received a <a href="http://www.exploding-boy.com/2006/01/31/centered-sliding-doors-menus/#comment-4995">comment</a> from a reader asking for help using the <a href="http://www.exploding-boy.com/2006/01/31/centered-sliding-doors-menus">centered sliding door menus</a> that I had expanded upon from Ethan Marcotte’s original tutorial. The commenter explained that the menus were acting a little buggy in IE7 so I decided to download IE7 and try to find a way to solve things. After a couple of small changes in the stylesheet the menus should now be fully functional in IE, Firefox, and Safari. Enjoy!</p>
<p><a href="http://www.exploding-boy.com/images/center/center.html">View menu example</a>.<strong>(Updated 11/4/06)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2006/11/02/updated-centered-sliding-doors-menus/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Overkill</title>
		<link>http://www.exploding-boy.com/2006/10/04/overkill/</link>
		<comments>http://www.exploding-boy.com/2006/10/04/overkill/#comments</comments>
		<pubDate>Wed, 04 Oct 2006 18:07:01 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2006/10/04/overkill/</guid>
		<description><![CDATA[I was thinking that there should be some type of gallery to feature some of the best designs using cascading style sheets.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cssimport.com/">I</a> <a href="http://www.dailyslurp.com/">was</a> <a href="http://www.unmatchedstyle.com/">thinking</a> <a href="http://www.csselite.com/">that</a> <a href="http://www.cssbloom.com/">there</a> <a href="http://www.csscollection.com/">should</a> <a href="http://cssvault.com/">be</a> <a href="http://www.dark-i.com/">some</a> <a href="http://www.inspirationking.com/">type</a> <a href="http://cssprincess.com/">of</a> <a href="http://www.cssallstar.com/">gallery</a> <a href="http://www.stylegala.com/">to</a> <a href="http://www.cssliquid.com/">feature</a> <a href="http://www.cssbeauty.com/">some</a> <a href="http://www.cssremix.com/">of</a> <a href="http://designshack.co.uk/">the</a> <a href="http://www.lightondark.com/">best</a> <a href="http://www.cssdrive.com/">designs</a> <a href="http://www.css-website.com/">using</a> <a href="http://thesis.veracon.net/">cascading</a> <a href="http://tom.ma/screenblog">style</a> <a href="http://www.cssheaven.com/">sheets</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2006/10/04/overkill/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>QuickTip: Scrollable&#160;Divs</title>
		<link>http://www.exploding-boy.com/2006/10/03/quicktip-scrollable-divs/</link>
		<comments>http://www.exploding-boy.com/2006/10/03/quicktip-scrollable-divs/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 12:46:14 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[divs]]></category>
		<category><![CDATA[overflow]]></category>
		<category><![CDATA[scrollbar]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2006/10/03/quicktip-scrollable-divs/</guid>
		<description><![CDATA[When creating a website, you may have a situation where you need to include far more content into a certain area than the design can really accommodate. An easy way to accomplish this is to create a scrolling div area that will automatically scroll when there is an overflow of content within the div. A [...]]]></description>
			<content:encoded><![CDATA[<p>When creating a website, you may have a situation where you need to include far more content into a certain area than the design can really accommodate. An easy way to accomplish this is to create a scrolling div area that will automatically scroll when there is an overflow of content within the div. A great example of this method in action is on the <a href="http://9rules.com/en/browse/design/">9rules community pages</a>. A scrollable div is used on the right to display all of the sites within a single community in a limited amount of space.</p>
<p><span id="more-183"></span></p>
<p>The effect looks a lot like an iframe, but is not near as messy and is more search engine friendly. To recreate this effect, start by creating a normal div with all of the content you want to scroll within that div. To make the div display a scrollbar you must use the <a href="http://www.w3.org/TR/CSS21/visufx.html#propdef-overflow">overflow element</a> in the CSS. By simply adding “<code>overflow: auto</code>” to your styles, the div will then scroll when there is an overflow of content. Here is what your style sheet would look like for this div:</p>
<p><code><br />
#scrollingdiv {<br />
  color: #333;<br />
  border: 1px solid #DDD;<br />
  padding: 5px;<br />
  width: 215px;<br />
  height: 150px;<br />
  <strong>overflow: auto;</strong><br />
}<br />
</code></p>
<p>Below are the results using the styles above:</p>
<p></p>
<div style="color: #666; border: 1px solid #DDD; padding: 10px; width: 215px; height: 150px; overflow: auto;">
<strong>&#8212; Below is our scrolling content &#8212;</strong><br />
</p>
<ul>
<li>Line Item One</li>
<li>Line Item Two</li>
<li>Line Item Three</li>
<li>Line Item Four</li>
<li>Line Item Five</li>
</ul>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc ultricies neque id orci. Maecenas vitae nisi sed risus sollicitudin tincidunt. Vivamus massa. Donec in est vel pede molestie fringilla. Nam vitae ipsum. Sed venenatis hendrerit ipsum. Mauris sem justo, cursus nec, congue ac, consequat et, metus. Sed commodo sollicitudin velit. Nulla facilisi. Aenean placerat ante at urna. Donec a arcu.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2006/10/03/quicktip-scrollable-divs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Ads to Search&#160;Referrals</title>
		<link>http://www.exploding-boy.com/2006/09/28/display-ads-to-search-referrals/</link>
		<comments>http://www.exploding-boy.com/2006/09/28/display-ads-to-search-referrals/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 14:42:25 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2006/09/28/display-ads-to-search-referrals/</guid>
		<description><![CDATA[With the most recent design of this site I decided to do away with a few of my google ad blocks to make the site a little nicer looking. My google ads are now only displayed to those that end up here via search engines. This is really easy to do, and kinda nice if [...]]]></description>
			<content:encoded><![CDATA[<p>With the most recent design of this site I decided to do away with a few of my google ad blocks to make the site a little nicer looking. My google ads are now only displayed to those that end up here via search engines. This is really easy to do, and kinda nice if you don&#8217;t want to bombard your common visitors with ads. Below is the simple PHP used to selectively display the ads:</p>
<pre>
< ?
if (preg_match('/^http:\/\/(\w+\.)?(google|msn|yahoo|aol)\./',$_SERVER['HTTP_REFERER']) == 1)
{
?>
< ---Insert your Adsense Code Here--->
< ?
}
?>
</pre>
<p>You can see this code in action by visiting a <a href="http://www.exploding-boy.com/2005/12/15/free-css-navigation-designs/">regular post</a> on this site and then one <a href="http://www.google.com/search?sourceid=navclient-ff&#038;ie=UTF-8&#038;rls=DVFC,DVFC:1970--2,DVFC:en&#038;q=site:exploding-boy.com+CSS">from google</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2006/09/28/display-ads-to-search-referrals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matching Up&#160;Myspace</title>
		<link>http://www.exploding-boy.com/2006/09/27/matching-up-myspace/</link>
		<comments>http://www.exploding-boy.com/2006/09/27/matching-up-myspace/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 14:52:00 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.exploding-boy.com/2006/09/27/matching-up-myspace/</guid>
		<description><![CDATA[Despite all of the bad things about Myspace, there really are a few good things. Even non-computer savy folks can easily create their own little space on the web, customize it with some garish animated .gifs and begin to contact people from many years gone by. I had noticed a lot of people that I [...]]]></description>
			<content:encoded><![CDATA[<p>Despite all of the bad things about <a href="http://www.myspace.com">Myspace</a>, there really are a few good things. Even non-computer savy folks can easily create their own little space on the web, customize it with some garish animated .gifs and begin to contact people from many years gone by. I had noticed a lot of people that I knew from both college and high school were on the site so I created <del datetime="2007-06-07T19:44:54+00:00">my Myspace page </del>a little while back for just that reason. I really have enjoyed getting back in contact with old friends I hadn&#8217;t spoke to in almost 10 years. Myspace seems to have managed to bring lots and lots of people together.<br />
<span id="more-186"></span></p>
<p>With my latest redesign of this website I also decided to dive into the awful coding that Myspace is famous for and make my page on Myspace a little bit nicer and hopefully match up with my current design for this website. After getting some help from a few profile tutorials around the web I finally managed to accomplish my goal. <del datetime="2007-06-07T19:44:54+00:00">My Myspace page </del>now matches up quite nicely to my website and doesn&#8217;t have the horrible default Myspace look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exploding-boy.com/2006/09/27/matching-up-myspace/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
