<?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>The Official Wall of Mark Keeler &#187; Website building tips</title>
	<atom:link href="http://www.markkeeler.com/category/website-building-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markkeeler.com</link>
	<description>A Place To Find Ways to Create what you want through Social Networking</description>
	<lastBuildDate>Mon, 15 Mar 2010 04:04:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Create a Free Website in Less Than 5 Minutes</title>
		<link>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/</link>
		<comments>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 18:30:31 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[landing page]]></category>
		<category><![CDATA[website building]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=401</guid>
		<description><![CDATA[A friend of mine informed me of a great free website building tool.  Weebly!  It will host the site and help you build a real functioning website with no programming skills. Click on this on screen video to see how I made a simple website in approximately 4 minutes. Here are the steps: Website building [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine informed me of a great free website building tool.  Weebly!  It will host the site and help you build a real functioning website with no programming skills.</p>
<p>Click on this on screen video to see how I made a simple website in approximately 4 minutes.</p>
<p>Here are the steps:</p>
<p><a href="http://screencast.com/t/aaSbpvxqE">Website building video</a></p>
<ol>
<li>Go to <a href="http://www.weebly.com">Weebly.com<br />
</a></li>
<li>Create an account</li>
<li>Create your website</li>
</ol>
<p>It&#8217;s really this simple.  You can make a blog, landing page, start a small business, etc.  It&#8217;s a great tool to learn how to design a website without knowing how to program.  It&#8217;s a great site to use as inbound links to your main business site for &#8216;SEO.  A link is a link!  Make sure the link is relevant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add a Custom WordPress Template</title>
		<link>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/</link>
		<comments>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 18:15:12 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[kompozer]]></category>
		<category><![CDATA[landing page]]></category>
		<category><![CDATA[sales copy]]></category>
		<category><![CDATA[squeeze page]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=381</guid>
		<description><![CDATA[I was doing some searching on Google trying to figure out how to make a custom WordPress template without doing a whole lot of coding.  I came across this simple peice of coding that works like magic. The first step is to create your desired page in HTML, I use Kompozer an HTML editor since [...]]]></description>
			<content:encoded><![CDATA[<p>I was doing some searching on Google trying to figure out how to make a custom WordPress template without doing a whole lot of coding.  I came across this simple peice of coding that works like magic.</p>
<p>The first step is to create your desired page in HTML, I use <a href="http://kompozer.net/">Kompozer</a> an HTML editor since I am somewhat geek impaired and can’t actually write any code,  I use a free editor called <a href="http://kompozer.net/">Kompozer</a>.  In this case we are not going to add content to this page from within the dashboard so add all your meta tags for SEO.   It will need a title, description, keywords, basically everything a regular static HTML page would need. After you create your new page you need to create a new WordPress page template. This can be done either in a text editor and FTP uploaded to your site or, since it is a small simple file you can create it directly in your hosting account’s control panel.</p>
<p>To create the new page template paste your HTML code into a text editor like Notepad, then paste the following PHP code directly above it like this:</p>
<table style="width: 298px; height: 74px;" border="0">
<tbody>
<tr>
<td style="border: 1px solid #480cf2; background-color: #cfccc8;" align="center">&lt;?php /* Template Name: New Template Name<br />
*/ ?&gt;</p>
<p style="text-align: left;">&lt;html&gt;<br />
Your HTML Code Here</td>
</tr>
</tbody>
</table>
<p>Copy just the 2 lines of code above the &lt;html&gt; tag and paste it into your new template and change New Template Name to a name of your choosing.   Save the new page template as a .php file.   Something like test.php, and upload it to your hosting account in the template folder of your current WordPress theme.   Don’t call your new template page.php!   There is already one called that.   Double check the name so you do not over write any existing templates or pages.</p>
<p>You can look at your current page.php template to get clues as to what you may want to include in your custom page template like the header and footer or possibly the sidebar.  The idea of a template is to make it look unique.  I highly reccomend staying away from sidebars and headers unless they are uique to this page.</p>
<p>The directory to place the new page template in is blog/wp-content/themes/<span style="color: #000000;"><span style="color: #ff0000;">default</span>.</span> Where <span style="color: #ff0000;">default</span> is the currently active theme.</p>
<p>Since you are placing this new WordPress page template into a specific themes folder it will only be available when that specific theme is active. If you change themes you will need to place a copy of it into the currently active theme.</p>
<p>To create a new page template within your hosting accounts control panel. Browse to your blogs main directory, wp-content, themes, then click on your currently active theme. Create a new PHP file, call it whatever you wish, like above front.php, paste your HTML code and then the PHP code directly above <span style="font-size: small;">it and save. </span></p>
<p><span style="font-family: arial black,avant garde;"><span style="font-size: large;">Creating Your New Custom Page</span></span></p>
<p>Login to your WordPress Dashboard, click Write then Write Page. Since we didn’t specify in the custom page template to get the content, or any other information for that matter, all we need to do here is create a new page and specify the page template to use.</p>
<p>Type a title in the title box, then look over to the right and click the Page Template drop down box, choose your new WordPress page template and click publish</p>
<p><span style="font-family: arial black,avant garde;"><span style="font-size: large;">Squeeze Page</span></span></p>
<p>This custom page is a great starting point to make a landing or squeeze page.</p>
<p><a href="http://kompozer.net/">Kompozer</a> is an excellent WYSIWYG editor.  I don&#8217;t know code.  I really on my uncanny ability to copy what other people have created!  You can add your own sales copy in the normal mode and it will code it for you.  Just cut and paste the auto repsonder code where you desire it and now you have a custom landing page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gimp for photo editing</title>
		<link>http://www.markkeeler.com/gimp-for-photo-editing/</link>
		<comments>http://www.markkeeler.com/gimp-for-photo-editing/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:12:55 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[photo shop]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=213</guid>
		<description><![CDATA[What is Gimp?  GNU Image Manipulation Program.  In less than 5 minutes I had created a crude custom header for my Word Press blog.  I have never used a photo editing tool before other than free ones like Picassa!  I found this easy to pick up after viewing a few online tutorials. Gimp is an [...]]]></description>
			<content:encoded><![CDATA[<p>What is Gimp?  GNU Image Manipulation Program.  In less than 5 minutes I had created a crude custom header for my Word Press blog.  I have never used a photo editing tool before other than free ones like Picassa!  I found this easy to pick up after viewing a few online tutorials.</p>
<p>Gimp is an open source photo editing tool similar to Photo Shop without the price tag.  There are currently over 20 individuals working and up dating the software.  I found it fairly easy to use.  I have never used Photo Shop.  I have no way to compare it.  I did a few searches on the web for tutorials.  The tutorials were awesome.</p>
<p>Give this software a try!  <a title="Gimp down load" href="http://www.gimp.org/">http://www.gimp.org/</a> This is the official GIMP web site. It contains information about downloading, installing, using, and enhancing it.  This site also serves as a distribution point for the latest releases.  Grab a properly chilled beverage and enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/gimp-for-photo-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIMPSHOP</title>
		<link>http://www.markkeeler.com/gimpshop/</link>
		<comments>http://www.markkeeler.com/gimpshop/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 05:45:29 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[photo shop]]></category>
		<category><![CDATA[web editing]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=203</guid>
		<description><![CDATA[I just down loaded GIMPSHOP for photo editing and web design.  I am in the business of learning as much as I can in the shortest amount of time.  Now comes the hard part, the steep learning curve.]]></description>
			<content:encoded><![CDATA[<p>I just down loaded GIMPSHOP for photo editing and web design.  I am in the business of learning as much as I can in the shortest amount of time.  Now comes the hard part, the steep learning curve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/gimpshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a JING PROJECT screen capture presentation to your blog</title>
		<link>http://www.markkeeler.com/how-to-add-a-jing-project-screen-capture-presentation-to-your-blog/</link>
		<comments>http://www.markkeeler.com/how-to-add-a-jing-project-screen-capture-presentation-to-your-blog/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 05:10:14 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Business Planning]]></category>
		<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[JING]]></category>
		<category><![CDATA[SCREEN CAPTURE]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=188</guid>
		<description><![CDATA[I came across another cool tool for spicing your blog.  It&#8217;s called JING.  http://help.jingproject.com Click on the URL and see a sneak preview on how Jing works.  This is an actual JING video with audio. JING VIDEO The website goes into the specifics on how to record and play.  It takes less than 5 minutes [...]]]></description>
			<content:encoded><![CDATA[<p>I came across another cool tool for spicing your blog.  It&#8217;s called JING.  <a title="JING PROJECT" href="http://help.jingproject.com">http://help.jingproject.com</a></p>
<p>Click on the URL and see a sneak preview on how Jing works.  This is an actual JING video with audio.</p>
<p><a title="JING PROJECT" href="http://www.screencast.com/users/mwkeeler/folders/Jing/media/88a050f3-b1ab-4b57-b234-3c345d14b42e">JING VIDEO</a></p>
<p>The website goes into the specifics on how to record and play.  It takes less than 5 minutes to be up and running with your first screen capture.</p>
<p>JING works great for making online tutorials and prentations.  The free version has a 5 minute record limitation.   But hey, it&#8217;s FREE!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/how-to-add-a-jing-project-screen-capture-presentation-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
