<?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>Modern Web Design Articles and Tutorials &#187; CSS</title>
	<atom:link href="http://www.dlocc.com/articles/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dlocc.com/articles</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 23:22:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Google Unveils the Google Font Directory and API</title>
		<link>http://www.dlocc.com/articles/google-unveils-the-google-font-directory-api/</link>
		<comments>http://www.dlocc.com/articles/google-unveils-the-google-font-directory-api/#comments</comments>
		<pubDate>Thu, 20 May 2010 02:30:29 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1978</guid>
		<description><![CDATA[Google is looking to help all of us web and graphic designers out there who have been trying to break free of the CSS font-family limitations. How are they doing this? Today Google released the Google Font Directory and Google Font API in attempts to bring a selectable and dynamic font solution to the web. [...]]]></description>
			<content:encoded><![CDATA[<p>Google is looking to help all of us web and graphic designers out there who have been trying to break free of the CSS font-family limitations.  How are they doing this?  <strong>Today Google released</strong> the <a href="http://code.google.com/webfonts">Google Font Directory</a> and <a title="Google Font API" href="http://code.google.com/apis/webfonts/">Google Font API</a> in attempts to bring a selectable and dynamic font solution to the web.  I'm expecting the directory in the future this solution will grow to become the web's leading robust and scalable font library and API.</p>
<p>The good things about this web font solution is that it is very easy to implement and the text is completely selectable (for copy-and-paste purposes).  The downsides (both will eventually become irrelevant) are that not every browser will support it... mostly the old school ones that no one should care about anymore, and that it in it's current state the Google Font Directory is limited to a about 20+ fonts (of which you'd probably use about 10).  As the web continues to evolve both of these 'downsides' will no longer be relevant.   </p>
<p id="fooholder"><span class="foo">Google Web Fonts</span><br  /><span class="foo2">Using the Google Font API and Directory</span></p>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine"> 
<link href='http://fonts.googleapis.com/css?family=Molengo' rel='stylesheet' type='text/css'>
<style>
#fooholder {
padding:10px; background-color: #EBEFF9; text-align:center;
}
      .foo {
        font-family: 'Tangerine', serif; 
        font-size: 48px; line-height: 1em;
      }
      .foo2 {
     font-family: 'Molengo', arial, serif; font-size: 20px; font-weight: bold; line-height: 1em;
   }
</style>
<span id="more-1978"></span>
<h2>Google's Font API<img class="alignright size-full wp-image-1987" title="google-font-api-logo" src="http://www.dlocc.com/articles/wp-content/uploads/2010/05/google-font-api-logo.gif" alt="Google Font API Logo" width="196" height="40" style="padding-right:20px;" /></h2>
<p>Google's font API is a part of Google Labs and is an easy to use application programmable interface (API) that allows you to select a font from Google's font directory and use it on any website of your choosing... for free!  Applying a font from Google's Font Directory is a breeze, simply add a stylesheet link to your site's head and then use the font you selected from the directory in a CSS style.  Bingo, bango, bongo.</p>
<h3>Usage and Implementation</h3>
<p>Here's a Google Font usage example:</p>

<p>First add our stylesheet to the head of your website.</p>
[inline]
<pre class="brush: plain;">
  &lt;head&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://fonts.googleapis.com/css?family=Tangerine&quot;&gt; 
  &lt;/head&gt;
</pre>
[/inline]
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
<p>Next, let's apply the font we chose from the Google Font Directory it to a class on our site!  We can do this in our master CSS stylesheet or in your head also (I'd recommend keeping your styles in the mastersheet).</p>
[inline]
<pre class="brush: plain;">
  &lt;head&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://fonts.googleapis.com/css?family=Tangerine&quot;&gt; 
    &lt;style&gt;
      .foo {
        font-family: 'Tangerine', serif;
        font-size: 48px;
      }
  &lt;/style&gt;
&lt;/head&gt;
</pre>
[/inline]
<p>Now with this implemented properly using the quick example shown above you will see some sweet Google font below this paragraph that's selectable and easy to implement.</p>
<p class="foo" style="margin-top:20px;line-height:1em;">Check me out!  This text is selectable and super easy to implement.  Thanks Google!</p>

<h3>Still Confused? One More Time</h3>
<p>Often times, things explained the first time don't make sense.  If you're still confused here's the jist</p>
<p><b>Step 1</b>: Add a stylesheet link requesting the fonts from Google to your website (preferably in the head).</p>
[inline]
<pre class="brush: plain;">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://fonts.googleapis.com/css?family=Font+Name&quot;&gt;
</pre>
[/inline]
<p><b>Step 2</b>: Style an element with the font you just requested in step 1.  By element I mean any CSS class or ID.</p>
[inline]
<pre class="brush: css;">
CSS selector {
  font-family: 'Font Name', serif;
}
</pre>
[/inline]
<p><b>Step 3</b>: There is no step 3! Just repeat step 2 by styling elements you have already on your website.</p>
<img class="alignnone size-full wp-image-1986" title="google-font-directory-logo" src="http://www.dlocc.com/articles/wp-content/uploads/2010/05/google-font-directory-logo.gif" alt="Google Font Directory Logo" width="264" height="40" />
<h2>Google's Font Directory</h2>
<p>Google's font directory, though still in beta and limited to about 20+ fonts, is going to be widely adopted by web designers in the near future.  Why?  Because Google has made a very intuitive, free, and simple to implement solution.  The fonts are free to use on any commercial and non-commercial web projects.</p>
<ul>

