<?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>Shane Strong &#187; Web Design</title>
	<atom:link href="http://www.shanestrong.com/category/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shanestrong.com</link>
	<description>Warning may cause seizures in Internet Explorer!</description>
	<lastBuildDate>Fri, 27 Aug 2010 06:09:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Magento Page Layouts</title>
		<link>http://www.shanestrong.com/web-development/magento-page-layouts</link>
		<comments>http://www.shanestrong.com/web-development/magento-page-layouts#comments</comments>
		<pubDate>Sat, 12 Jun 2010 14:29:18 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Magento Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1403</guid>
		<description><![CDATA[Making a new page layout or template with Magento is kind of a tricky task. Magento comes standard with a 3column, 2column-right, 2coulmn-left, 1coulmn, and a empty layout but what if you wanted to create a 4column or maybe just create a custom template for your pages or even just certain pages. Well in order [...]]]></description>
			<content:encoded><![CDATA[<p>Making a new page layout or template with Magento is kind of a tricky task.  Magento comes standard with a 3column, 2column-right, 2coulmn-left, 1coulmn, and a empty layout but what if you wanted to create a 4column or maybe just create a custom template for your pages or even just certain pages.  Well in order to do this you first need to understand how Magento works.  First you have your .phtml files.  These are basically your template files but to make these file do anything you have to get into the .xml files and tell them where to go.  This is something that really no one can just tell you how to do it you actually have to either get into the filing system and experiment or buy a book.  A good book to start with would be <a target="_blank" href="http://www.magentocommerce.com/support/magento-user-guide-book">Magento User Guide</a>.</p>
<h3>Creating The Template File</h3>
<p>In you are new to Magento then this will be kind of fun for you.  First you need to create your .phtml file.  In order to do that you need to navigate to your themes template pages folder.  How to find that?  Well if you are using the default Magento theme then you would first go to app -> frountend -> default -> default -> template -> page inside of there you will need to create you template file.  So let say we want to create a 4coulmn template.  You would just add a 4columns.phtml or whatever you would like to call it.  Now you may be thinking you are all done.  Nope if you go into your Magento Admin Panel or Dashboard and go under cms pages.  You will see that you can not select your new template as a layout.  Well this is because you need to first tell the Magento xml file to use the template.</p>
<h3>Editing The XML</h3>
<p>Lets locate those xml files.  If you are still in the template -> page directory then all you have to do is go out one directory to layout.  If you are not in the directory anymore you will have to navigate to app -> frountend -> default -> default -> layout.  Inside this directory you are going to be looking for the page.xml file.  Open it and navigate to the bottom.  You should find some code like this</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #808080; font-style: italic;">&lt;!-- Custom page layout handles --&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_empty</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Empty Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/empty.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_empty<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_one_column</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All One-Column Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/1column.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_one_column<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_two_columns_left</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Two-Column Layout Pages (Left Column)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/2columns-left.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_two_columns_left<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_two_columns_right</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Two-Column Layout Pages (Right Column)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/2columns-right.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_two_columns_right<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_three_columns</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Three-Column Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/3columns.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_three_columns<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Now you need to add your page teamplate to the end of the.  So you would do something like this.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_four_column</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Four Column Page Layout<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/4columns.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_four_column<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Once you have added that you should be good to go.  If you do not see the layout in the drop down in the cms page area, you may need to refresh your Magento cache.  To do this go the Magento Admin Panel or Dashboard and go to System->Cache Management.  Refresh all the cache.  If that does not work then you need to go back and make sure you have named everything correct.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are a small business but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies. We prefer client work but we also take contract work.  We have worked with the biggest web companies in the Lansing Area and some all the way out to California.  We would love to hear from you. </p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1403&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/magento-page-layouts/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jQuery Corner Page Peel</title>
		<link>http://www.shanestrong.com/web-design/jquery-corner-page-peel</link>
		<comments>http://www.shanestrong.com/web-design/jquery-corner-page-peel#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:39:50 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Peel]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Simple jQuery]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1310</guid>
		<description><![CDATA[There are many different ways to make your RSS Icon jump out at people. Well why not have it peel at people. You have seen those ads that sites have in the upper right corner of there site that when you hover over them they just peel away. Well some people might think that must [...]]]></description>
			<content:encoded><![CDATA[<p>There are many different ways to make your RSS Icon jump out at people.  Well why not have it peel at people.  You have seen those ads that sites have in the upper right corner of there site that when you hover over them they just peel away.  Well some people might think that must be flash at work or something that is so advanced I can never learn it.  Well to let everyone know yes you can learn it and no it is not hard.  I am sure that you could make a peel away corner with flash and I bet it would look good.  But, I also bet that it would take a couple hours to create and then a few more to implement.  Well with some jQuery and CSS you can create a peel away corner in about 20-30mins.  All that you need to know for this is how to copy some code into your head and header area of your website.  I am going to break down exactly what you need to do in 3 easy steps.  If you would like to download the end product you can find it at the bottom of this tutorial.</p>
<h3>Add Your jQuery Scripts</h3>
<p>We are going to use Google&#8217;s AJAX Library to add our jQuery library to our header.  You may ask why we would do this well including the jQuery library from a external source will make less stress on your server and we all know that Google&#8217;s servers can handle the stress.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">&lt;head&gt;
//Google Hosted
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
//Your Script
&lt;script type=&quot;text/javascript&quot;&gt;
   jQuery(document).ready(function($) {
      $(&quot;.cornerpeel&quot;).hover(function() { //Hover Over
         $(&quot;.cornerpeel img , .message&quot;).stop()
	 .animate({ //Expand the Message and the Hover Image
	    width: '138px',
	    height: '138px'
	 }, 600);
      } , function() {
         $(&quot;.cornerpeel img&quot;).stop() //Hover Out Go Back To Original
	 .animate({
	    width: '50px',
	    height: '50px'
	 }, 200);
	 $(&quot;.message&quot;).stop() //Hover Out Go Back To Original
	 .animate({
            width: '50px',
	    height: '50px'
	 }, 180); //This should be a tad faster than the image because IE is known to glitch
      });
   });
&lt;/script&gt;
&lt;/head&gt;</pre></div></div>

<h3>Create Your Styles</h3>
<p>These are your styles and can be changed up depending on where your image is and what size you want to start out with.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.cornerpeel</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cornerpeel</span> img <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">101</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cornerpeel</span> <span style="color: #6666ff;">.message</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">100</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fffcf9</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">http://www.shanestrong.com/jQuery/cornerpeel/rss.jpg</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">text-indent</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9999px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Create Your Corner Peice</h3>
<p>This is were you create your hoverable corner piece.  This will be placed somewhere in your header area or right inside your body tag.</p>

<div class="wp_syntax"><div class="code"><pre class="htm" style="font-family:monospace;">&lt;div class=&quot;cornerpeel&quot;&gt;
   &lt;a href=&quot;http://feeds.feedburner.com/ShaneStrong&quot;&gt;
      &lt;img src=&quot;http://www.shanestrong.com/jQuery/cornerpeel/corner_img.png&quot; alt=&quot;&quot; /&gt;
      &lt;span class=&quot;message&quot;&gt;Subscribe To My Feed&lt;/span&gt;
   &lt;/a&gt;
&lt;/div&gt;</pre></div></div>

<h3>Your Finished</h3>
<p>Well that was it, that is all that you need to create your self a corner peel.  If you would like to see this in action you can download my script at the bottom.  There is a ton of things that you can do with jQuery that can make your site seem more flashy without having to find a flash developer.  jQuery is one of the fastest growing languages around.  If you have any tutorials that you would like to publish on my site please go to my contact page.</p>
<p>jQuery Corner Peel: <a target="_blank" href="/jquery/corner-peel/cornerpeel.htm" title="Corner Page Peel">Corner Peel Trial</a></p>
<p>Download: <a class="downloadlink" href="http://www.shanestrong.com/downloads74" title="Version1.0 downloaded 353 times" >jQuery Corner Peel (353)</a></p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are a small business but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies. We prefer client work but we also take contract work.  We have worked with most of the biggest web companies in the Lansing Area and all the way out to California.  We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1310&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-design/jquery-corner-page-peel/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jQuery Accordion</title>
		<link>http://www.shanestrong.com/web-design/jquery-accordion</link>
		<comments>http://www.shanestrong.com/web-design/jquery-accordion#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:40:20 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Accordion]]></category>
		<category><![CDATA[jQuery Accordion Widget]]></category>
		<category><![CDATA[jQuery Widget]]></category>
		<category><![CDATA[jQuery WordPress]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1298</guid>
		<description><![CDATA[jQuery comes with a ton of different pre-made widgets. Some of which are really sweet and simple to implement into your website. One of the most notable of the widgets is the jQuery Accordion. This is a really easy way to squeeze a bunch of text, images, buttons, or whatever you are using in to [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery comes with a ton of different pre-made widgets.  Some of which are really sweet and simple to implement into your website.  One of the most notable of the widgets is the jQuery Accordion.  This is a really easy way to squeeze a bunch of text, images, buttons, or whatever you are using in to a smaller area.  why would you need this?  Well if you have a website that has a bunch of stuff on it and need more space.  This is a great way to make more space.  For instance using a WordPress theme.  You may want to have somewhere in the numbers of 10-20 posts on your home page.  Now most WordPress themes do have 10 posts on the home page but I don&#8217;t know about you but that makes the site look really bloated.  That is where you bring in the jQuery Accordion widget.  That way you can maybe have one main post or featured post and all the rest of the 10 or how many ever can be squeezed into just the titles maybe.  Then when you click on the title in will open that post and if you have another post open it will close the open one.  </p>
<h3>How to use jQuery Accordion</h3>
<p>You do not have to use this for WordPress, you can use this on almost anything to make more space.  Here is how you would go about using the Accordion widget.</p>
<h4>Include your scripts</h4>
<p>These should go into your head section of your web page.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">&lt;head&gt;
//Default jQuery Style Sheet
&lt;link type=&quot;text/css&quot; href=&quot;http://jqueryui.com/latest/themes/base/ui.all.css&quot; rel=&quot;stylesheet&quot; /&gt;
//Google Hosted
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://jqueryui.com/ui/ui.accordion.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;</pre></div></div>

<h4>What happens next?</h4>
<p>Now you have to create your accordion script.  This is going to be hard for anyone who has never worked with jQuery so get ready.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Your accordion script
&lt;script type=&quot;text/javascript&quot;&gt;
$(function() {
    $(&quot;your_id or your_class&quot;).accordion();
});
&lt;/script&gt;</pre></div></div>

<p>That code can either go in your head section or your footer.  Ok so I kind of lied about that part being hard to do.  But this next part is going to be even harder yet.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">//This is where you create you info
&lt;div id=&quot;your_id&quot; class=&quot;your_class&quot;&gt;
//You only need either a class or a id.
//What ever you want to use the Accordion widget
//should have the same HTML element after your class
//or ID.
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the first area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 1&lt;/p&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the second area's heading&lt;/a&gt;&lt;/h3&gt;       
        &lt;div&gt;
            &lt;p&gt;This is your content in area 2&lt;/p&gt;
            &lt;img src=&quot;http://www.shanestrong.com/wp-content/uploads/2009/07/jQuery-hover.jpg&quot; /&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the third area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 3&lt;/p&gt;
            &lt;p&gt;Another paragraph&lt;/p&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the fourth area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 4&lt;/p&gt;
            &lt;ul&gt;
                &lt;li&gt;List Item One&lt;/li&gt;
                &lt;li&gt;List Item Two&lt;/li&gt;
                &lt;li&gt;List Item Three&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<h3>That is all there is to jQuery Accordion</h3>
<p>The only thing left to do is check it out for yourself I have created a page that has all the code.  If you would like to just see jQuery Accordion in action you can go to the link below.  If you would like to save the page you can just go to it and (Right Click and go to Save Page As).</p>
<p>jQuery Accordion: <a target="_blank" href="/jquery/accordion/accordion.htm" title="jQuery Accordion Tutorial">jQuery Accordion Trial</a></p>
<p>Download: <a class="downloadlink" href="http://www.shanestrong.com/downloads73" title="Version1.0 downloaded 323 times" >jQuery Accordion (323)</a></p>
<h3>jQuery Accordion Extras</h3>
<p>If you would like to learn more about this great jQuery widget just go to <a target="_blank" href="http://jqueryui.com/demos/accordion/">Here</a></p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are a small business but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies. We prefer client work but we also take contract work.  We have worked with most of the biggest web companies in the Lansing Area and all the way out to California.  We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1298&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-design/jquery-accordion/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shane&#8217;s New Site Launches</title>
		<link>http://www.shanestrong.com/web-development/shanes-new-site-launches</link>
		<comments>http://www.shanestrong.com/web-development/shanes-new-site-launches#comments</comments>
		<pubDate>Wed, 28 Oct 2009 03:07:51 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1190</guid>
		<description><![CDATA[This week Shane Strong launched a few different sites. One was launched by Shane and Alex Tourtillott. Two more were launched by Shane and Chosen Development. Our first site is a small site using the Chosen CMS. This site was designed by Alex Tourtillott and Developed by Shane. This site is called www.neighborhoodres.org. They are [...]]]></description>
			<content:encoded><![CDATA[<p>This week Shane Strong launched a few different sites.  One was launched by Shane and Alex Tourtillott.  Two more were launched by Shane and Chosen Development.  Our first site is a small site using the Chosen CMS.  This site was designed by Alex Tourtillott and Developed by Shane.  This site is called www.neighborhoodres.org.  They are a small adult and elder care service.  You can view them in my portfolio.  The next site was designed by Clayton McIlrath from Chosen Development and Developed by Shane Strong also from Chosen Development.  This site is for a small branch of a bigger Church based out of Lansing, MI called Mount Hope.  The small branch is from Saint Johns Michigan and it is called Saint Johns Mount Hope.  You can go to my portfolio and see the church site or you can go to www.mthopestjohns.com.  The last and final site that I finished this week was Calvary International Fellowship Ministries.  This is a start up church based out of East Lansing, MI.  This site was designed and developed by Shane Strong.  You can see this site in my portfolio or you can go to www.cifministries.com.  The last was a theme Shane developed for a WordPress site at brog.brandinginc.net.  You can also see that in my portfolio.  That is it for sites this week.   I am hoping to have updates to most of my themes by the end of next week, with some new customized functions for most of them. I also hope to share some new themes that will have the customizations.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you need assistance with web design, web development, search engine optimization, editing, content creation or marketing done to one of your sites please feel free to contact me or Chosen. Chosen is a small, but growing Lansing-based firm offering Web Development, Web Design, Web Hosting, Web Editing, and Web Marketing skills. We have done work for clients and companies, by preference, but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1190&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/shanes-new-site-launches/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 SEO Tools</title>
		<link>http://www.shanestrong.com/work/top-10-seo-tools</link>
		<comments>http://www.shanestrong.com/work/top-10-seo-tools#comments</comments>
		<pubDate>Thu, 13 Aug 2009 20:52:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[SEO Optimized]]></category>
		<category><![CDATA[SEO Tools]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1060</guid>
		<description><![CDATA[What do you use for SEO? What do you consider the best tools? I have a list of SEO tools that I use daily. My list is a little more than 10 but I figured for simplicity I will give you the top 10 SEO tools that I use. The reason I am putting together [...]]]></description>
			<content:encoded><![CDATA[<p>What do you use for SEO?  What do you consider the best tools? I have a list of SEO tools that I use daily.  My list is a little more than 10 but I figured for simplicity I will give you the top 10 SEO tools that I use.  The reason I am putting together a list of my top ten is because I see a trend from other SEO experts bot saying that I am a expert but I would like to be.  There are a ton of SEO tools out there that are free of charge and these tools are evolving at a rapid speed.  My big question with SEO is where will it go next.  Well what everyone really wants is the list so here it is.</p>
<h3>Top Ten SEO Tool List</h3>
<ul class="circle">
<div class="alignleft fifty">
<li><a target="_blank" href="http://www.searchenginegenie.com/" title="Search Engine Genie">Search Engine Genie</a></li>
<li><a target="_blank" href="http://www.websitegrader.com" title="Website Grader">Website Grader</a></li>
<li><a target="_blank" href="https://adwords.google.com/select/KeywordToolExternal" title="Google Adwords">Google Adwords</a></li>
<li><a target="_blank" href="http://www.google.com/analytics/" title="Google Analytics">Google Analytics</a></li>
<li><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/3036" title="SEO Quake">SEO Quake</a></li>
</div>
<div class="alignleft fifty">
<li><a target="_blank" href="https://siteexplorer.search.yahoo.com/mysites" title="Site Explorer">SiteExplorer</a></li>
<li><a target="_blank" href="http://www.google.com/trends" title="Google Trends">Google Trends</a></li>
<li><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/321" title="Search Status">Search Status</a></li>
<li><a target="_blank" href="http://www.seomoz.org/tools" title="SEO Moz">seomoz.org</a></li>
<li><a target="_blank" href="http://www.wordtracker.com/" title="Word Tracker">Word Tracker</a></li>
</div>
</ul>
<div class="clear"></div>
<h3>What The SEO Tool Does</h3>
<p><b>Search Engine Genie</b> &#8211; This site is not well known but it has quite a few really nice SEO tools that are free to use and they have a ton of really helpful articles.<br />
<b>Website Grader by HubSpot</b> &#8211; I use this site to get a good idea of where a site is and where it might need to be and get to.  HubSpot has a paid version of this that has a ton of really great SEO tools.  They have a free week trial of the system if I were you I would jump at the trial and see if you like it.<br />
<b>Google Adwords</b> &#8211; This is a great way to find out how heavily a keyword is being targeted.  I use this when ever i am looking for the really good keyword to get a site going.<br />
<b>Google Analytics</b> &#8211; Great tool if you are not using it you are loosing out.  My main use for this is to see what is bringing traffic into my site or my client sites.  With the name Google behind this you know that you are going to 1 get it for free and 2 get something that is great.<br />
<b>SEO Quake</b> &#8211; This is a plugin for Firefox that gives you a ton of really useful info that you need for SEO.  I know a few different people that this is the only tool that they use for SEO.<br />
<b>Site Explorer by Yahoo</b> &#8211; This is a useful tool for the yahoo search engine.  I prefer Google&#8217;s Analytics over this because it has more to it.<br />
<b>Google Trand</b> &#8211; Great tool by Google this lets you find the trends of the time so that you can find the really good keywords and SEO articles to write for traffic purposes.<br />
<b>Search Status</b> &#8211; I really enjoy using Search Status because of its simplicity.  I am a Firefox user and this is a Firefox plugin.<br />
<b>seomoz.org</b> &#8211; These people really know what they are doing with SEO.  They have a ton of free tools and they also have some really great paid tools.<br />
<b>Word tracker</b> &#8211; I personally have not used this service but i have heard from a ton of people that they are great.  It is a paid service but they do have a free trial.</p>
<h3>SEO Packages</h3>
<p>If you are in need of any Search Engine Optimization I do have packages and I can teach people how to do SEO. My monthly packages for SEO all depend on how much you want done. I charge $25US an hour. With that my recommended package would be 20 hours a month this will give you the best outcome. Of course the more hours you do the better outcome you will get but at 20 hours a month I can really get enough done to your site that it will show improvement a lot quicker and will make you more money faster. I also have a bunch more different packages and prices for web based projects, you can go to Work Prices.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1060&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/work/top-10-seo-tools/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>SEO Optimization</title>
		<link>http://www.shanestrong.com/work/seo-optimization</link>
		<comments>http://www.shanestrong.com/work/seo-optimization#comments</comments>
		<pubDate>Fri, 07 Aug 2009 18:47:06 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[SEO Optimized]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1048</guid>
		<description><![CDATA[What is SEO and how can it help me? That is the question you should be asking your self if you have a web site. SEO stands for Search Engine Optimization. How do you get your site to the top of search engines? Well this is a really great place to start. SEO optimization can [...]]]></description>
			<content:encoded><![CDATA[<p>What is SEO and how can it help me?  That is the question you should be asking your self if you have a web site.  SEO stands for Search Engine Optimization.  How do you get your site to the top of search engines?  Well this is a really great place to start.  SEO optimization can improve the traffic of your site and the sales of your site.  Basically SEO is what happens when you tell search engines what exactly you want people to search and find you as.  Well some people say that this can be hard because there are so many sites out there that it is almost impossible to get to the top.  Well those people are wrong.  With some great planning and strategy any site can make it to the top of any search engine.  For a example if you search the word Chosen in Google you will get 169,000,000 hits for just the word Chosen.  Well one of the companies that I own is Chosen LLC.  One of our sites is chosendevelopment.com you will find it at around 7 or 8 and rising.  Now we just started doing SEO on our Chosen Development site about 3 months ago.  Yes we spent a lot of time and planing in order to get to where we are now.</p>
<h3>Practical</h3>
<p>Now for a little practical look at SEO.  If someone came to me and said I want to be number one for the word Google I would look at you and tell you to talk to this company called Google.  Some things are not able to happen.  One of the biggest things with SEO is that it takes time.  Look at my site for instance I live in Michigan around the Lansing Area.  Now I am trying to get to the top for Lansing Web Design, Lansing Web Development, Michigan Web Design, Michigan Web Development, and a ton of other Michigan and Lansing combination&#8217;s.  Well I am finally getting there after 5 months of hard work.  One thing that most people don&#8217;t understand is that in order to get to the top for a certain word or phrase you have to beat out the competition.  That means you have to do research on what other people do, how they do it, where there flaws are, and how can you beat them.</p>
<h3>SEO Consists</h3>
<p>SEO and SEM are two totally different things people think that one goes with the other.  Well they are kind of right in the fact that they both assist each other.  SEM is Search Engine Marketing, this consists of stuff like Google Adsence, Post Writing, Building Backlinks, and a bunch of other things.  SEO is mainly focused around Meta tags and search engine submissions.  Meta tags are not a really big thing for SEO.  That is what people say.  Well I feel that they are still a very big thing.  Meta tags direct search engines on what to index on your site.  There are a ton&#8217;s of different Meta tag that you can use in SEO but the most important ones are Keywords, Descriptions, and Titles.  The last thing that I will leave you with is that everyone can do SEO and SEM.  SEM is a little easier for people because of all the social media places out there.  SEO is really hard and takes a lot of planning.  I would recommend everyone to leave SEO to the people that consider them self experts.  I am not saying don&#8217;t try to learn SEO or teach your self SEO because you could become one of those experts.</p>
<h3>SEO Packages</h3>
<p>If you are in need of any Search Engine Optimization I do have packages and I can teach people how to do SEO.  My monthly packages for SEO all depend on how much you want done.  I charge $25US an hour.  With that my recommended package would be 20 hours a month this will give you the best outcome.  Of course the more hours you do the better outcome you will get but at 20 hours a month I can really get enough done to your site that it will show improvement a lot quicker and will make you more money faster.  I also have a bunch more different packages and prices for web based projects, you can go to <a title="Web Design, Development, SEO, SEM, Marketing, Consulting, and Optimization" href="http://www.shanestrong.com/work-prices">Work Prices</a>.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1048&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/work/seo-optimization/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>jQuery Hover</title>
		<link>http://www.shanestrong.com/lansing-web-design/jquery-hover</link>
		<comments>http://www.shanestrong.com/lansing-web-design/jquery-hover#comments</comments>
		<pubDate>Fri, 24 Jul 2009 03:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1003</guid>
		<description><![CDATA[As a developer I hate the fact that Internet Explorer is not up to date with their web browser. For instance the w3 has approved that you can use the :hover selector on anything not just a tags. Now most browsers do support the :hover selector but IE. Why they can&#8217;t catch up with times [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer I hate the fact that Internet Explorer is not up to date with their web browser.  For instance the w3 has approved that you can use the :hover selector on anything not just a tags.  Now most browsers do support the :hover selector but IE.  Why they can&#8217;t catch up with times and be like everyone else is beyond my comprehension.  Well one really useful thing to fix this problem is jQuery Hover.  You can use jQuery Hover to give any object a hover state and it will work in IE and all other browsers.  Also you can have jQuery pull out the a tags href from inside any element.  For instance if you have some blocks with different information that you want to link to a certain page all you will have to do is make a box and call the a tags href.</p>
<h3>jQuery Hover State</h3>
<p>So to show you how to do this I am going to use my site under my main post on the homepage I have some of my recent post.  Now I want to have the full post area to have a jQuery hover state that changes the background.  So I would do this.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing when 
    //going outside the object area
    function out(event) {
	    $(this).css(&quot;background&quot;, &quot;&quot;);
	}
});</pre></div></div>

<h3>jQuery Hover with a click event</h3>
<p>If you want jQuery to do a hover state only then that will work for you but if you want to get the a tags href, so that when you click on the object area it will take you to that page.  You would have to add this after your jQuery hover code.  So now your jQuery code should be.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing 
    //when going outside the object area
    function out(event) {
	$(this).css(&quot;background&quot;, &quot;&quot;);
    }
    //This adds the click event to your object and tells it where to go
    $('#YOURID').click(function() {
	window.location=$(this).find(&quot;a&quot;).attr(&quot;href&quot;);
    });
});</pre></div></div>

<p>This is very useful to get around the IE problem and if someone checks your site they can see that you know jQuery.  If you need any help with this just let me know.  I would be more than willing to help.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1003&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/lansing-web-design/jquery-hover/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Install Magento Themes</title>
		<link>http://www.shanestrong.com/chosen/how-to-install-magento-themes</link>
		<comments>http://www.shanestrong.com/chosen/how-to-install-magento-themes#comments</comments>
		<pubDate>Thu, 23 Jul 2009 03:35:30 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Magento Themes]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=989</guid>
		<description><![CDATA[One of the biggest and best e-commerce shopping carts is Magento. Magento has a free version at Magento Commerce. This system can be quite confusing when you are trying to change your theme. It isn&#8217;t like most other systems where you get one folder and all you have to do is upload it and activate [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest and best e-commerce shopping carts is Magento.  Magento has a free version at <a target="_blank" href="http://www.magentocommerce.com/download">Magento Commerce</a>.  This system can be quite confusing when you are trying to change your theme.  It isn&#8217;t like most other systems where you get one folder and all you have to do is upload it and activate it.  I have put together a walk through on how to install/change your Magento theme.<br />
First off you have to go out and find a Magento theme.  Some of these are quite expensive but come with much more than just your typical free one.  The first place I would check for themes is <a target="_blank" href="http://ecommerce-themes.com/">ecommerce-themes</a> they have quite a few really nice looking themes for you to download.  After getting your theme, it should come in a zip file extract those on your computer.  Inside the extracted folder you should get two folder called app and skin.<br />
The next thing you have to do is add those folders to your Magento installation.  This requires you to ftp into your site.  The app and skin folders go in different places.  The app folder needs to be uploaded to your <b>magento/app/design/frontend/default</b> directory and your skin folder needs to be uploaded in your <b>magento/skin/frontend/default</b> directory.</p>
<h3>Magento CMS Manage Pages</h3>
<p>Now that you have these folder in your Magento site we have to go through the admin to tell the site to use the new theme.  First log in to your admin and go to the CMS tab and them manage pages.<br />
<br />
<img src="http://www.shanestrong.com/wp-content/uploads/2009/07/Magento-CMS-Pages.jpg" alt="Magento CMS Pages" title="Magento CMS Pages" width="400" height="250" class="alignnone size-full wp-image-994" /></p>
<h3>Custom Design Pages</h3>
<p>Inside there you will have to change every pages custom design to your new theme name you installed.</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2009/07/Magento-Custom-Design-Pages.jpg" alt="Magento Custom Design Pages" title="Magento Custom Design Pages" width="400" height="153" class="alignnone size-full wp-image-995" /><br />
</p>
<h3>System Configure Design</h3>
<p>Next you will have to go to the System tab and then Configure.  Inside the Configuration section go under Design and change all of the relevant fields to your new theme name.  Make sure you save everything and your theme should be up and ready to go.</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2009/07/System-Configure-Design.jpg" alt="System Configure Design" title="System Configure Design" width="400" height="231" class="alignnone size-full wp-image-996" /><br />
</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=989&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/how-to-install-magento-themes/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To jQuery Toggle</title>
		<link>http://www.shanestrong.com/chosen/how-to-jquery-toggle</link>
		<comments>http://www.shanestrong.com/chosen/how-to-jquery-toggle#comments</comments>
		<pubDate>Wed, 22 Jul 2009 08:09:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=950</guid>
		<description><![CDATA[jQuery was made to change the way that you write JavaScript. jQuery has tons of really nice effects that you can experiment with. One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it. [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery was made to change the way that you write JavaScript.  jQuery has tons of really nice effects that you can experiment with.  One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it.  You can use the toggle effect in multiple different way most of the time people just use the toggle up to down or toggle left to right.  But some people don&#8217;t know that you can use jQuery toggle to go from your upper left or right corner to the opposite corner.  Well here is some code that you can reference on different ways to toggle.</p>
<h2>Lets do the easy toggles first</h2>
<h3>Top To Bottom</h3>
<p>I am doing this for the comments section of most WordPress sites.  First you have to give the identify what the outer most container is of your comments section.  Mine is id comments.  So just to the top of my comments section I need to create a button but you don&#8217;t have to use a button it is just the easiest to explain.  So you should have something that looks like this.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;button id=&quot;comments_bottom&quot;&gt;This Is A Toggle Button&lt;/button&gt;
&lt;div id=&quot;comment&quot;&gt;
//Your Comment Code
&lt;/div&gt;</pre></div></div>

<p>You will notice that I gave the button a id that is so that jQuery can find it.  Next you have to create your js file.  I would name it something like toggle.js.  It should look like this depending on which way you want your content to toggle.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Top To Bottom
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({height: &quot;toggle&quot;}, 1000);
	});
});
//Left To Right Or Right To Left
//In order to do either you must float your #comment 
//the direction you want your content to come from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;}, 1000);
	});
});
//Upper Left To Lower Right Or Upper Right To Lower Left
//These ones you also have to float from the direction 
//they are coming from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;, 
                    height: &quot;toggle&quot;}, 1000);
	});
});</pre></div></div>

<p>Now all you have to do is call your jQuery script and a jQuery library and your toggle up to down should work.  I use the Google library because of how quick it is.  You can find more info about the Google library here  <a target="_blank" href="http://code.google.com/apis/ajaxlibs/documentation/">jQuery Library</a></p>
<h3>Other Ways To Toggle</h3>
<p>There are a few other ways to do a toggle like from bottom to top and bottom corners to top corners.  There is also some other things that you can do with toggle like fading.  jQuery has a lot of really easy and light things that you can do to your site to make it just that much better.  If I were you I would take a look at their site <a target="_blank" href="http://jquery.com">jQuery</a>.</p>
<h3><a target="_blank" href="http://chosendevelopment.com" title="Chosen">Website Design , Development, and SEO Marketing</a></h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=950&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/how-to-jquery-toggle/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Build A Website Traffic Jam</title>
		<link>http://www.shanestrong.com/seo/build-a-website-traffic-jam</link>
		<comments>http://www.shanestrong.com/seo/build-a-website-traffic-jam#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=935</guid>
		<description><![CDATA[Most people look at their website and go why am I not getting traffic to it. Well if you just look at the site it won&#8217;t build any traffic. My question to you is would you like to have a traffic jam on your website. I would because that means my site is getting so [...]]]></description>
			<content:encoded><![CDATA[<p>Most people look at their website and go why am I not getting traffic to it.  Well if you just look at the site it won&#8217;t build any traffic.  My question to you is would you like to have a traffic jam on your website.  I would because that means my site is getting so much traffic I am going to have to upgrade my servers.  Wouldn&#8217;t that be great so much traffic that your server crashes.  Most people have no idea on how to create traffic to their site let alone just doing that basics to gain traffic.  Well I am going to give you a breakdown of some of the basics to building traffic.  Just so you know building traffic takes time and sometimes money.</p>
<h3>Traffic Meta Breakdown</h3>
<p>Back in the day all traffic came from your meta tags and your keywords.  Don&#8217;t get me wrong these are still very useful but they don&#8217;t build you as much traffic because of the millions of website out there.  To give you an example I would love to be the number 1 site on Google for web design well that really isn&#8217;t practical it is possible but when you search <strong>web design</strong> you get 343,000,000 that is how many pages are being crawled with the words <strong>web design</strong>.  Now I am not saying don&#8217;t try to get to the top of the list.  Defiantly try but try for something a little smaller like for instance I am from Michigan and so I am trying to get top for <strong>Lansing Web Design</strong> and <strong>Michigan Web Design</strong>.  If you search Lansing Web Design I am close to the top.  Now if I use keywords like that and try to focus on a smaller scale my site will rise on the bigger scale.<br />
Your keyword meta tag is important but you have two other tags that are even more important your title meta tag and description meta tag.  Your title meta tag is different from your normal title tag because it is what the browsers look at first and way a lot of their decisions on.  The regular title tag is also very important it should be used everywhere that it is possible.</p>
<h3>Best Ways To Produce Traffic</h3>
<p>Here is a list of some really good ways to build traffic to your site.<br />
1) Submitting &#8211; You must submit your site to search engines.<br />
2) Use a favicon.ico<br />
3) Depending on what your site is about submit it to other sites with that kind of material.<br />
4) Have a lot of content.  This still has to be good content.  Pictures really bring in lots of traffic.<br />
5) Use your META tags effectively. <a target="_blank" href="http://webnet77.com/webstuff/optimize.html">META help</a><br />
6) Advertise with google or other advertising companies.<br />
7) Use Social Media by talking about your site.</p>
<p>Probably the fastest way to get traffic to your site is pay per click.  Yes it is going to cost you but in the long run of things it will be worth it.  Some people think that after doing these things your site will just magically appear at the top of Google or Yahoo but it won&#8217;t.  Building a vast amount of traffic takes time and some times money.</p>
<h3><a target="_blank" href="http://chosendevelopment.com">Website Design , Development, and SEO Marketing</a></h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a>. <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a> is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=935&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/seo/build-a-website-traffic-jam/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New WordPress Features</title>
		<link>http://www.shanestrong.com/wordpress-help/new-wordpress-features</link>
		<comments>http://www.shanestrong.com/wordpress-help/new-wordpress-features#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:12:03 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=907</guid>
		<description><![CDATA[New Release 2.8 With the new release of WordPress 2.8 the developers really took in what people had to say and made some vast changes to the content management system. One of the biggest changes that the team made that the end user and really the admin won&#8217;t really see is the database changes. The [...]]]></description>
			<content:encoded><![CDATA[<h3>New Release 2.8</h3>
<p>With the new release of WordPress 2.8 the developers really took in what people had to say and made some vast changes to the content management system.  One of the biggest changes that the team made that the end user and really the admin won&#8217;t really see is the database changes.  The WordPress team made the database much more efficient and much faster that allows for faster page load in the admin and load for the site.  WordPress added some much needed functionality that helps the developer perform much faster.  Some of those changes include.</p>
<h3>Functionality Changes</h3>
<ul>
<li>Theme and Plugin Editor</li>
<li>Theme Installer</li>
<li>Plugin Management</li>
</ul>
<h3>WordPress Changes</h3>
<p>These are just some of the changes that WordPress implemented in the 2.8 release.  All three of these changes speed up the development process on creating a theme for a site.  I will be the first one to say that I use previously developed themes and recreate off of them because it is much faster just to use already created code.  With using a already created theme it used to be a pain to have to ftp into your site and add the theme into the theme directory for your site.  With the implementation of the Theme Installer you can upload a theme in its zip file or you can search the WordPress database for a theme.  Much faster than having to go out and download the theme and then upload it to the theme folder.  Now I have always been against using the theme/plugin editor that was built into the content management system but now that it is changed I have been using it for little changes but I still use a outside code editor.  They made some great changes with it like the ability for line numbers and the function dropdown at the bottom of it.  The new creation of how you manage plugins is great with the ability to deactivate each plugin individually and delete each one without having to go to the top of the page and click the dropdown and select delete.  Probably the best thing with the plugin managment upgrade is the update feature that allows you to update each plugin right there.</p>
<h3>Stuff Not Really Noticed</h3>
<p>WordPress has implemented quite a few thing that the end user will not really notice but will be really affective like the ability to automatically update time when it is daylight savings time.  Also the ability to control the columns on the dashboard page is also a plus for the admin so they can stay updated with whatever it is they have on the dashboard.  Another little change that helps the admin users is the recreation of the widget panel.  Now with more intuitive activity, it makes it easier to add widgets to the sidebars.  One of my favorite things that WordPress implemented is a popup banner to inform the admin that they have not changed the auto generated password.</p>
<h3>Your Questions</h3>
<p>The only question about this new installation of WordPress is what could they possibly do to the platform next to make it even better?  If you have any ideas and don&#8217;t want to submit them please leave a comment on the post and I will submit them for you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=907&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/new-wordpress-features/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>WordPress Functions</title>
		<link>http://www.shanestrong.com/wordpress-help/wordpress-functions</link>
		<comments>http://www.shanestrong.com/wordpress-help/wordpress-functions#comments</comments>
		<pubDate>Tue, 23 Jun 2009 19:21:59 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=879</guid>
		<description><![CDATA[WordPress is the top in Blogging Content Management Systems by far with its vast following and well known product. Not to mention WordPress has some of the best functionality for the end user. I have talked a little in the past about WordPress and how to set in up and how to create parts. Well [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is the top in <strong>Blogging Content Management Systems</strong> by far with its vast following and well known product.  Not to mention WordPress has some of the best functionality for the end user.  I have talked a little in the past about WordPress and how to set in up and how to create parts.  Well now I really want to get into the heavier insides of WordPress.  Things that maybe the majority of end users will not understand.</p>
<h3>Most Valuable Function</h3>
<p>I am going to start off this functions post talking about probably the most heavily used WordPress function called <strong>bloginfo</strong>.  This is a really useful function if you can understand it.  It is quite easy to start the function because it is built in to WordPress all you have to do is call the function and give it what parameters you would like it to have.  The code to call this function looks something like this &lt; ?php bloginfo(&#8216;YOUR PARAMETERS&#8217;); ?&gt;.  As you can see it is quite easy to call this function but in order to understand what you can do with this function is another hurdle.</p>
<h3>List of the Parameters</h3>
<ul class="half">
<li>admin_email</li>
<li>atom_url</li>
<li>charset</li>
<li>comments_atom_url</li>
<li>comments_rss2_url</li>
<li>description</li>
<li>home</li>
<li>html_type</li>
<li>language</li>
<li>name</li>
<li>pingback_url</li>
<li>rdf_url</li>
</ul>
<ul class="half">
<li>rss2_url</li>
<li>rss_url</li>
<li>siteurl</li>
<li>stylesheet_directory</li>
<li>stylesheet_url</li>
<li>template_directory</li>
<li>template_url</li>
<li>text_direction</li>
<li>url</li>
<li>version</li>
<li>wpurl</li>
</ul>
<p>Well that looks like a long list of stuff but a lot of those come in handy quite often.  I am not going to go into what they all do but I will talk to you about a couple of them so that you have some idea of what you can do with them.</p>
<h3>Most Common Parameters</h3>
<p>The first one that I am going to talk about is the url.  Well to me this one is self explanatory what this does for your site is echos out the url of the site.  So if your site is http://www.example.com then the bloginfo function for url would echo out your url.  So if you needed to do an a tag and you wanted to echo out your url all you would have to do is say  now a lot of people would look at that and say why wouldn&#8217;t I just write my url in their instead.  Well if you write your url in there it will only work for your url and so if you are creating a theme then you wouldn&#8217;t be able to sell this theme.  now I am going to move on to another parameter known as name.  All that this does is echos out what you called your blog and you can change this inside the admin section of WordPress.  So a practical use for this would be putting it inside of the a tag that we just used so it would look like this &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;.  That way if you named your blog EXAMPLE the link would say EXAMPLE.  The last parameter that I am going to talk about is description this is also known as your tag line.  You can also set this up inside of the admin section of your blog.  This comes in handy quite often in the header and footer sections of a site.  Mainly because almost every company has a tag line or MATO that they try to emphasize on.  So by saying &lt;?php bloginfo(&#8216;description&#8217;); ?&gt; you can plaster your MATO all over your site.  Well that is my last example for you I really hope that you start messing around with the other parameters because they can come in really great use to you and your site.</p>
<h3>Additional Help &#8211; Chosen LLC</h3>
<p>If you are in need of some help with your WordPress site or any other web related issues you can either contact me or you can go to the Chosen Development site for more help.  We are based out of Saint Johns, Michigan and we specialize in Design and Development we do seminars in the Lansing Area on all different types of web information.  Chosen is a growing company of about 8 people 4 full time and 4 part time.  We would love to hear from you about possible Design or Development work and if you are from the Lansing Area we would be willing to meet with you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=879&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/wordpress-functions/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chosen Web Design &amp; Development</title>
		<link>http://www.shanestrong.com/chosen/chosen-web-design-development</link>
		<comments>http://www.shanestrong.com/chosen/chosen-web-design-development#comments</comments>
		<pubDate>Thu, 07 May 2009 20:26:23 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=790</guid>
		<description><![CDATA[Currently Chosen has some really interesting domains one in particular is ByChosen.com we have had this domain for quite some time and have not really found a use for it until recently.  All of the Chosen crew have worked on multiple different things.  The crew consists of Shane Strong, Clayton McIlrath, Ravi Vora, and Nicholas [...]]]></description>
			<content:encoded><![CDATA[<p>Currently Chosen has some really interesting domains one in particular is <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a> we have had this domain for quite some time and have not really found a use for it until recently.  All of the Chosen crew have worked on multiple different things.  The crew consists of Shane Strong, Clayton McIlrath, Ravi Vora, and Nicholas Rivera.  We are going to showcase this work that we have done on our <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a> site.  We won a really cool flash application that we are going to be displaying on this site so I encourage everyone to check it out <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a>.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=790&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/chosen-web-design-development/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make A WordPress Theme Part 2?</title>
		<link>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme-part-2</link>
		<comments>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme-part-2#comments</comments>
		<pubDate>Thu, 07 May 2009 00:40:30 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Selected Nav]]></category>
		<category><![CDATA[WordPress Selected]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=785</guid>
		<description><![CDATA[Alright I left off with having you download my theme Wooden Default. I am going to be referencing this theme so if you download it you will understand what I am doing much easier. Today I am going to talk about the first steps in developing a theme, this is considering that you already have [...]]]></description>
			<content:encoded><![CDATA[<p>Alright I left off with having you download my theme Wooden Default.  I am going to be referencing this theme so if you download it you will understand what I am doing much easier.  Today I am going to talk about the first steps in developing a theme, this is considering that you already have a design.<br />
The first thing that I do when creating a theme is worry about the header.php page.  This header page is used on every page on your site so what ever you would like to appear at the top of every page will go in here.  Later I will teach you how to put stuff specific to a certain page in the header.  Some of the thing you have to know at the start WordPress has some code that you must have in some of the pages.</p>
<h3>The Start</h3>
<p>Well to start the header it is just like you would start any other page.</p>
<p><strong>This tells the browser which type of markup language the page is written in:</strong> &lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
<strong></strong></p>
<p><strong>This is your HTML tag with a WordPress language attribute:</strong> &lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; &lt;?php language_attributes(); ?&gt;&gt;</p>
<p><strong>This is your HEAD tag:</strong> &lt;head&gt;</p>
<p><strong>This is your TITLE tag which looks a lot different than the normal TITLE tag:</strong> &lt;title&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;?php wp_title(&#8216;-&#8217;); ?&gt;&lt;/title&gt;.</p>
<p>This is because WordPress has a function called bloginfo which can do quite a bit of different things and I will leave you to find these out.  But in this instance we are using blog info NAME, this is just the name to which you gave your site.  Also the wp_title is just the title of the page you are on so if you are on your about page it would look like this(Your Blog Name &#8211; About).  The wp_title function you can also do quite a bit with.  This is not everything that you can do for your TITLE and if you are using my Wooden Default theme you will see some other things that you can do and dont stop there you can find much more at <a target="_blank" href="http://www.wordpress.org" target="_blank">wordpress.org</a>.</p>
<p><strong>This is to connect to your STYLE Sheet which we will talk more about in another session:</strong>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</p>
<p><strong>This is your RSS FEED:</strong> &lt;link rel=&#8221;alternate&#8221; type=&#8221;application/rss+xml&#8221; title=&#8221;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt; RSS Feed&#8221; href=&#8221;&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;&#8221; /&gt;</p>
<p>There is quite a few different things that you can do with this and you can check them out at <a target="_blank" href="http://www.wordpress.org" target="_blank">wordpress.org</a>.</p>
<p><strong>This is your PINGBACK so people and servers can ping you:</strong> &lt;link rel=&#8221;pingback&#8221; href=&#8221;&lt;?php bloginfo(&#8216;pingback_url&#8217;); ?&gt;&#8221; /&gt;.</p>
<p>As you can see with this we are using another WordPress bloginfo function.</p>
<p><strong>This is a WordPress function to denote the end of the HEAD section:</strong> &lt;?php wp_head(); ?&gt;</p>
<p><strong>This is the Closing tag for the HEAD section: </strong>&lt;/head&gt;</p>
<p>With just these you can start your header section but you can add more depending on what you want the site to do.  If you would like to have more stuff on every page I would start your BODY tag: &lt;body&gt;.  After that I would make a class wrapper that way you can make sure everything in your site stays inside the wrapper class.  With my Wooden Default theme that I hope everyone is using you can see that I have added quite a few different things to the header.  These include a header section and a nav section.  These are most of the time standard for WordPress themes.  Inside the header section you can create your LOGO, your RSS link, your site description, your register and admin functions.</p>
<h3>Wooden Default Theme</h3>
<p>I am going to go into some of the thing that are in the Wooden Default theme so if you have not downloaded it I would so you understand.  If you look at the DIV PAGE section you will see some more bloginfo functions one being url which just echos out the site url.  So if you need to put this anywhere on your site you can use this.  Or if you want to call a specific page you can use this so that you do not have to use your actual url.  The bloginfo name just echos out your blog/site name.  The bloginfo description echos out your description that can be set up in the admin section.  The bloginfo rss2_url if your RSS2 url.  These all can be used to make your site much easier to read and there are quite a few other bloginfo functions on the <a target="_blank" href="http://www.wordpress.org" target="_blank">wordpress.org</a> site.  Some of the other things that are found in the Wooden Default header are wp_list_pages, wp_register, wp_loginout, is_home, and get_option all of these can be used through out the development of your WordPress theme.</p>
<p>Well that wraps up the header section of a WordPress theme, there is alot of different thing that you can do with the header section and in one post I am not able to tell you them all and I dont know them all.  One thing I would ask of you is to go out and experiment with all the different things that you can do with your header section.  Go to the themes section of wordpress.org and download a simple theme and see what they have used in the header.  Research the bloginfo function it is used quite a bit in your theme development.  Well next time I am going to talk about the index page which can be really easy or really confusing depending on how much you research.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=785&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme-part-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make a wordpress theme?</title>
		<link>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme</link>
		<comments>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme#comments</comments>
		<pubDate>Sat, 25 Apr 2009 07:33:25 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Selected]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=724</guid>
		<description><![CDATA[Well I find that WordPress is quite a easy system to understand as long as you know how to code.  If you do not know at least HTML, CSS, and PHP then you probably should not read anymore and learn these languages before thinking of trying to create a WordPress theme.  Most WordPress themes are [...]]]></description>
			<content:encoded><![CDATA[<p>Well I find that WordPress is quite a easy system to understand as long as you know how to code.  If you do not know at least HTML, CSS, and PHP then you probably should not read anymore and learn these languages before thinking of trying to create a WordPress theme.  Most WordPress themes are made up with certain pages these are 404, archive, comments, footer, functions, header, index, page, search, searchform, sidebar, single, and style.  All of these pages are PHP pages except the style sheet which is a CSS page.</p>
<h3>Pages List</h3>
<ul>
<li>The 404 page is your error page which I will talk about a little later.</li>
<li>The archive page is for when you search.</li>
<li>The comment page is for your comments.</li>
<li>The footer page is for your footer.</li>
<li>The functions page is for any functions your would like to create.</li>
<li>The header page is your header for every page.</li>
<li>The index is your home page so that it can have a different layout than all the other pages.</li>
<li>The page page is the layout page for all the pages you create in the admin.</li>
<li>The search is the layout for the page when you search for something.</li>
<li>The searchform is just what you have the search form doing.</li>
<li>The sidebar is creating the sidebar so when you add it to pages it will go through the functions.</li>
<li>The single page is for when you click on a post it will take you to the single post.</li>
</ul>
<h3>To Have Successful Theme</h3>
<p>All of these pages are a must for you to have a successfully working WordPress theme.  There are quite a few thing that you can do with these pages and other pages that I will talk about some other time.  With everything that you can do with these page it will take much more than one blog post to explain so I am going to leave the first one short and sweet.  I am going to go into a somewhat step by step walk through on how to make each page.  One of the first thing that I would do as a new theme developer is find a free theme somewhere on the web preferably wordpress.org/extend/themes and if you would like to make this easy search for <a target="_blank" href="http://wordpress.org/extend/themes/wooden-default">wooden default</a> and this is my theme that is really simply and easy to understand.  Now that you have your theme take a look at the pages in your theme folder you should either have all of these pages or more.  If you don&#8217;t have these pages I will eventually teach you how to create them.  Well I am going to leave everyone with this task and post the next part in a couple days.  If you do not download my theme please leave me a comment on what one&#8217;s you do download.  Or if you are a designer and would not like to take the time to develop a theme please feel free to send your mockups/psds over to me and I will develop the theme.  Of course I will host it on my site and expect a link to my site in the footer.  But that is standard for all themes.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you need assistance with web design, web development, search engine optimization, or marketing done to one of your sites please feel free to contact me or Chosen. Chosen is a small, but growing Lansing-based firm offering Web Development, Web Design, Web Hosting, and Web Marketing skills. We have done work for clients and companies, by preference, but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<img src="http://www.shanestrong.com/?ak_action=api_record_view&id=724&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/how-to-make-a-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
	</channel>
</rss>