</ul>
<h2>Comparable Web Font Solutions</h2>
Google isn't the first to come out with an entirely open source font library.  Typekit and Fontdeck are doing the same thing: providing their users with a library of fonts that can be embedded on their websites.  The difference is these companies don't have the muscle of Google, are many times more difficult to implement, and may cost money (not open source).
<h3>Google Font Solution Final Thoughts</h3>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/google-unveils-the-google-font-directory-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is FTP CHMOD/chmod/Change Mode?!</title>
		<link>http://www.dlocc.com/articles/what-is-ftp-chmodchmodchange-mode/</link>
		<comments>http://www.dlocc.com/articles/what-is-ftp-chmodchmodchange-mode/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:41:23 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[change mode]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[ftp]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1796</guid>
		<description><![CDATA[Has someone asked you to chmod a directory or file to 666 or 664 (three-digit octal) and you have no clue what this means? Well, take a second to read this post and I'll explain a bit of what I know about Change Mode, Chmod and CHMOD (for your information these are all the same [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft size-full wp-image-1807" title="ftp-icon" src="http://www.dlocc.com/articles/wp-content/uploads/2010/04/ftp-icon.png" alt="FTP icon" width="128" height="128" /><p>Has someone asked you to chmod a directory or file to 666 or 664 (three-digit octal) and you have no clue what this means?  Well, take a second to read this post and I'll explain a bit of what I know about <strong>Change Mode</strong>, <strong>Chmod </strong>and <strong>CHMOD </strong>(for your information these are all the same thing).</p>

<p>To begin, let me say that this article will be discussing Change Mode in  terms of <strong>file and directory permissions</strong> using <em>file transfer  protocol</em> programs.  Personally, I use FireFTP and Core FTP as my  File Transfer Protocol Systems.  Both make is very easy to connect and  chmod any file or directory.  FireFTP is built-in to Firefox, as an  added extra benefit.</p>
<span id="more-1796"></span>
<h2>CHMOD in terms of FTP</h2>

<p>So I don't claim to be any genius with FTP, so I'm speaking here in terms of my own experience with Change Mode.  I'm a web designer and my experience with <em>Change Mode</em> has been through<strong> FTP</strong> programs.  Have you noticed when using your ftp program that each file/directory have multiple permission values.  This is because there are multiple ways to set permissions.</p>

<h3>File and Directory Permissions Symbolic Notation</h3>
<p><strong>R:</strong> Changes the modes of directories and files recursively <br  />
<strong>V: Verbose mode;</strong> lists all files as they are being processed</p>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/04/chmod_symbolic_notation-300x141.png" alt="CHMOD for some files" title="CHMOD Symbolic Notation Example" width="300" height="141" class="alignnone size-medium wp-image-1814" />
<p>Here are some common <strong>Symbolic notation</strong>:</p>

0 --- no permission<br  />
1 --x execute<br  />
2 -w- write<br  />
3 -wx write and execute<br  />
4 r-- read<br  />
5 r-x read and execute<br  />
6 rw- read and write<br  />
7 rwx read, write and execute<br  />

<strong> -rwxr-xr-x</strong> is 755.
<strong> -rw-rw-r--</strong> equal 664 in three-digit octal.
<strong>-r-x------</strong> is represented as 500
<h3>Octal numbers</h3>
<p><strong>CHMOD octal numbers</strong> are from what I understand another way of setting <em>read/write/execute</em> permissions on a file or directory.  I have seen them in both 3 and 4 digits. </p>

<h2>CHMOD a File or Directory</h2>
<p>Now that you have read my brief description into changing the permission of files using Change Mode (or CHMOD) it's time to fire up your favorite FTP program and try for yourself.</p>

To view this for yourself:<br></br>

1. Open your favorite <strong>File Transfer Protocol</strong> Program <br></br>
2. Connect to a web server<br></br>
3. Right-click on a document or directory that isn't important if you play around with the permissions (like a image)<br></br>
4. You will see numbers similar to the images below...<br></br>
<br></br>

<h3>CHMOD 664</h3>
<p><strong>-rw-r-r-</strong></p>
<img class="alignnone size-full wp-image-1798" title="chmod-664" src="http://www.dlocc.com/articles/wp-content/uploads/2010/03/chmod-664.jpg" alt="FTP chmod/change mode 664" width="496" height="512" />
<h3>CHMOD 755</h3>
<p><strong>-rwxr-xr-x-</strong></p>
<img class="alignnone size-full wp-image-1800" title="chmod-755-fireftp" src="http://www.dlocc.com/articles/wp-content/uploads/2010/03/chmod-755-fireftp.jpg" alt="FTP chmod Change Mode 755" width="496" height="512" />
<h3>CHMOD 666</h3>
<p><strong>-rw-rw-rw-</strong></p>
<img class="alignnone size-full wp-image-1799" title="chmod-666" src="http://www.dlocc.com/articles/wp-content/uploads/2010/03/chmod-666.jpg" alt="Change Mode 666 FTP " width="496" height="512" />]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/what-is-ftp-chmodchmodchange-mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Lavalamp Navigation Tutorial</title>
		<link>http://www.dlocc.com/articles/wordpress-lavalamp-navigation-tutorial/</link>
		<comments>http://www.dlocc.com/articles/wordpress-lavalamp-navigation-tutorial/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:11:51 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Easing]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lavalamp]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1723</guid>
		<description><![CDATA[Lavalamp is an awesome jQuery plug-in that makes really cool effects for WordPress-based menus and navigation links, and as a bonus it is very lightweight. It can be a bit tricky to implement in WordPress, but after you read this tutorial hopefully you'll be implementing it with ease. Follow along and let's get your site's [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/03/Lamp-steel-64.png" alt="jQuery, Lavalamp, Easing and WordPress" title="jQuery Lavalamp Icon" width="64" height="64" class="alignleft size-full wp-image-1735" />Lavalamp is an awesome jQuery plug-in that makes really cool effects for WordPress-based menus and navigation links, and as a bonus it is very lightweight.  It can be a bit tricky to implement in WordPress, but after you read this tutorial hopefully you'll be implementing it with ease.  Follow along and let's get your site's navigation using the jQuery lavalamp effect (super cool)!</p>
<span id="more-1723"></span>
<h2>jQuery, Lavalamp, Easing and WordPress</h2>
<p>Ok so if you haven't yet you're going to need to download all the appropriate scripts to make this work and have a WordPress site ready to work with.  I've provided download links at the bottom of this post for you or also you can get them here: <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery-1.4.1.min.js" title="jQuery Lavalamp Min Version">jQuery 1.4.1 min</a></b>, <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.lavalamp.min.js" title="jQuery Lavalamp Lavalamp">jQuery Lavalamp Plug-in</a></b>,  and <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.easing.min.js" title="jQuery Lavalamp Easing">jQuery Easing Plug-in</a></b>.  
<h2>Why Use Lavalamp jQuery Navigation?</h2>
<p>Because it's cool and increases user experience while still being very <b>SEO friendly</b> and <b>lightweight.</b> I personally use the lavalamp navigation on my portfolio website: <a href="http://www.devinwalker.net" title="jQuery Lavalamp on Devin Walker's Personal Website">Lavalamp Example 1</a>.  Also, I recently implemented it on another website I built and recently launched: <a href="http://www.socialachievement.com" title="jQuery Lavalamp on Social Achievement's Website">Lavalamp Example 2</a>.  As you can see the effect works well and is very user friendly.  Now, let's look in to how to make it work.</p>

<p>Here's the official website for the jQuery plug-in here: <a href="http://plugins.jquery.com/project/lavalamp2" title="jQuery Lavalamp on jQuery's Website">jQuery Lavalamp Plugin Page</a></p>

<p>To get started you must have WordPress installed on a web server and some knowledge of <b>web development</b>, <b>HTML</b>, and <b>jQuery</b>.  Ok, still ready? Now download the jQuery Easing Plug-in here: <a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.easing.min.js" title="jQuery Easing Plug-in">jQuery Easing Plug-in</a> and also download the jQuery Lavalamp Plug-in Here (min version): <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.lavalamp.min.js" title="jQuery Lavalamp Min Version">jQuery Lavalamp Plug-in</a></b></p>

<h3>Insert the following between the header tags</h3>
<p><em>Please note that my syntax highlighter has added some extra characters in the links.  You will want to change these links to either Google or your own hosted scripts anyways...</em></p>
[inline]
<pre class="brush: xml;">
&lt;!-- this is the code you're looking for here below for the lavalamp--&gt;
<script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery-1.4.1.min.js&quot;></script>
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/lavalamp.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
<script type=&quot;text/javascript&quot; src=&quot;path/to/jquerynav/jquery.easing.min.js&quot;></script>
<script type=&quot;text/javascript&quot; src=&quot;path/to/jquerynav/jquery.lavalamp.min.js&quot;></script>
&lt;!-- this script initiates the function change the #nav to your unordered list's ID --&gt;
<script type=&quot;text/javascript&quot;>
        $(function() {
            $(&quot;#nav&quot;).lavaLamp({ 
                fx: &quot;backout&quot;, 
                speed: 700,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });
</script>
</pre>
[/inline]
<p>First, you will need to <b>change in header the src='path/to'</b> to a link to the appropriate path .  The WordPress file to put this code in is title header.php and can typically be found in this location: mydomain/wp-content/themes/mytheme/header.php.</p>

<p>Further explanation: the second script after calling on jQuery is the Easing plug-in that makes this effect real smooth.  The last script initiates the lavalamp function.  You will need to change the '#nav' to your unordered list's ID if you are not using the same naming convention as I am.</p>
<h3>Connecting to the WordPress Navigation</h3>
[inline] <pre class="brush: jscript;">
&lt;ul class=&quot;lavaLampBottomStyle&quot; id=&quot;nav&quot;&gt;
	 &lt;li&gt;&lt;a href=&quot;http://www.devinwalker.net&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;                
         &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;http://www.devinwalker.net/about/&quot; title=&quot;About&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
         &lt;li class=&quot;page_item page-item-3&quot;&gt;&lt;a href=&quot;http://www.devinwalker.net/hire-me/&quot; title=&quot;Hire Me&quot;&gt;Hire Me&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre> [/inline] 
<p>Connecting this effect to a WordPress dynamic navigation is easy.  Simply go into the header.php file and provide your navigational unordered list the appropriate class="LavaLampBottomStyle" naming and you're all set after you call on the appropriate scripts as mentioned above.   Just an FYI, if you have a lot of other jQuery effects on page it could cause some problems with them... just experiment around with it.  I've experienced minor issues, but nothing that's too hard to figure out (no roadblocks).</p>
[inline]
<script language="javascript" type="text/javascript" src="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery-1.4.1.min.js"></script>
<link rel="stylesheet" href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/lavalamp.css" type="text/css" media="screen" />
    <script type="text/javascript" src="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.easing.min.js"></script>
    <script type="text/javascript" src="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.lavalamp.min.js"></script>
    <script type="text/javascript">
        $(function() {
            $("#nav").lavaLamp({
                fx: "backout", 
                speed: 700,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });
    </script>

<style>.main li{margin:0px;}</style>
<h3>Example Menu</h3>
<p>Below is an example of how this effect can be used anywhere on a site.  Here you can see I've implemented it directly into a WordPress page using inline code.  The links don't go anywhere for a reason, but they can easily be made to go anywhere you'd like.</p>

[/inline]
<ul id="nav" class="lavaLampBottomStyle" style="margin:40px 0 0;">
<li><a href="#" style="border-bottom:none;">Check</a></li>
<li><a href="#" style="border-bottom:none;">This</a></li>
<li><a href="#" style="border-bottom:none;">Out</a></li>
<li><a href="#" style="border-bottom:none;">Man</a></li>
</ul>

<p>As you can see this effect works well for site navigation, but can be used to create some other cool effects.  Please let me know if you have trouble with this tutorial, I've tried to explain everything to the best of my ability.  Leave a comment and <a href="http://www.dlocc.com/articles/feed/rss/" title="DLOCC RSS">subscribe to the RSS</a>!</p>

<h3>Resources for jQuery Scripts</h3>

<p>Download: <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery-1.4.1.min.js" title="jQuery Lavalamp Min Version">jQuery 1.4.1 min</a></b></p>

<p>Download: <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.lavalamp.min.js" title="jQuery Lavalamp Lavalamp">jQuery Lavalamp Plug-in</a></b></p>

<p>Download: <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.easing.min.js" title="jQuery Lavalamp Easing">jQuery Easing Plug-in</a></b></p>

<p>Download: <b><a href="http://www.devinwalker.net/wp-content/themes/devinwalker/jquerynav/jquery.lavalamp.min.js" title="jQuery Lavalamp Lavalamp">jQuery Lavalamp Plug-in</a></b></p>

]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/wordpress-lavalamp-navigation-tutorial/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>15 High School Websites with Nice Designs</title>
		<link>http://www.dlocc.com/articles/15-high-school-websites-with-nice-designs/</link>
		<comments>http://www.dlocc.com/articles/15-high-school-websites-with-nice-designs/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 08:07:48 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1598</guid>
		<description><![CDATA[Hey there everyone, I love looking at lists of nice websites and realized that I never have written an article on that exact topic. So I decided to rate some High School websites since it's a niche and perhaps could inspire some younger web designers. Do you think your high school's website should be included [...]]]></description>
			<content:encoded><![CDATA[<p>Hey there everyone, I love looking at lists of nice websites and realized that I never have written an article on that exact topic.  So I decided to rate some High School websites since it's a niche and perhaps could inspire some younger web designers.  Do you think your high school's website should be included on this list? <a title="Contact DLOCC!" href="http://www.dlocc.com/contact/">Contact me</a> and be sure to include a hyperlink!M</p>
<p>Trust me, finding website for this list wasn't that easy... if you've looked at many high school websites you'll know what I mean.  They all seem to have been made in 1995, except the ones below (plus many more, I'm sure).  Also, I notice many private school's websites tend to be nicer since they are actually marketing the schools.  I thought about excluding those websites but decided not to.</p>
<br  /><a href="http://www.dlocc.com/articles/15-high-school-websites-with-nice-designs/" title="15 High School Websites with Nice Designs"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/topHighSchools.png" alt="Top High School Websites" title="topHighSchools" width="524" height="140" class="alignnone size-full wp-image-1714" /></a>
<br  />
<span id="more-1598"></span>
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Red Lion Christian Academy" href="http://www.redlionca.org/">Red Lion Christian Academy</a></h3>
<br  />
<p style="text-align: center;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/redLionChristianAcademy.png" alt="Red Lion Christian Academy Website" title="redLionChristianAcademy" width="524" height="274" class="alignnone size-full wp-image-1695" /></p>
<p>This School's website shows a nice example of how to use navigational elements properly and I'm impressed they have a favicon.  Don't disregard the favicon!  I love those things :]  Anyways, they mix serif and sans-serif font typography which is a no no in my book, but the site still looks pretty sweet compared to the rest of the high school websites I've been looking at.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Cathedral High School - Indianapolis" href="http://www.cathedral-irish.org/">Cathedral High School - Indianapolis</a></h3>
<p style="text-align: center;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/CathedralHighSchool.png" alt="Cathedral High School" title="CathedralHighSchool" width="524" height="274" class="alignnone size-full wp-image-1708" /></p>
<p>The textures used on this high school's website layout is what caught my eye.  The navigation and shadows look great and the rotating images keep the site interesting.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Howe Military School" href="http://www.howemilitary.com/wp/">Howe Military School</a></h3>
<p style="text-align: center;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/HoweMilitarySchool.png" alt="Howe Military School" title="HoweMilitarySchool" width="524" height="274" class="alignnone size-full wp-image-1710" /></p>
<p>They used Georgia? Oh wow, this get's put in my showcase... I love Georgia font if you can't tell.  Besides that, the website looks great and not to mention they are running on WordPress it looks like... I <3 wordpress.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Red Lion Christian Academy" href="http://www.dematha.org/">DeMatha Catholic High School</a></h3>
<p style="text-align: center;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/DeMathaCatholicHighSchool.png" alt="DeMatha Catholic High School Website" title="DeMathaCatholicHighSchool" width="524" height="274" class="alignnone size-full wp-image-1706" /></p>
<p>Wow, this site is great looking.  It's got a more modern layout and the look-and-feel of the website flows when you actually get in and click around.  They offer a search option, which many of these other sites do not.  Search is good.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Albuquerque Academy" href="http://www.aa.edu/">Albuquerque Academy</a></h3>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/albuquerqueAcademy.png" alt="Albuquerque Academy" title="albuquerqueAcademy" width="524" height="274" class="alignnone size-full wp-image-1699" />
<p>I love the background of this website.  Maybe it's just me, but any website with a nice scenic background, perhaps of the sky or mountains like this one... seems to create a nice calming feeling that makes me want to dive deeper into the website.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Adlai E. Steverson High School" href="http://highschoolhomepages.student.com/">Adlai E. Steverson High School</a></h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1657" title="StevensonHigh" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/StevensonHigh.png" alt="Stevenson High School Website" width="524" height="274" /></p>
This website has a nice jQuery slide show featured on the front page with captions.  The background has nice gradients and the navigation is very user-friendly.

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="St. Andrews Episcopal School" href="http://www.saes.org/academics">St. Andrews Episcopal School</a></h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1656" title="stAndrewsHighSchool" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/stAndrewsHighSchool.png" alt="St. Andrews Episcopal High School Website" width="523" height="274" /></p>
Nice red color scheme with cool logo integration and professional look-and-feel.  Very clear navigation probably makes it easy for parents and students to get to the information their looking for... and nice rollover effects make it that much more appealing.

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Baltimore Lutheran School" href="http://www.baltimorelutheran.org/">Baltimore Lutheran School</a></h3>
<p style="text-align: center;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/BaltimoreLutheranSchool.png" alt="Baltimore Lutheran School" title="BaltimoreLutheranSchool" width="523" height="274" class="alignnone size-full wp-image-1704" /></p>
<p>This website's nice Flash Accordion as the main emphasis of work well and the gradient background is a good subtle backdrop.  The website is designed nicely and the navigational elements are in the expected places.</p>
<br  />

<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="North High School" href="http://www.northhighschool.org/">North High School | The Saxons</a></h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1654" title="northSaxons" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/northSaxons.png" alt="North High School Website" width="524" height="274" /></p>
This site is built on a Joomla platform, and more power to them.  Looks like they heavily customized the theme, I can see places where the layout needs some work... but overall it looks pretty cool.  Props for using a jQuery slider.

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Rancho Bernardo High School" href="http://www.powayusd.com/pusdrbhs/">Rancho Bernardo High School</a></h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1655" title="RBHS" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/RBHS.png" alt="Rancho Bernardo High School" width="523" height="274" /></p>
Ok, I admit.  I am a bit biased when I post this website, because indeed it isn't the nicest site of the bunch... but this is the very first website I worked on as a student at RB.  Back then it was a table-based layout and there was no Flash on the site.  Now I can see they are using a Flash header, and to tell you the truth I'm not a fan.  First, it takes too long to load and I'm just moving away from using Flash as a designer.

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Mt. Carmel High School" href="http://www.mtcarmelhs.com/index.php">Mt. Carmel High School</a></h3>
<img class="aligncenter size-full wp-image-1653" title="mountCarmelHighSchool" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/mountCarmelHighSchool.png" alt="Mt. Carmel High School" width="537" height="282" />

Mount Carmel has a nice site and the color scheme suits their mascot, the sun devils.  They have Flash elements, nice textured content background, decent looking footer, and a user friendly layout.

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a href="http://morriscatholic.org/home.html" title="Morris Knolls High School">Morris Knolls High School</a></h3>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/morrisHighSchool.png" alt="Morris High School" title="morrisHighSchool" width="537" height="282" class="alignnone size-full wp-image-1669" />
<p>I included this website because I like it's simple layout.  Although not beautiful per say, it is a nice efficient layout and deserves it's place among this list.</p>

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a href="http://www.mcps.k12.mt.us/portal/hhs/Home/tabid/1157/Default.aspx" title="Hell Gate High School">Hell Gate High School</a></h3>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/hellGate.png" alt="Hell Gate High School" title="hellGate" width="537" height="282" class="alignnone size-full wp-image-1668" />
<p>This website has a nice color scheme and the header features a decent enough graphic of some mountains with trees and the school in the middle.  Now, while it's nothing to go nuts about... it's subtle, efficient, positioned properly on the site.</p>
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a href="http://www.antlers.k12.ok.us/" title="Hawthorn Public Schools Website">Hawthorn Public Schools</a></h3>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/HawthornPublicSchools.png" alt="Hawthorn Public Schools" title="HawthornPublicSchools" width="537" height="282" class="alignnone size-full wp-image-1673" />
<p>The lesson of the day is: Joomla Site's work for schools.  As long as they are aware that they must keep on top of security updates and new releases.  Joomla allows schools like Hawthorn and others in this showcase to create very attractive and accessible websites in less time than other solutions.</p>

<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a href="http://www.onwravens.net/" title="Olathe Northwest High School">Olathe Northwest High School</a></h3>
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/olatheHighSchool.png" alt="Olathe Northwest High School" title="olatheHighSchool" width="537" height="282" class="alignnone size-full wp-image-1697" />
</p>Olathe proves that some high school can and do use Flash properly in their websites.  Not to overuse it, but to incorporate it elegantly for it's purpose into the website's design.  I like how you rollover the navigation on the left the images turn from black-and-white to color... I've always been a fan of that and for that they win points and a spot on this showcase.</p>
<p><b>Please note:</b> I did not include school websites that use third party solutions.</p>
<p>High School Website Directory: http://highschoolhomepages.student.com/</p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/15-high-school-websites-with-nice-designs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top-10 Websites to Go To for Web Design Inspiration</title>
		<link>http://www.dlocc.com/articles/top-10-websites-to-goto-for-web-desig-inspiration/</link>
		<comments>http://www.dlocc.com/articles/top-10-websites-to-goto-for-web-desig-inspiration/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 08:37:55 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Design Inpsiration]]></category>
		<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1604</guid>
		<description><![CDATA[As web designers, we often seek inspiration from what others have done before us.  Not to leech too much off their design, but to inspire our work and get us started on the right path.  Here I will share with you my top go to websites for beautiful website listings with great showcases and more. [...]]]></description>
			<content:encoded><![CDATA[As web designers, we often seek inspiration from what others have done before us.  Not to leech too much off their design, but to <em>inspire</em> our work and get us started on the right path.  Here I will share with you my top go to websites for beautiful website listings with great showcases and more.

<img class="aligncenter size-full wp-image-1611" title="inspire" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/inspire.png" alt="Websites to Inpire Your Web Design" width="404" height="233" />
<span id="more-1604"></span>

If you want to take your inspiration to the next level, look at the source code!  I like to go further into websites using <a title="Firebug" href="http://getfirebug.com/">Firebug</a> to see just how a designer coded the site.  It's a useful tool for any web designer.  Enjoy the list!
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="CSS Line" href="http://www.cssline.com/">CSS Line</a></h3>
<p style="text-align: center;"><a href="http://www.cssline.com"><img class="aligncenter size-full wp-image-1608" title="cssLine" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/cssLine.png" alt="CSS Line" width="423" height="219" /></a></p>
Recently I stumbled across this site and what a gold mine of inspiration it is!  I like how when you scroll down the page it just keeps loading new websites for you to look at.  Also, it allows you to submit your own website to be rated.  My only request is that for the ability to search the sites and if there was better categorization.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Smashing Magazine" href="http://www.smashingmagazine.com/">Smashing Magazine</a></h3>
<p style="text-align: center;"><a href="http://www.smashingmagazine.com/"><img class="aligncenter size-full wp-image-1614" title="smashingMagazine" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/smashingMagazine.png" alt="Smashing Magazine" width="470" height="243" /></a></p>
Smashing Magazine is a very popular website for web designers.  Here is their <a title="Smashing Magazine's Inpiration" href="http://www.smashingmagazine.com/category/inspiration/">Inpiration category</a> that provides some very good web design lists.

On a side note, I ordered their book... "<a href="http://www.smashingmagazine.com/2009/12/03/smashing-book-its-out-now/">The Smashing Book</a>" and was super hyped for it to come in the mail.  It contains some very good information, but it's kind of short and I thought the general size of the book itself would be twice as large for the $30 dollars you have to pay for it.  Still, it's not a bad book... it's a valiant first installment of many to come I'm sure.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Six Revisions" href="http://www.sixrevisions.com/">Six Revisions</a></h3>
<p style="text-align: center;"><a href="http://www.sixrevisions.com/"><img class="aligncenter size-full wp-image-1613" title="sixRevisions" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/sixRevisions.png" alt="Six Revisions" width="529" height="274" /></a></p>
Six Revisions is part of the <a title="The Smashing Network" href="http://www.smashingmagazine.com/the-smashing-network/">Smashing Network</a> and like the others, provides excellent lists for inspiration.  Here's a particular excellent post on Six Revisions entitled "<a href="http://sixrevisions.com/web_design/inspirational-tips-and-tools-from-a-designer/">Inspirational Tips and Tools from a Designer</a>" that will give you an idea of how well the Six Revisions' authors can write.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Hong Kiat" href="http://www.hongkiat.com/">Hong Kiat</a></h3>
<p style="text-align: center;"><a href="http://www.hongkiat.com/"><img class="aligncenter size-full wp-image-1610" title="hongKiat" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/hongKiat.png" alt="Hong Kiat" width="529" height="274" /></a></p>
I'm not sure what "Hong Kiat" means, whether it's a proper name or company, but who cares? It's a great site with a ton of resources! <a title="Hong Kiat's Inspiration Category" href="http://www.hongkiat.com/blog/category/inspiration/">Hong Kiat's Inspiration Category</a> provides some of the most unique web and graphic showcases on the Internet.  The site is definitely worth checking out.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Vandelay Design" href="http://www.vandelaydesign.com/blog/">Vandelay Design</a></h3>
<p style="text-align: center;"><a href="http://www.vandelaydesign.com/blog/"><img class="aligncenter size-full wp-image-1616" title="vandelayBlog" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/vandelayBlog.png" alt="Vandelay Design Blog" width="529" height="274" /></a></p>
Vandelay Design blog is packed to the brim with website showcases.  For example, there are multiple installments for each showcase such as: <a title="Minimalistic Web Design I" href="http://vandelaydesign.com/blog/design/minimalistic-web-design/">Minimalistic Web Design I</a><a title="Minimalistic Web Design II" href="http://vandelaydesign.com/blog/design/minimalistic-web-designs/">Minimalistic Web Design II</a> and <a title="Minimalistic Web Design III" href="http://vandelaydesign.com/blog/galleries/minimal-websites-designs/">Minimalistic Web Design III</a>

<em><strong>George Costanza</strong></em>: [George rushes into Jerry's apartment] Did anybody call here asking for Vandelay Industries?
<em><strong>Jerry:</strong></em> No, what happened to you?
<em><strong>George Costanza:</strong></em> All right, listen closely, I was at the unemployment office and I told them I was very close to getting a job with Vandelay Industries, and I gave them your phone number. So now, when the phone rings, you have to answer "Vandelay Industries".
<em><strong>Jerry:</strong></em> I'm Vandelay Industries?
<em><strong>George Costanza:</strong></em> Right.

Sorry I couldn't resist, I love <a title="Seinfeld Inspiration" href="http://www.imdb.com/title/tt0098904/">Seinfeld</a> and that's what I think of every time I type in the URL. :]
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Noupe" href="http://www.noupe.com/">Noupe</a></h3>
<p style="text-align: center;"><a href="http://www.noupe.com"><img class="aligncenter size-full wp-image-1612" title="noupe" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/noupe.png" alt="Noupe" width="529" height="274" /></a></p>
Wow, this site's design is great. I drew my inspiration from the way the transparency looks... but <a href="http://www.noupe.com">Noupe</a>'s content is excellent also.  Their authors are very talented and distinguished on the Interwebs.  <a href="http://www.noupe.com">Check em' out</a>.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="24 Ways" href="http://www.24ways.org/">24 Ways</a></h3>
<p style="text-align: center;"><a href="http://www.24ways.org/"><img class="aligncenter size-full wp-image-1607" title="24-ways" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/24-ways.png" alt="24-Ways" width="529" height="274" /></a></p>
24-Ways is a funny website because it only posts 24 articles every December.  While these are great articles how about 24-articles every month?! Is this asking too much?  Well, I included this site anyways because the <a title="24-Ways Authors" href="http://24ways.org/authors">Authors</a> page links you to excellent 24-Ways' excellent developers and designers' websites.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="CSS Tricks" href="http://www.csstricks.com/">CSS Tricks</a></h3>
<p style="text-align: center;"><a href="http://www.css-tricks.com"><img class="aligncenter size-full wp-image-1609" title="cssTricks" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/cssTricks.png" alt="CSS Tricks" width="529" height="274" /></a></p>
<a title="Chris Coyier" href="http://www.chriscoyier.net">Chris Coyier</a> is a well known web designer, speaker, blogger and internet entrepreneur.  His website is awesome and I draw a lot of the inspiration on <a title="DLOCC" href="http://www.dlocc.com">DLOCC</a> from this website.

He has a ton of <a title="CSS-Tricks Freebies" href="http://css-tricks.com/downloads/">Freebies</a>, not so many top-sites but his sense of style is excellent.  Looking at the way he designed his site is truly inspiring.  He uses one PNG for all the buttons and I think this is just a great idea.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Specky Boy" href="http://speckyboy.com/">Specky Boy</a></h3>
<p style="text-align: center;"><a href="http://www.speckyboy.com"><img class="aligncenter size-full wp-image-1615" title="speckyBoy" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/speckyBoy.png" alt="Specky Boy" width="529" height="274" /></a></p>
I just recently took a more in depth look at <a title="Specky Boy" href="http://www.speckyboy.com">Specky Boy</a> the other day and I must say... it looks like <a title="facebook" href="http://www.facebook.com">Facebook</a> doesn't it?  Well, we are really analyzing the content and whether it can inspire us or not.  So, upon further investigation I realized this too was another worthy site of my collection.  For instance,  Specky Boy's <a href="http://speckyboy.com/category/inspiration/">Inspiration Category</a> provides weekly installment's of the popular "<a href="http://speckyboy.com/category/weekly-web-design-inspiration/">Weekly Web Design and Development Inspiration</a>" Post.
<br  />
<h3 style="font-family:georgia,serif;font-size:24px;font-style:italic;"><a title="Web Designer Depot" href="http://www.webdesignerdepot.com/">Web Designer Depot</a></h3>
<p style="text-align: center;"><a href="http://www.webdesignerdepot.com"><img class="aligncenter size-full wp-image-1617" title="webDesignerDepot" src="http://www.dlocc.com/articles/wp-content/uploads/2010/02/webDesignerDepot.png" alt="Web Designer Depot" width="529" height="274" /></a></p>
To finish off our list we have the <a title="Web Designer Depot" href="http://www.webdesignerdepot.com">Web Designer Depot</a>. Here we find ourselves at yet <em>another</em> Smashing Network website, but of course this is not a bad thing.  I just not realized I should have provided some more non-Smashing websites.  Hmm, sounds like a good upcoming post.  Anyways, to wrap it up the Web Designer Depot is, like the others, an excellent source of inspiration for starting any new design project.  Here's a post I like: <a title="Minimalist Web Design - When Loss is More" href="http://www.webdesignerdepot.com/2009/12/minimalist-web-design-when-less-is-more/">Minimalist Web Design - When Loss is More</a>

If you like this post, check out the <a title="The Smashing Network" href="http://www.smashingmagazine.com/the-smashing-network/">Smashing Network</a>... they're great.  Hopefully one day this website will appear on there! :]]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/top-10-websites-to-goto-for-web-desig-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern CSS Typography and Font Styling Examples</title>
		<link>http://www.dlocc.com/articles/modern-css-typography-and-font-styling-examples/</link>
		<comments>http://www.dlocc.com/articles/modern-css-typography-and-font-styling-examples/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 00:35:27 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=1134</guid>
		<description><![CDATA[CSS&#38; Design Check out my new article Modern Web Forn Options for Web Designers for my latest rundown of web font solutions Attractive CSS typography and styled fonts can add a lot to a user's experience on your website. Think of your website's typography as the foundation upon which your design is built. Typically, users [...]]]></description>
			<content:encoded><![CDATA[<div style="width:55px;height:45px;position:relative;line-height:30px;margin:35px 35px 35px 20px;padding-top:5px;font-size:75px;position:relative;font-family:baskerville,'palatino linotype',georgia,serif;float:left;font-style:italic;background-color:#EEEEEE;border:7px solid #DEDEDE;color:#DEDEDE;"><span style="position:absolute;color:#333;font-size:45px;top:-35px;color:#555;font-weight:bold;left:-30px;">CSS</span>&amp;
<span style="font-weight:bold;color:#555;font-size:34px;position:absolute;bottom:-15px;left:-15px;">Design</span></div>
<p style="font-weight:bold;">Check out my new article <a href="http://www.dlocc.com/articles/modern-web-font-options-for-web-designers/" title="Modern Web Forn Options for Web Designers">Modern Web Forn Options for Web Designers</a> for my latest rundown of web font solutions</p>
<p>Attractive CSS typography and styled fonts can add a lot to a user's experience on your website.  Think of your website's typography as the foundation upon which your design is built.  Typically, users will look at your headings first and actually read and interpret the text.  Please enjoy these examples of how CSS typography can be used effectively on your website, blog or project.</p>
<span id="more-1134"></span>
<a href="http://www.mozilla.com/en-US/firefox/upgrade.html?from=getfirefox"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/01/Firefox-32.png" alt="" title="Firefox-32" width="32" height="32" class="alignright size-full wp-image-1511" /></a><p class="alignright"><strong>Note:</strong> Best viewed in <a href="http://www.mozilla.com/en-US/firefox/upgrade.html?from=getfirefox" title="Download Firefox">FireFox 3.5+</a></p>
<p><br  /></p>
<div class="top_10"><span><em>1</em> Mozilla.org, You're Lookin' Good!</span></div>
<div style="width:525px;height:150px;background:url(http://www.dlocc.com/articles/wp-content/uploads/2010/01/Mozilla-Background.png) no-repeat top left;">
<p style="color:#A80C1E;display:block;font-size:85px;font-weight:normal;letter-spacing:-3.5px;line-height:1em;font-family:Georgia,serif;margin:10px 0 0px 50px;padding:10px 0 0;">We believe</p><p style="font-family:Georgia,serif;color:#666666;font-size:30px;line-height:1em;margin:0 0 0 60px;">that the internet should be public, open and accessible.</p>
</div>
<br  />
<p>Mozilla makes some great software, and they can design a mean website too. Check out this site where I got this typography from: <a href="http://mozilla.org">http://www.mozilla.org</a>.  It's pretty cool looking I'd say.  Here's the link to the full background image: <a href="http://www.mozilla.org/images/template/screen/bg_body_0.jpg">HERE</a>.</p>
HTML
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;div id=&quot;container&quot;&gt;
&lt;h1&gt;&lt;strong&gt;We believe&lt;/strong&gt;that the internet should be public, open and accessible.&lt;/h1&gt;
&lt;/div&gt;
</pre>
[/inline]

CSS
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
#container {
     background:url(http://www.dlocc.com/articles/wp-content/uploads/2010/01/Mozilla-Background.png) no-repeat top left;    
}

h1 {
     font-family:Georgia,serif;
     color:#666666;
     font-size:30px;
     line-height:1em; 
     margin:0 0 0 60px;
}

h1 strong{
     color:#A80C1E;
     display:block;
     font-size:85px;
     font-weight:normal;
     letter-spacing:-3.5px;
     line-height:1em;
}
</pre>
[/inline]

<p><br  /></p>

<div class="top_10"><span><em>2</em> Elegant use of Uppercase letters</span></div>
<div style="width:625px;height:150px;background:url(http://www.dlocc.com/articles/wp-content/uploads/2010/01/firefoxbg.png) no-repeat top left;display:table-cell;vertical-align:middle;">
<p style="font-family:'Helvetica Neue',Arial,sans-serif;font-size:15px;font-weight:bold;margin:10px 0px 10px 20px;letter-spacing:3px;">Introducing</p>
<p style="color:#589017;font-family:Baskerville,Times,'Times New Roman',serif;font-size:75px;font-variant:small-caps;text-align:center;font-weight:bold;padding:15px 0px 15px 0px;"><em>Modern Style</em></p>
<p style="color:#3E2F2F;font-family:georgia,serif;font-size:18px;font-style:italic;letter-spacing:0;line-height:1.429em;padding:0;text-align:center;">
<span style="font-size:25px;font-weight:100;">W</span>e know CSS
<strong style="color:#3E2F2F;font-family:baskerville,'palatino linotype',georgia,serif;font-size:25px;font-weight:300;">&</strong>
Practice Modern
<em>
Web Design Since
<span style="font-size:20px;font-weight:100;">1997</span>
</em>
</p>
</div>
<p><br  /></p>
<p>The example above shows how to effectively use CSS to create a large heading with an elegant italic subheading. The fonts used are Baskerville, Helvetica, and Georgia as you can see once the syntax is expanded below.</p>
HTML
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;span class=&quot;introduction&quot;&gt;Introducting&lt;/span&gt;
&lt;h1&gt;&lt;em&gt;Modern Web Design&lt;/em&gt;&lt;/h1&gt;
&lt;h2&gt;&lt;span&gt;W&lt;/span&gt;e know CSS &lt;strong&gt;&amp;amp;&lt;/strong&gt; Practice Modern &lt;em&gt;Web Design Since &lt;span&gt;2001&lt;/span&gt;&lt;/em&gt;&lt;/h2&gt;
</pre>
[/inline]


CSS
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
h1 {  
	font-family:Baskerville,Times,'Times New Roman',serif;
	font-size:75px; 
	color:#589017;
	font-variant:small-caps;
	text-align:center;
	font-weight:bold;
	padding:15px 0px 15px 0px; /* Tweak this to your liking */
}

h2 {
	font-family:georgia,serif;font-size:18px;
	font-style:italic;
	color:#3E2F2F;
	letter-spacing:0;
	line-height:1.429em;
	padding:0;
	text-align:center;
}

h2 span {
	font-family:baskerville,'palatino linotype',georgia,serif;
        font-size:25px;
	font-weight:100;


}

.introduction {
	font-family:'Helvetica Neue',Arial,sans-serif;font-size:15px;
	font-weight:bold;
	margin:10px 0px 10px 20px; /* Tweak this to your liking (also add padding) */
	letter-spacing:3px;
}

</pre>
[/inline]

<p><br  /></p>

<div class="top_10"><span><em>3</em> Make your blog postings shine with CSS</span></div>
<div style="border: 1px solid #000000; background: #ffffff none repeat scroll 0% 0%; width: 625px; height: 150px; display: table-cell; vertical-align: middle;">
<p style="font-family: georgia,serif; color: #755c44; font-size: 20px; letter-spacing: 0.1em; line-height: 1.5em; text-transform: uppercase; margin: 5px 10px 0px 10px; "><span style="color:#8F7C47;font-style:italic;letter-spacing:0.05em;text-transform:none;font-size:20px;">The</span> Man, <span style="color:#8F7C47;font-style:italic;letter-spacing:0.05em;text-transform:none;font-size:20px;">The</span> Myth, <span style="color:#8F7C47;font-style:italic;letter-spacing:0.05em;text-transform:none;font-size:20px;">The</span> Legend</p>
<p style="border-color:#695C44;border-bottom:1px dashed;margin:0px 10px 0px 10px;color:#666666;font-family:Tahoma;font-size:10px;font-variant:normal;font-weight:lighter;letter-spacing:0.3em;text-transform:uppercase;padding-left:5px;">By: Devin Walker | Posted: April 20th, 2010</p>
<p style="font-family: georgia,serif; font-size: 12px; line-height: 20px; margin:10px;letter-spacing:1px;">Ever want to create an amazing blog that makes your visitors drop their jaw in awe?  Well with a little bit of CSS magic this can become a reality.  Getting visitors is another thing, you'll figure that part out... just keep posting good content!</p>
</div>
<p></p>
<p>Is your wordpress blog in need of some sprucing up?  Here we have an example of how we can make blog postings look that much better all thanks to cascading style sheets.  Remember, these are links so they will require different syntax for styling links and hovers.  Check out what I mean by viewing the code below.</p>
<p>HTML</p>
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;h3&gt;&lt;em&gt;The&lt;/em&gt; Man, &lt;em&gt;The&lt;/em&gt; Myth, &lt;em&gt;The&lt;/em&gt; Legend&lt;/h3&gt;
&lt;p class=&quot;authorDate&quot;&gt;By: Devin Walker | Posted: April 20th, 2010&lt;/p&gt;
&lt;p class=&quot;content&quot;&gt;Ever want to create an amazing blog that makes your visitors drop their jaw in awe?  Well with a little bit of CSS magic this can become a reality.  Getting visitors is another thing, you'll figure that part out... just keep posting good content!&lt;/p&gt;
</pre>
[/inline]


CSS
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
h3 {  
	font-family: georgia,serif; 
	color: #755c44; 
	font-size: 20px; 
	letter-spacing: 0.1em; 
	line-height: 1.5em; 
	text-transform: uppercase; 
	margin: 10px;
}

h3 em{
	color:#8F7C47;
	letter-spacing:0.05em;
	text-transform:none;
	font-size:20px;
}

.authorDate {
	border-color:#695C44;
	border-bottom:1px dashed;
	margin:0px 10px 0px 10px;
	padding-left:5px;
	color:#666666;
	font-family:Tahoma;
	font-size:10px;
	font-variant:normal;
	font-weight:lighter;
	letter-spacing:3px;
	text-transform:uppercase;
}

.content {
	font-family: georgia,serif;
	font-size: 12px; 
	line-height: 20px; 
	letter-spacing:1px;
}
</pre>
[/inline]
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* DLOCC CONTENT NEW 468x60, created 10/12/09 */
google_ad_slot = "5878248027";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
<p><br  /></p>

<div class="top_10"><span><em>4</em> CNN-style typography</span></div>
<div style="border: 7px solid #EAEAEA; background:#FFF; width: 540px;position:relative;">
<p style="font-family:arial;font-size:30px;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:bold;line-height:33px;margin:15px 0 0 10px;color:#000;">Upcoming IE9 Incompatible with CSS3</p>
<p style="font-family:arial;font-size:11px;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:normal;line-height:14px;padding:1px 0px 1px 15px;">January 4, 2010 2:29 p.m. EST</p>
<p style="padding:0px 15px 0px 15px;font-family:arial;color:#000;font-size:14px;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:normal;line-height:19px;margin-bottom:7px;"><strong>Houston, Texas</strong> -- Love or hate Microsoft, it seems the newly release beta version of IE9 will not be compatible with the latest version of CSS.  Web designers are scrambling to gather enough eggs to cover the entire Microsoft headquarters.</p>
</div>
<p></p>
<p>CNN is the go to website for millions of people.  They must be doing something right as far as typography is concerned.  The designers have used Arial at various pixel sizes. </p>
<p></p>
<p>HTML</p>
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;h1&gt;Upcoming IE9 Incompatible with CSS3&lt;/h1&gt;
&lt;div class=&quot;dateTime&quot;&gt;January 4, 2010 2:29 p.m. EST&lt;/div&gt;
&lt;div class=&quot;content&quot;&gt;&lt;strong&gt;Houston, Texas&lt;/strong&gt; -- Love or hate Microsoft, it seems the newly release beta version of IE9 will not be compatible with the latest version of CSS. Web designers are scrambling to gather enough eggs to cover the entire Microsoft headquarters.&lt;/div&gt;
</pre>
[/inline]
CSS
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
h1 {
     font-family:arial;
     color:#000;
     font-size:14px;
     font-size-adjust:none;
     font-stretch:normal;
     font-style:normal;
     font-variant:normal;
     font-weight:normal;  
     line-height:19px;
     margin-bottom:7px;
}  

.dateTime {
     font-family:arial;
     font-size:11px;
     font-size-adjust:none;
     font-stretch:normal;
     font-style:normal;
     font-variant:normal;
     font-weight:normal;
     line-height:14px;
     padding:1px 0px 1px 15px;
}

.content {
     font-family:arial;
     color:#000;
     font-size:14px;
     font-size-adjust:none;
     font-stretch:normal;
     font-style:normal;
     font-variant:normal;
     font-weight:normal;
     line-height:19px;
     margin-bottom:7px;
     padding:0px 15px 0px 15px;
}

</pre>
[/inline]
<p><br  /></p>

<div class="top_10"><span><em>5</em> Nice Top-10 Lists with CSS Box Shadows</span></div>

<span style="font-family:Georgia,serif;font-size:35px;font-style:italic;font-weight:normal;letter-spacing: 2.5px;color:#2D555F;">Top-10 Web Tools</span>
<p></p>
<div class="boxshadow" style="background-color:#EEEEEE;border:7px solid #DEDEDE;color:#DEDEDE;margin:10px 0 20px;padding:5px 10px 10px;position:relative;"><p style="color:#333333;
font-family:Georgia,serif;font-size:25.5px;margin:10px 0px 5px 0px;font-style:italic;">Adobe Dreamweaver CS4</p><p style="color:#666666;font-family:Georgia,serif;font-size:14.5px;padding:10px 0;">As a web designer you'll need a good editor, I prefer Dreamweaver CS4.  I think it could start up a bit faster, but other than that it's great!</p><span style="bottom:25px;color:#DEDEDE;font-family:Georgia,serif;font-size:75px;position:absolute;right:0;bottom:20px;">1</span></div>


<div class="boxshadow" style="background-color:#EEEEEE;border:7px solid #DEDEDE;color:#DEDEDE;margin:10px 0 20px;padding:5px 10px 10px;position:relative;"><p style="color:#333333;
font-family:Georgia,serif;font-size:25.5px;margin:10px 0px 5px 0px;font-style:italic;">Adobe Photoshop CS4</p><p style="color:#666666;font-family:Georgia,serif;font-size:14.5px;padding:10px 0;">While many may not consider this a web tool, I do.  Why?  Because without graphics, you don't have much of a website.  All good web designers should have at least some skills with Photoshop.</p><span style="bottom:25px;color:#DEDEDE;font-family:Georgia,serif;font-size:75px;position:absolute;right:0;bottom:20px;">2</span></div>


<div class="boxshadow" style="background-color:#EEEEEE;border:7px solid #DEDEDE;color:#DEDEDE;margin:10px 0 20px;padding:5px 10px 10px;position:relative;"><p style="color:#333333;
font-family:Georgia,serif;font-size:25.5px;margin:10px 0px 5px 0px;font-style:italic;">Core FTP</p><p style="color:#666666;font-family:Georgia,serif;font-size:14.5px;padding:10px 0;">This is the best FTP tool IMO!  Learn it, use it, abuse it.  I <3 Core FTP because it is free and very reliable.  Do you?</p><span style="bottom:25px;color:#DEDEDE;font-family:Georgia,serif;font-size:75px;position:absolute;right:0;bottom:20px;">3</span></div>
<p></p>
<p>Top-10 lists are very popular and are very enjoyable to write IMO.  Site visitors want to see lists with images that stand out and are unique.  Bland lists are boring.   Style your top lists using something similar to the above example using the code below.  Check out my post on using a box shadow hover effect for Mozilla firefox using CSS!  Coming soon.</p>
<p></p>
<p>HTML</p>
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;h1&gt;Top-10 Web Tools of 2009&lt;/h1&gt;
&lt;div class=&quot;top10&quot;&gt;
&lt;h2&gt;Adobe Dreamweaver CS4&lt;/h2&gt;
&lt;p&gt;I think Dreamweaver is cool because blah blah blah...&lt;/p&gt;
&lt;span&gt;1&lt;/span&gt;
&lt;/div&gt;

</pre>
[/inline]

<p></p>
<p>CSS</p>
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
.top10 {
      background-color:#FFF7EF;
      border:7px solid #FEE8D1;
      color:#666666;
      margin:10px 0 20px; /*may change */
      padding:5px 10px 30px;  /*may change */
      position:relative;
}

.top10 h2{
     color:#333333;
     font-family:Georgia,serif;
     font-size:25.5px;
     font-style:italic;
     margin:10px 0px 5px 0px;
}

.top10 p {
     color:#666666;
     font-family:Georgia,serif;
     font-size:14.5px;
     padding:10px 0;
}

.top10 span {
     bottom:25px;
     color:#DEDEDE;
     font-size:55px;
     position:absolute;
     right:0;
}

.top10 img{
     float:right;
     margin:10px;
}

h1 {
     font-family: Georgia, serif;
     font-size: 30px;
     font-style: normal;
     font-weight: normal;
     text-transform: uppercase;
     letter-spacing: 2.5px;
}
</pre>
[/inline]

<p><br  /></p>

<div class="top_10"><span><em>6</em>  I <3 Mozilla + Georgia is Beautiful</span></div>

<div style="background: url(http://www.dlocc.com/articles/wp-content/uploads/2010/01/ff.png) no-repeat top left; padding:15px;width: 625px; height: 250px; display: table-cell; vertical-align: middle;border:4px solid #E8E8E8;"><p style="font-family:georgia,serif;color:#FFFFFF;font-size:50px;margin-bottom:10px;margin-top:10px;line-height:50px;">
CSS Typography is Fun!</p><p style="font-family:georgia,serif;font-size:24px;color:#4B4742;line-height:30px;padding-left:10px;">If you enjoy building web pages and graphic design test your creativity with CSS typography!  It's can help you refine your css skills and make web pages look great.  It's definitely worth the time and effort.</p></div>

<p></p>
<p>Mozilla is awesome.  Check out their <em>beautiful </em>and <em>elegant </em>typography <a href="http://www.mozilla.org/">HERE</a>.  Georgia is one of my favorite fonts to use because it renders nicely when used in large sizes and looks pretty slick.  It's a serif font, meaning it naturally has more detail than sans-serif fonts.  I believe this gives more character to the typography.  What do you think?</p>
<p></p>
<p>HTML - (Download the background <a href="http://www.dlocc.com/articles/wp-content/uploads/2010/01/ff.png">HERE</a>)</p>
[inline]
<pre class="brush: xml; collapse: true; gutter: false; light: false; toolbar: true;">
&lt;div class=&quot;container&quot;&gt;
&lt;h1&gt;CSS Typography is Fun!&lt;/h1&gt;
&lt;p&gt;Why is it fun? Because it is!&lt;/p&gt;
&lt;/div&gt;
</pre>
[/inline]

<p></p>
<p>CSS</p>
[inline]
<pre class="brush: css; collapse: true; gutter: false; light: false; toolbar: true;">
#container  {
     font-family:georgia,serif;
     color:#FFFFFF; 
     margin:10px; /*Customize */
     padding:10px; /*Customize */
}

#container h1 {
     font-size:75px;
     margin:10px 0px 10px 0px; /*Customize */
     padding:0px; /*Customize */

}

#container p{
     color:#4B4742;
     font-size:24px;
     line-height:30px;
     margin:10px; /*Customize */
}
</pre>
[/inline]

<p><br  /></p>

<p>Please let me know what you think.  If you enjoyed this post be sure to <a href="http://www.dlocc.com/articles/feed/rss/" title="Subscribe to DLOCC's RSS Feed">subscribe to our RSS feed</a>.  Are you looking to publish your articles online?  <a href="http://www.dlocc.com/contact" title="Contact DLOCC">Contact DLOCC</a>!  Also, <a href="http://www.twitter.com/innerwebs/" title="Follow DLOCC on Twitter!">peep us out on Twitter</a>! Ok, that's it for now. Pz!</p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/modern-css-typography-and-font-styling-examples/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>CSS Vertical Centering Text, Images and other Elements</title>
		<link>http://www.dlocc.com/articles/css-vertical-centering-text-images-and-other-elements/</link>
		<comments>http://www.dlocc.com/articles/css-vertical-centering-text-images-and-other-elements/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 06:02:33 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=872</guid>
		<description><![CDATA[Cascading style sheets make is very easy to center objects vertically. This may be an image or some text that you wish to align properly for whatever reason. For this tutorial we will demonstrate how to vertically align some text then an image using an easy and W3C compliant method. Then I will show you [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/css-icon.png" style="padding-right:20px" alt="CSS Icon" title="CSS Icon" width="64" height="64" class="alignleft size-full wp-image-900" /><em>Cascading style sheets</em> make is very easy to center objects vertically.  This may be an image or some text that you wish to align properly for whatever reason.  For this tutorial we will demonstrate how to vertically align some text then an image using an easy and W3C compliant method. Then I will show you how to place text or images in the absolute middle or center.
<span id="more-872"></span>
<p></p>
<h3><strong>Vertically Align Text:</strong></h3>
<p></p>
<p><strong>1.</strong> Create a new HTML file in your favorite editor and let's begin by creating a container for our object that we want vertically centered:</p>
<p></p>
[inline lang="HTML"]
<pre class="brush: plain;">
&lt;div id=&quot;container&quot;&gt;
&lt;/div&gt;
</pre>
[/inline]
<p></p>
<p>Next, add some text in a paragraph tag in between the <em>div</em> tags.</p>
[inline]
<pre class="brush: xml;">
&lt;div id=&quot;container&quot;&gt;
&lt;p&gt;I am text, look at me!&lt;/p&gt;
&lt;/div&gt;
</pre>
[/inline]
<p><strong>2.</strong> Apply the following CSS to the <em>container</em> div:</p>
<pre class="brush: css;">
#container {
      display:table-cell;
      height:120px;
      vertical-align:middle;
}
</pre>
<p></p>
<p><strong>Result:</strong></p>
<div style="display:table-cell;
      height:120px;
      vertical-align:middle;background:#FFC;"><p style="line-height:20px;margin:0;">This is my text, hello look at me! I'm vertically centered and I can keep on being centered no matter how long my text continues on for... see the light-yellow background?  That's my container</p></div>
<p><br  /><br  /></p>
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* DLOCC CONTENT NEW 468x60, created 10/12/09 */
google_ad_slot = "5878248027";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
<p><br  /><br  /></p>
<h3><strong>Vertically Align an Image:</strong></h3>
<p><strong>1.</strong> Now let's create another <em>div</em> container for our image we want vertically centered:</p>
<pre class="brush: xml;">
&lt;div id=&quot;container_image&quot;&gt;
&lt;/div&gt;
</pre>
[/inline]
<p></p>
<p>Next, add an image in between the <em>div</em> tags.</p>
[inline]
<pre class="brush: xml;">
&lt;div id=&quot;container_image&quot;&gt;
&lt;img src=&quot;path/to/image.jpg&quot;/&gt;
&lt;/div&gt;
</pre>
[/inline]

<p><strong>2.</strong> Again, apply the following CSS to the <em>container_image</em> div:</p>
<pre class="brush: css;">
#container_image {
      display:table-cell;
      height:120px;
      vertical-align:middle;
}
</pre>
<p></p>
<p><strong>Result:</strong></p>
<div style="display:table-cell;
      height:120px;
      vertical-align:middle;background:#FFC;"><p style="margin:0;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/Cool-48.png" alt="Cool Icon" title="Cool Icon" width="48" height="48" class="alignnone size-full wp-image-902" /></p></div>
<p></p>

<h3><strong>Horizontally and Vertically Align an Image:</strong></h3>
<p><strong>1.</strong> For our last example, create yet another <em>div</em> container for our image:</p>
<pre class="brush: plain;">
&lt;div id=&quot;container_image&quot;&gt;
&lt;/div&gt;
</pre>
[/inline]
<p></p>
<p>Next, add the image again in between the <em>div</em> tags.</p>
[inline]
<pre class="brush: xml;">
&lt;div id=&quot;container_image&quot;&gt;
&lt;img src=&quot;path/to/image.jpg&quot;/&gt;
&lt;/div&gt;
</pre>
[/inline]

<p><strong>2.</strong> Once more, apply the following CSS to the <em>container_image</em> div:</p>
<pre class="brush: css;">
#container_image {
      display:table-cell;
      height:120px;
      vertical-align:middle;
}

#container img {
      margin:0 auto;
}
</pre>
<p></p>
<p><strong>Result:</strong></p>
<div style="display:table-cell;
      height:120px;
      vertical-align:middle;background:#FFC;width:200px;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/Cool-48.png" style="margin:0 auto;" alt="Cool Icon" title="Cool Icon" width="48" height="48" class="alignnone size-full wp-image-902" /></div>
<p></p>
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* 468x15, created 12/4/09 */
google_ad_slot = "8358650032";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/css-vertical-centering-text-images-and-other-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top-10 Free Website SEO Analysis Tools of 2009</title>
		<link>http://www.dlocc.com/articles/top-10-free-websiteblog-grader-seo-tools-of-2009/</link>
		<comments>http://www.dlocc.com/articles/top-10-free-websiteblog-grader-seo-tools-of-2009/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 00:40:47 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Top-10]]></category>
		<category><![CDATA[Website Graders]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=699</guid>
		<description><![CDATA[There are many useful website graders available for free on the web.  You don't have to pay for quality tools, you just need to know where to look.  I've used plenty of SEO tools on my website, the key is to review the results objectively and compare the reports with one another. Some tools didn't make the top-10 list [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/1200613546.png" style="padding-bottom:25px;" alt="SEO Tools" title="SEO Tools" width="256" height="256" class="alignleft size-full wp-image-751" />
<p>There are many useful website graders available for free on the web.  You don't have to pay for quality tools, you just need to know where to look.  I've used plenty of SEO tools on my website, the key is to review the results objectively and compare the reports with one another.</p>
<p>Some tools didn't make the top-10 list and I've provided an explanation as to why not below each.  Please enjoy my top-10 list of website SEO analysis tools for 2009!  Hope you enjoy... please leave a comment.</p>
<span id="more-699"></span> 
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* 468x15, created 12/4/09 */
google_ad_slot = "8358650032";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
<p><br /><br /></p>
<h3><strong>1. <a title="Google Analytics" href="http://www.google.com/analytics/">Google Analytics</a></strong></h3>
<a href="http://www.google.com/analytics/" style="border:none;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/analytics_logo.gif" alt="Google Analytics" title="Google Analytics" width="207" height="40" class="alignnone size-full wp-image-1022" /></a>
<p><strong>Review:</strong> Every website should utilize <a href="http://www.google.com/analytics/">Google Analytics</a> to track visitors, review keywords, track adsense profits and more.  This tool is hands down the best out there and it's free.  Simply include a tracking script on your pages provided to you once you sign up and you're set.  Don't forget to filter out your own IP addresses for accurate reporting!</p>
<p></p>
<p>Overall Rating:<strong> 10/10</strong></p>

<p><br /><br /></p>
<h3><strong>2.</strong> <a title="Hubspot Website Grader" href="http://websitegrader.com/" target="_blank">Hubspot's Website Grader</a></span></strong></h3>
<a href="http://www.websitegrader.com" style="border:none;"><img style="padding-right:20px;" src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/website-grader-logo-new.gif" alt="Website Grader Logo" title="Website Grader Logo" width="201" height="66" class="alignleft size-full wp-image-739" /></a>
<p><strong>Review:</strong> Hubspot generates comprehensive reports that weigh a variety of factors in calculating the final grade.  The factors include Google Page Rank,  website directory listings (DMOZ, Yahoo!), domain age, etc.</p>
<p><strong>My Site's Result:</strong></p>
[inline]
<script type="text/javascript">
/* WebsiteGrader.com Badge Settings */
var wsgApiKey = "5347e2da-02cc-4df8-8775-b31b6b7ab649";
var wsgStyle = 1;
/* END WebsiteGrader.com Badge Settings */
document.write('<div id="wsgContainer"></div>');wsgScript=document.createElement('script');wsgScript.type="text/javascript";wsgScript.src="http://static.hubspot.com/websiteGraderBadge/badge.js?t="+Math.random();setTimeout("document.getElementById('wsgContainer').appendChild(wsgScript);",1);
</script>
[/inline]
<p></p>
<p>Overall Rating:<strong> 9/10</strong></p>

<p><br /><br /></p>

<h3><strong>3. <a title="Alexa" href="http://www.alexa.com">Alexa</a></strong></h3>
<a href="http://www.alexa.com" style="border:none;"><img style="padding-right:20px;padding-bottom:20px;padding-top:20px;" class="alignleft size-full wp-image-723" title="Alexa" src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/logo-button4.png" alt="Alexa" width="125" height="40" /></a>
<p><strong>Review: </strong>Provides more of a high-level overview of your site's rank  against their top-ranked sites.  If you're in the top 100,000 that's good news and you'll have more to view.  For me, perhaps one day I will be up there but for now it seems I've got to climb a few million.  Check them out, not sure they deserve the 2-rank, but the site is valuable.</p>
<p><strong>My Site's Result:</strong></p>
<p>[inline]
<script src="http://xslt.alexa.com/site_stats/js/s/a?url=www.dlocc.com" type="text/javascript"></script>
[/inline]</p>
<p>Overall Rating: <strong>8.5/10</strong></p>
<p><br /><br /></p>

<h3><strong>4. <a title="www.compete.com" href="http://www.compete.com/" target="_blank">Site Report Card</a></strong></h3>
<a href="http://www.compete.com" style="border:none;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/logo.gif" style="padding-right:20px;" alt="Compete Logo" title="Compete Logo" width="221" height="50" class="alignleft size-full wp-image-770" /></a> 
<p><strong>Review: </strong>Compete is a very popular tool for webmasters and reminds me of Google Analytics.  You can view a lot of information without signing up, which is always a plus.  Although, if you want to embed a cool graph like you see below (only cool if you have a lot of visitors... unlike me) then you must register with the website.</p>
 <p><strong>My Site's Analytics Graph:</strong></p>
<a href='http://siteanalytics.compete.com/dlocc.com/?metric=uv'>
<p><br /></p>
<center><img src='http://grapher.compete.com/dlocc.com_uv_460.png' /></a></center>
<p><br /></p>
<p>Overall Rating: <strong>8/10</strong></p></center>
<p><br /></p>
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* DLOCC CONTENT NEW 468x60, created 10/12/09 */
google_ad_slot = "5878248027";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>

<p><br /><br /></p>

<h3><strong>5. <a title="quantcast" href="http://www.quantcast.com/" target="_blank">Quantcast</a></strong></h3>
<a href="http://www.quantcast.com" style="border:none;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/logo_blue.png" alt="quantcast" title="quantcast" style="padding-right:20px;" width="190" height="40" class="alignleft size-full wp-image-861" /></a>
<p><strong>Review:</strong> Quantcast is an uncoming competitor to Alexa and provides good information about higher traffic sites.  Analysis includes traffic estimates, audience location and demographic as well as lifestyle.  Interesting analysis compared to some of the others.</p>
<p>Overall Rating: <strong>7.5/10</strong></p>

<p><br /><br /></p>

<h3><strong>6. <a title="BuildWith" href="http://www.builtwith.com/" target="_blank">BuiltWith</a></strong></h3>
<a href="http://www.builtwith.com" style="border:none;"><a href="http://www.dlocc.com/articles/top-10-free-websiteblog-grader-seo-tools-of-2009/"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/logoBig.png" style="padding-right:20px;" alt="BuiltWith Logo" title="BuiltWith Logo" width="233" height="70" class="alignleft size-full wp-image-856" /></a>
<p><strong>Review:</strong> BuildWith is becoming one of the more popular free analysis tools on the web.  Visitors can look up any site they wish and see detailed traffic, visitor and SEO analysis.  I like how they have a "Technology Profile" that shows your server info, tracking system, and frameworks used.  They don't give you the whole shebang for free, but you get to see quiet a lot of what BuiltWith has to offer.</p>
<p>Overall Rating: <strong>7/10</strong></p>

<p><br /><br /></p>

<h3><strong>7. <a title="Site Report Card" href="http://www.sitereportcard.com/" target="_blank">Site Report Card</a></strong></h3>
<a href="http://www.sitereportcard.com" style="border:none;"><img style="padding-right:20px;" class="alignleft size-full wp-image-721" title="Site Report Card" src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/Site-Report-Card.png" alt="Site Report Card" width="310" height="125" /></a>
<p><strong>Review:</strong> Site Report Card is a legitimate tool that helps analyze links, meta tags, spelling, keywords and html.  Very in depth reports help you resolve the issues it finds.  Search engine analysis provides thorough link popularity reporting and search url index totals.</p>
<p></p>
<p>Overall Rating: <strong>6.5/10</strong></p>

<p><br /><br /></p>

<h3><strong>8. <a title="Xinu Returns" href="http://www.xinureturns.com/" target="_blank">Xinu Returns</a></strong></h3>
<a href="http://www.xinureturns.com" style="border:none;"><img src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/xinu.png" alt="Xinu Returns" style="padding-right:20px;" title="Xinu Returns" width="179" height="85" class="alignleft size-full wp-image-858" /></a>
<p><strong>Review:</strong> Xinu Returns is appealing because of its simplicity.  All the analysis info is right there for you once you enter your website's URL: the categories include backlinks, syndication, validations, and more.   Points off for an annoying pop-up and old look-and-feel.</p>
<p></p>
<p>Overall Rating: <strong>6.5/10</strong></p>

<p><br /><br /></p>

<h3><strong>9. <a title="Review My Web" href="http://www.reviewmyweb.com/reviewmyweb/reviewmyweb">Review My Web</a></strong></h3>
<a href="http://www.reviewmyweb.com" style="border:none;"><img style="padding-right:20px;" class="alignleft size-full wp-image-718" title="reviewmyweb_logo" src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/reviewmyweb_logo.gif" alt="reviewmyweb_logo" width="328" height="80" /></a>
<p><strong>Review:</strong> Reviewmyweb.com is a website review tool that ranks your website against competitors and popular search engines.  Unlike hubspot's website grader tool the email field is not opinional (the only way to receive a report is via email).  Not sure if they agree <em>not </em>to sell your email address afterwards... hopefully not.</p>
<p><strong>Note:</strong> It does take awhile to receive the email containing a link to your website's report.  I thought mine never came, but I checked an hour or so after submitting my analysis and it was in my inbox.  Once I reviewed the report it was pretty slim but included some helpful information.</p>
<p>Overall Rating:<strong>5/10</strong></p>

<p><br /><br /></p>

<h3><strong>10. <a title="Submit Express Link Popularity Checker" href="http://www.submitexpress.com/linkpop/">Submit Express Link Popularity</a></strong></h3>
<a href="http://www.submitexpress.com/linkpop/ style="border:none;"><img style="padding-right:20px;" src="http://www.dlocc.com/articles/wp-content/uploads/2009/12/se2005logo666.gif" alt="Submit Express Link Popularity Analyzer" title="Submit Express Link Popularity Analyzer" width="230" height="68" class="alignleft size-full wp-image-767" /></a>
<p><strong>Review:</strong> The last and final SEO tool to make this year's list is Submit Express' link popularity checker.  This tool is free and will analyze your website's popularity (links) on several indexes and social networks.  The report is very basic, but it returns extremely quick results and compares your website's rank to a wide spectrum of results.  Worth a check if you feel the need.</p>
<p>Overall Rating:<strong> 4/10</strong></p>
<p><br /></p>
 <center><script type="text/javascript"><!--
google_ad_client = "pub-0865220113481078";
/* DLOCC CONTENT NEW 468x60, created 10/12/09 */
google_ad_slot = "5878248027";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
<p><br /></p>
<p>Do you have a tool you'd like to share?  Please leave a comment below and let others know!  You can also <a href="http://www.dlocc.com/contact">contact me</a> and tell me why it should be included.  Oh yes, and <a href="http://www.dlocc.com/articles/feed/rss/">subscribe to my RSS feed</a> :]</p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/top-10-free-websiteblog-grader-seo-tools-of-2009/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>SharePoint Color Coated Calendars</title>
		<link>http://www.dlocc.com/articles/sharepoint-color-coated-calendars/</link>
		<comments>http://www.dlocc.com/articles/sharepoint-color-coated-calendars/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 04:12:18 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Calendar]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/DLOCC/articles/?p=597</guid>
		<description><![CDATA[I found a particularly good blog about how to color your Calendar lists similar to the way Outlook's are formatted using the Content Editor Web Part and some nifty Javascript HERE.  This particularly valuable post comes to you from PlanetWilson SharePoint Blog, a particularly good source of information for MOSS solution.  There is a packaged [...]]]></description>
			<content:encoded><![CDATA[I found a particularly good blog about how to color your Calendar lists similar to the way Outlook's are formatted using the Content Editor Web Part and some nifty Javascript <a href="http://planetwilson.blogspot.com/2007/09/sharepoint-2007-colour-color-calendar.html" target="_blank">HERE</a>.  This particularly valuable post comes to you from PlanetWilson SharePoint Blog, a particularly good source of information for MOSS solution.  There is a <a href="http://planetwilson.blogspot.com/2007/11/updated-colour-color-calendar-for.html" target="_blank">packaged solution file</a> (which I have yet to try because I hear it lacks the incoming e-mail feature of WSS 3.0 calendars) and a nice <a href="http://planetwilson.blogspot.com/2007/09/sharepoint-2007-colour-color-calendar.html" target="_blank">walkthrough</a> demonstrating how to setup your "coloured" calendars.  I used it and it works great, here is a image of what I was able to create in about 30 minutes.

<img class="alignnone size-full wp-image-598" title="SharePoint Color Calendar" src="http://www.dlocc.com/articles/wp-content/uploads/2009/11/calendarthumb.gif" alt="SharePoint Color Calendar" width="422" height="289" />]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/sharepoint-color-coated-calendars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
