<?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>Epic Websites &#124; Best Web Design Maryland &#187; Web Design Blog</title>
	<atom:link href="http://www.epicwebsites.com/category/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.epicwebsites.com</link>
	<description>Website Design and Consulting in Silver Spring, Maryland</description>
	<lastBuildDate>Mon, 12 Dec 2011 16:32:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>HTML5 Video Scale to Fill Container with jQuery</title>
		<link>http://www.epicwebsites.com/html5-video-scale-to-fill-container-with-jquery</link>
		<comments>http://www.epicwebsites.com/html5-video-scale-to-fill-container-with-jquery#comments</comments>
		<pubDate>Mon, 05 Dec 2011 23:10:52 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=441</guid>
		<description><![CDATA[I&#8217;m working on a new large-background WordPress theme that I am going to release for free within the next two weeks. As part of the theme, I wanted to use a high-definition HTML5 video as the background of the landing page of the theme. Here&#8217;s where I ran into trouble: browsers like to keep the aspect ratio of the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a new large-background WordPress theme that I am going to release for free within the next two weeks. As part of the theme, I wanted to use a high-definition HTML5 video as the background of the landing page of the theme.</p>
<p>Here&#8217;s where I ran into trouble: browsers like to keep the aspect ratio of the video element within the &lt;video&gt; tag the same, no matter what the scale of the containing box is. I didn&#8217;t want to change the aspect ratio, I just wanted the video to fill the background and crop any overlap outside of the browser window.</p>
<p>There are a couple libraries that one can use to solve this problem, but I couldn&#8217;t get any of them to work for me. Here&#8217;s how I did it.</p>
<h3>Using an HTML5 Video as a Background For a Website</h3>
<p>I found <a href="http://stackoverflow.com/questions/4380105/html5-video-scale-modes"   >this StackOverflow post</a> that was extremely helpful in figuring out how to scale video to the size of the screen. I had to edit his code a bit to get it to work for me.</p>
<p>&nbsp;</p>
<p>Make sure to include jQuery in the &lt;head&gt; of your document:</p>
<blockquote><p>&lt;script src=&#8221;https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>&nbsp;</p>
<p>Here is the HTML I used to get this to work:</p>
<blockquote><p>        &lt;video width=&#8221;1280&#8243; height=&#8221;720&#8243; autoplay loop id=&#8221;fullscreen_video&#8221;&gt;<br />
&lt;source src=&#8221;wp-content/themes/StekPortfolio/sample_media/wildlife.mp4&#8243; type=&#8221;video/mp4&#8243; /&gt;<br />
&lt;source src=&#8221;wp-content/themes/StekPortfolio/sample_media/wildlife.ogg&#8221; type=&#8221;video/ogg&#8221; /&gt;<br />
Your browser does not support the video tag. &lt;!&#8211; Author&#8217;s note: this should be replaced with an image, or use the css background tag to fill the background if the browser doesn&#8217;t support HTML5 &lt;video&gt;&#8211;&gt;<br />
&lt;/video&gt;</p>
<p>&lt;script src=&#8221;wp-content/themes/StekPortfolio/script.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>Contents of script.js:</p>
<blockquote><p>   var sxsw = {</p>
<p>full_bleed: function(boxWidth, boxHeight, imgWidth, imgHeight) {</p>
<p>// Calculate new height and width&#8230;<br />
var initW = imgWidth;<br />
var initH = imgHeight;<br />
var ratio = initH / initW;</p>
<p>imgWidth = boxWidth;<br />
imgHeight = boxWidth * ratio;</p>
<p>// If the video is not the right height, then make it so&#8230;</p>
<p>if(imgHeight &lt; boxHeight){<br />
imgHeight = boxHeight;<br />
imgWidth = imgHeight / ratio;<br />
}</p>
<p>//  Return new size for video<br />
return {<br />
width: imgWidth,<br />
height: imgHeight<br />
};</p>
<p>},</p>
<p>init: function() {<br />
var browserHeight = Math.round(jQuery(window).height());<br />
var browserWidth = Math.round(jQuery(window).width());<br />
var videoHeight = $(&#8216;#fullscreen_video&#8217;).height();<br />
var videoWidth = $(&#8216;#fullscreen_video&#8217;).width();</p>
<p>var new_size = sxsw.full_bleed(browserWidth, browserHeight, videoWidth, videoHeight);</p>
<p>$(&#8216;#fullscreen_video&#8217;)<br />
.width(new_size.width)<br />
.height(new_size.height);<br />
}</p>
<p>};</p>
<p>jQuery(document).ready(function($) {</p>
<p>/*<br />
* Full bleed background<br />
*/</p>
<p>sxsw.init();</p>
<p>$(window).resize(function() {</p>
<p>var browserHeight = Math.round($(window).height());<br />
var browserWidth = Math.round($(window).width());<br />
var videoHeight = $(&#8216;#fullscreen_video&#8217;).height();<br />
var videoWidth = $(&#8216;#fullscreen_video&#8217;).width();</p>
<p>var new_size = sxsw.full_bleed(browserWidth, browserHeight, videoWidth, videoHeight);</p>
<p>$(&#8216;#fullscreen_video&#8217;)<br />
.width(new_size.width)<br />
.height(new_size.height);<br />
});<br />
})</p></blockquote>
<p>The calculation for the full_bleed function was not changed from Drew Baker @ StackOverflow&#8217;s original code. All credit goes to him for that solution.</p>
<p>The main problem I ran into using this solution was that jQuery was not reading the size of the original video correctly &#8211; it was telling me the size of the video was 150 by 300 pixels when I was sure that the video was 720p. Because it was reading the size values incorrectly, it was calculating the proportion to scale to incorrectly and letterboxing the video. Ensure that your id tag in the HTML matches up with the tag identifier in the jQuery script. Also make sure you specify the size of the video when declaring the &lt;video&gt; tag in the HTML.</p>
<p>&nbsp;</p>
<p>Here is the CSS I used to tie everything together and make the video display as a background.</p>
<blockquote><p>#fullscreen_video<br />
{<br />
background: #FF0000;<br />
position: fixed;<br />
top: 0px;<br />
left: 0px;<br />
z-index: -1000;<br />
}</p></blockquote>
<p>This code could be easily modified to scale a video to fill a div tag or any container for that matter. You&#8217;d have to edit the jQuery so that it measures the size of the video&#8217;s container rather than the viewport of the browser. This is the code you&#8217;d need to modify:</p>
<blockquote><p>var browserHeight = Math.round(jQuery(window).height());<br />
var browserWidth = Math.round(jQuery(window).width());</p></blockquote>
<p>It took me about four hours to get everything working the way I wanted it to. Hopefully this guide will help to expedite this process for some.</p>
<p>Don&#8217;t hesitate to <a href="http://www.epicwebsites.com/contact-me" title="Contact"   >Contact Me</a> if you have any questions about how I got this to work or suggestions on how to improve this code.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>ADDENDUM:</p>
<p>The above code can be used for scaling other elements too. If you want to have a dynamic large image background that scales to fit the screen -well- the code above can be reworked to make any tag work. I changed my code so that it would fill everything of the &#8220;fill&#8221; class. You can email me if you&#8217;re interested in the code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/html5-video-scale-to-fill-container-with-jquery/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five Simple, Useful HTML Tags</title>
		<link>http://www.epicwebsites.com/five-simple-useful-html-tags</link>
		<comments>http://www.epicwebsites.com/five-simple-useful-html-tags#comments</comments>
		<pubDate>Wed, 30 Nov 2011 20:53:17 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=426</guid>
		<description><![CDATA[Most people don&#8217;t need to know how an HTML document is formatted or structured. They don&#8217;t need to know what goes in the &#60;head&#62; and what goes in the &#60;body&#62; tags. If you have a WordPress site and work with the HTML of pages at all (if you click on the HTML tab on the visual editor), these tags [...]]]></description>
			<content:encoded><![CDATA[<p>Most people don&#8217;t need to know how an HTML document is formatted or structured. They don&#8217;t need to know what goes in the &lt;head&gt; and what goes in the &lt;body&gt; tags. If you have a WordPress site and work with the HTML of pages at all (if you click on the HTML tab on the visual editor), these tags will likely be all you need to know.</p>
<h2>Five Useful HTML Tags</h2>
<p>Minor note: This is a really simplified guide that does not account for differences between different types and standards of HTML. I&#8217;m delivering the most typical and relevant usage of the tags &#8211; which is the XHTML version.</p>
<h3>&lt;p&gt; &#8211; The Paragraph Tag</h3>
<p>The simplest and most common of the HTML tags. This tag describes a paragraph of text within a section of content on a web page. This very text here is wrapped in a &lt;p&gt; tag!</p>
<p>To use a &lt;p&gt; tag, simply wrap whatever text you want to make into a new paragraph like so:</p>
<blockquote><p>&lt;p&gt;This is an example of how to use the paragraph tag.&lt;/p&gt;</p></blockquote>
<p>The text will show up like this:</p>
<p>This is an example of how to use the paragraph tag.</p>
<p>It&#8217;s just normal text content! Each use of the &lt;p&gt; tag creates a new line, a break between paragraphs.</p>
<p style="padding-left: 30px;">Author&#8217;s note on line breaks: You may have also seen the &lt;br /&gt; tag used to break text between lines. &lt;br /&gt; is also a valid HTML tag, but it tends to be used incorrectly. &lt;br /&gt; is great when you want to separate specific <em>lines</em> of text &#8211; if you&#8217;re writing poetry, and you need to add a new line in the middle of the sentence. &lt;p&gt; is used when you want to start a new paragraph of text. The two tags have similar effects, but are usually styled and formatted differently with CSS. Generally it is best to use the correct tag for the correct situation.</p>
<p>If you switch to the HTML editor on a WordPress page or post you might not see the &lt;p&gt; tags wrapping each paragraph of text &#8211; they are generated later by WP.</p>
<h3>&lt;a&gt; &#8211; The Hyperlink Tag</h3>
<p>&lt;a&gt; is used to specify a section of text that will be displayed as a hyperlink in a browser window.</p>
<p>To create a hyperlink, wrap a section of text in &lt;a&gt;&lt;/a&gt; tags. You will also need to specify the destination of the hyperlink using the href parameter.</p>
<blockquote><p>&lt;a href=&#8221;http://www.epicwebsites.com&#8221;&gt;This will turn into a hyperlink.&lt;/a&gt;</p></blockquote>
<p>Here&#8217;s what that tag will look like in your browser:</p>
<p><a href="http://www.epicwebsites.com"   >This will turn into a hyperlink.</a></p>
<p>Cool, right?</p>
<h3>&lt;img&gt; &#8211; The Image Tag</h3>
<p>The &lt;img&gt; tag is used to insert an image into the page.</p>
<p>Usage:</p>
<blockquote><p>&lt;img src=&#8221;logo.png&#8221; /&gt;</p></blockquote>
<p>Here&#8217;s what that will look like:<img class="aligncenter size-medium wp-image-431" title="logo" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/logo-300x205.png" alt="" width="300" height="205" /></p>
<p>Your image will have to already be on the internet. If you upload your image to a photo service, then use the URL to the image, you can use that URL as the src parameter.</p>
<p>If you&#8217;re clever, you can combine the &lt;img&gt; tag with the &lt;a&gt; tag to make a clickable image. Try this:</p>
<blockquote><p>&lt;a href=&#8221;http://www.epicwebsites.com&#8221;&gt;&lt;img  src=&#8221;logo.png&#8221; /&gt;&lt;/a&gt;</p></blockquote>
<h3>&lt;h1&gt; &#8211; The Heading Tag</h3>
<p>I consider heading tags to be one of the more important tags. There are six heading tags, ranging from &lt;h1&gt; to &lt;h6&gt;, in descending order of size.</p>
<p>Header tags are super important to organize content on a web page. Also, header tags are one major thing search engines look for for determining relevancy of a particular web page in search engine results. They&#8217;re really important!</p>
<p>To make some text a heading, surround it with the appropriate header tag.</p>
<blockquote><p>&lt;h1&gt;This is an H1 tag.&lt;/h1&gt;</p></blockquote>
<p>Here&#8217;s what that will look like:</p>
<h1>This is an H1 tag.</h1>
<p>Different levels of header appearance is controlled by the CSS stylesheet of the website. For our site, specific headers are used for special types of text content. I&#8217;ll run through the different headers used on this site &#8211; but remember &#8211; it will look different on every website!</p>
<h1>This is an h1 tag.</h1>
<h2>This is an h2 tag.</h2>
<h3>This is an h3 tag.</h3>
<h4>This is an h4 tag.</h4>
<h5>This is an h5 tag.</h5>
<h6>This is an h6 tag.</h6>
<p>As you can see, each tag is different from the last! Some of them aren&#8217;t used on Epic Websites, though. I don&#8217;t ever use h6 tags, but that&#8217;s just my personal preference.</p>
<h3>&lt;strong&gt; &#8211; The Strong Tag. (read: Bold Tag)</h3>
<p>The strong tag bolds text contained within a &lt;strong&gt; &lt;/strong&gt; tag pair.</p>
<p>Usage:</p>
<blockquote><p>&lt;strong&gt;This text will be bold.&lt;/strong&gt;</p></blockquote>
<p><strong>This text will be bold.</strong></p>
<p>Simple enough, yeah? Another one to play with is &lt;em&gt;, for italicized.</p>
<p>&nbsp;</p>
<h3>Interested in learning more about HTML?</h3>
<p><a href="http://www.w3schools.com/html/" title="w3schools HTML tutorial"   target="_blank" >w3schools.com</a> has an excellent tutorial on how to use HTML, and is a great resource for learning more about web design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/five-simple-useful-html-tags/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review : WordPress SEO by Yoast Plugin</title>
		<link>http://www.epicwebsites.com/review-wordpress-seo-by-yoast-plugin</link>
		<comments>http://www.epicwebsites.com/review-wordpress-seo-by-yoast-plugin#comments</comments>
		<pubDate>Tue, 29 Nov 2011 16:51:32 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=418</guid>
		<description><![CDATA[I started using the Yoast WordPress SEO plugin a few months ago when I saw a link to the Yoast website advertised in my new WordPress installation. I&#8217;d used other WP plugins for SEO previously, most notably the All-In-One SEO plugin for WordPress; but I&#8217;m always trying the latest and greatest that the WordPress community has to offer. So, [...]]]></description>
			<content:encoded><![CDATA[<p>I started using the Yoast WordPress SEO plugin a few months ago when I saw a link to the Yoast website advertised in my new WordPress installation. I&#8217;d used other WP plugins for SEO previously, most notably the All-In-One SEO plugin for WordPress; but I&#8217;m always trying the latest and greatest that the WordPress community has to offer.</p>
<p><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/WordPress-seo-by-yoast.jpg"   ><img class="aligncenter size-full wp-image-420" title="WordPress-seo-by-yoast" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/WordPress-seo-by-yoast.jpg" alt="WordPress Seo by Yoast Plugin" width="580" height="145" /></a></p>
<p>So, I installed the Yoast WordPress SEO plugin. It took some cleverness to migrate my existing SEO information on the website into the new plugin &#8211; I had to use a third-party plugin called SEO Data Transporter to migrate the data &#8211; but I eventually got it all sorted out.</p>
<p>Once I had the plugin installed, however, I found it extremely easy to use, both for initial configuration and for doing SEO steps on each page or post.</p>
<p>Many of the fields in the extensive configuration options have descriptions for what they do and how best to set them to boost search engine rankings. I&#8217;ve found that for most sites, I don&#8217;t even need to touch these options &#8211; the initial configuration of the plugin is satisfactory.</p>
<div id="attachment_421" class="wp-caption aligncenter" style="width: 935px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/wordpress-seo-by-yoast-most-options-have-descriptions.png"   ><img class="size-full wp-image-421" title="wordpress-seo-by-yoast-most-options-have-descriptions" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/wordpress-seo-by-yoast-most-options-have-descriptions.png" alt="In the configuration menu, most of the SEO options have descriptions." width="925" height="256" /></a><p class="wp-caption-text">In the configuration menu, most of the SEO options have helpful descriptions.</p></div>
<p>One comment I would have to improve the plugin is to set up some sort of graphic wizard. I can imagine that non-WordPress or non-technically savvy people might want to update how their page titles appear in the settings. Perhaps a little more information on the &#8220;Titles&#8221; page would go a long way.</p>
<p>The best feature of the plugin is certainly the extensive page- and post- SEO editing ability. Beneath each page and post, Yoast lets you set the title, description, and keywords that the search engine should link to the site for. It shows you a preview of what  the site&#8217;s listing will look like in a major search engine that updates as you type.</p>
<div id="attachment_419" class="wp-caption aligncenter" style="width: 794px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/WordPress-seo-allows-you-to-change-name-and-description-easily.png"   ><img class="size-full wp-image-419" title="WordPress-seo-allows-you-to-change-name-and-description-easily" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/WordPress-seo-allows-you-to-change-name-and-description-easily.png" alt="SEO Plugin by Yoast allows you to micromanage exactly how your content appears to search engines." width="784" height="463" /></a><p class="wp-caption-text">SEO Plugin by Yoast allows you to micromanage exactly how your content appears to search engines.</p></div>
<p>WordPress SEO is really an all-in-one package. It does everything I need for SEO on my WordPress websites. I couldn&#8217;t be happier with the plugin, and deploy it on all of my clients&#8217; sites.</p>
<h4>WordPress SEO by Yoast provides everything I need as a developer to effectively manage Search Engine Optimization on my clients&#8217; websites.</h4>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/review-wordpress-seo-by-yoast-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Authoring Content with WordPress: Pages and Posts</title>
		<link>http://www.epicwebsites.com/authoring-content-with-wordpress-pages-and-posts</link>
		<comments>http://www.epicwebsites.com/authoring-content-with-wordpress-pages-and-posts#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:24:12 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=381</guid>
		<description><![CDATA[WordPress is one of the definitive blog authoring tools for publishing content online. I use WordPress on all of my clients&#8217; websites, and I always give them a demonstration of how to author their content as part of their web development package. Education is essential to my work: a working website is great, a website that the client knows [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the definitive blog authoring tools for publishing content online. I use WordPress on all of my clients&#8217; websites, and I always give them a demonstration of how to author their content as part of their web development package. Education is essential to my work: a working website is great, a website that the client knows how to update and make changes to is infinitely more valuable.</p>
<p><span id="more-381"></span></p>
<p>Part one of my WordPress demonstration is a run-down of how to create content with WordPress. Here goes.</p>
<h2>How to Author Content with WordPress</h2>
<p>There are two main types of content within the WordPress system: Pages and Posts.</p>
<h3>Pages</h3>
<p>Pages are for static content that doesn&#8217;t change. It&#8217;s like your landing page, or your &#8220;About Us&#8221; page. It&#8217;s information about your company and your website that you want every user to have access to. For the majority of the websites I create, most of the website&#8217;s content is Pages.</p>
<p>To create a new page on your WordPress site, go to your WordPress website and append &#8220;wp-admin&#8221; (without the quotes) to the URL of your website in the address bar to get to the login panel for WordPress.</p>
<div id="attachment_389" class="wp-caption aligncenter" style="width: 451px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/append_wp-admin.png"   ><img class="size-full wp-image-389" title="logging into wordpress wp-admin" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/append_wp-admin.png" alt="How to get to get to wordpress login backend site" width="441" height="41" /></a><p class="wp-caption-text">Append wp-admin to the URL of your WordPress website to get to the Dashboard.</p></div>
<p>After logging in to WordPress, click on &#8220;Pages&#8221; on the navigation bar to the left of the site.</p>
<div id="attachment_390" class="wp-caption aligncenter" style="width: 189px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/click_pages.png"   ><img class="size-full wp-image-390" title="Click Pages to let you edit WP pages." src="http://www.epicwebsites.com/wp-content/uploads/2011/11/click_pages.png" alt="Click pages in wordpress backend to author page content." width="179" height="315" /></a><p class="wp-caption-text">Click Pages on the left side to get to the Page editing screen.</p></div>
<p>To create a new page on your WordPress site, you want to click &#8220;Add New&#8221; under &#8220;Pages&#8221; on the left side of the bar. You will be brought to the WordPress content editor screen, where you can specify the title and content for the page.</p>
<div id="attachment_391" class="wp-caption aligncenter" style="width: 1034px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/edit_about_page.png"   ><img class="size-large wp-image-391" title="Editing my About page." src="http://www.epicwebsites.com/wp-content/uploads/2011/11/edit_about_page-1024x380.png" alt="" width="1024" height="380" /></a><p class="wp-caption-text">This is an example of the page editing screen on WordPress.</p></div>
<p>The page editor in WordPress works much like a standard document file editor. Each of the tools at the top provides a different function. We&#8217;ll cover what each of them does in a second.</p>
<p>The most basic type of content editing you can do is just to type into the box to make changes to the text, and then click the big blue button that says &#8220;Update&#8221; or &#8220;Publish&#8221; on the right side of the browser window.</p>
<div id="attachment_393" class="wp-caption aligncenter" style="width: 306px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/update.png"   ><img class="size-full wp-image-393" title="Press update to save changes to WordPress content." src="http://www.epicwebsites.com/wp-content/uploads/2011/11/update.png" alt="" width="296" height="230" /></a><p class="wp-caption-text">Press update to save and publish changes to WordPress Page content.</p></div>
<h3></h3>
<h3>Posts</h3>
<p>Posts are used in WordPress for creating all sorts of dynamic content. Most often, they are used as individual blog entries; but sometimes they are used for other purposes as well. For instance, in this site, on <a href="http://www.epicwebsites.com/our-work" title="Our Work"   >Epic Websites&#8217; &#8220;Our Work&#8221; portfolio page</a>, each individual case study is a Post. What you are reading right now is a Post as well. Posts are always used to create dynamic content that changes and grows with the website.</p>
<p>Creating a Post works much like creating a Page. While logged in to your WordPress backend, click the &#8220;Post&#8221; category link on the left-hand side navigation bar of WordPress. From there, you can create, edit, and manage all the Posts you&#8217;ve created so far, in much the same manner as editing Pages like before.</p>
<div id="attachment_395" class="wp-caption aligncenter" style="width: 189px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/click_posts.png"   ><img class="size-full wp-image-395" title="Click the &quot;Posts&quot; button on the left hand navigation menu to create and edit posts in WordPress." src="http://www.epicwebsites.com/wp-content/uploads/2011/11/click_posts.png" alt="Click the &quot;Posts&quot; button on the left hand navigation menu to create and edit posts in WordPress." width="179" height="315" /></a><p class="wp-caption-text">Click the &quot;Posts&quot; button on the left hand navigation menu to create and edit posts in WordPress.</p></div>
<h3> Basic Text Formatting using WordPress</h3>
<p>Text on WordPress pages is formatted by using the toolbox located on top of the content editing window in WordPress. It should look something like this:</p>
<div id="attachment_397" class="wp-caption aligncenter" style="width: 507px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/content_toolbox.png"   ><img class="size-full wp-image-397" title="WordPress content editing toolbox" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/content_toolbox.png" alt="" width="497" height="47" /></a><p class="wp-caption-text">This is an example of a WordPress content editing toolbox that you can use to format text and content.</p></div>
<p>Some of the items on this toolbox should be pretty recognizable if you use a text editor normally. From right to left, the icons are Bold, Italic, strikethrough, bulleted list, numbered list, block quote, align left, align center, align right, hyperlink, delete hyperlink, insert more tag, toggle spellchecker, toggle fullscreen mode, and toggle Kitchen Sink.</p>
<p>Of these options, three of them are less than obvious.</p>
<h3> Block Quote</h3>
<div id="attachment_398" class="wp-caption aligncenter" style="width: 65px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/blockquote_button_wordpress_content_editor.png"   ><img class="size-full wp-image-398" title="The blockquote button in the wordpress content editor" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/blockquote_button_wordpress_content_editor.png" alt="The blockquote button in the wordpress content editor" width="55" height="47" /></a><p class="wp-caption-text">Block Quote Button</p></div>
<p>The Block Quote button allows users to create block quotes to highlight testimonials, snippets of quote from other people, or specific portions of text.</p>
<blockquote><p>This is an example of a block quote. Text is usually indented and italicized. Sometimes it is supported with a graphic quote symbol indicating that it is a quote. Block Quotes are great for testimonials, snippets of reviews, et cetera.</p></blockquote>
<p>When you are in Block Quote mode, the text on the content editor will indent. In order to get back to regular text editing mode, press Enter or Return to make a new line, and then toggle the Block Quote button again.</p>
<p>&nbsp;</p>
<h3>Insert or Remove Hyperlink</h3>
<div id="attachment_400" class="wp-caption aligncenter" style="width: 69px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert_hyperlink_wordpress_content_toolbox.png"   ><img class="size-full wp-image-400" title="insert_hyperlink_wordpress_content_toolbox" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert_hyperlink_wordpress_content_toolbox.png" alt="Insert or Delete Hyperlink Button" width="59" height="47" /></a><p class="wp-caption-text">Hyperlink Buttons</p></div>
<p>The Hyperlink buttons are certainly important tools for content authors. They allow you to link to other content on your site and other websites. WordPress makes that really easy.</p>
<p>By default, the hyperlink buttons are greyed out, which can be a little confusing. There&#8217;s a trick to creating hyperlinks in WordPress content.</p>
<p>First, type some text that you want to turn into a link:</p>
<p>turn-me-into-a-link</p>
<p>Then, select that text:</p>
<div id="attachment_401" class="wp-caption aligncenter" style="width: 232px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/select-text-for-hyperlink.png"   ><img class="size-full wp-image-401" title="select-text-for-hyperlink" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/select-text-for-hyperlink.png" alt="" width="222" height="39" /></a><p class="wp-caption-text">Select the text you want to make into a hyperlink.</p></div>
<p>Then, with the text selected, click the Hyperlink button.</p>
<div id="attachment_402" class="wp-caption aligncenter" style="width: 74px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/Hyperlink_button_selected.png"   ><img class="size-full wp-image-402" title="Hyperlink_button_selected" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/Hyperlink_button_selected.png" alt="The active Hyperlink button." width="64" height="37" /></a><p class="wp-caption-text">The active Hyperlink button.</p></div>
<p>This will bring you to the &#8220;Insert/Edit Link&#8221; page.</p>
<div id="attachment_404" class="wp-caption aligncenter" style="width: 504px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert-edit-link-page.png"   ><img class="size-full wp-image-404" title="Insert/Edit Link" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert-edit-link-page.png" alt="This page allows you to insert or edit WP links." width="494" height="491" /></a><p class="wp-caption-text">Insert/Edit Link page.</p></div>
<p>This page is mostly self-explanatory. If you&#8217;re linking to content on your website, select a page or post from the list at the bottom. If you&#8217;re linking to an external website, type in the URL of the website and an explanatory &#8220;Title&#8221;. The title is used to describe the site you&#8217;re linking to when the user hovers over the link.</p>
<p>Generally, if you&#8217;re linking to external content, you want to click the &#8220;Open link in new window or tab&#8221; button. This ensures that you don&#8217;t lose visitors who want to see content you&#8217;ve linked to but can&#8217;t find their way back to your site.</p>
<p>If you&#8217;re linking to internal content, however, this behavior would quickly become annoying. It&#8217;s best in that circumstance to leave the box unchecked.</p>
<p>Click &#8220;Add Link&#8221; to turn the text that you selected previously into a link. The text should show up blue in your editor and as a link in your published content.</p>
<h3>Insert More Tag</h3>
<div id="attachment_405" class="wp-caption aligncenter" style="width: 62px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert-more-tag.png"   ><img class="size-full wp-image-405" title="insert-more-tag" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/insert-more-tag.png" alt="" width="52" height="34" /></a><p class="wp-caption-text">Insert More Tag Button</p></div>
<p>This button controls where content for a WordPress excerpt cuts off. Let me explain.</p>
<p>Sometimes, when posts are listed in a blog, the author doesn&#8217;t want to put all the content of the post in the list. For example, on my <a href="http://www.epicwebsites.com/web-design-blog" title="Blog"   >Blog</a> page, I have a text excerpt from each post next to the title. I do this so that visitors to the website can figure out what each post is about without having to scroll through the entire content of the post to get to the next heading. They can read the excerpt, find out if they&#8217;re interested in reading the rest of the post, then click the link or scroll past it to the next post.</p>
<p>In WordPress, excerpts are limited to a set number of words. I can&#8217;t remember the exact number off the top of my head, but I think it&#8217;s around 100 words. WordPress will just find the first 100 words in your post and put them in the excerpt.</p>
<p>If you want just the first paragraph of content to be the excerpt of your post, you can put a &#8220;More Tag&#8221; in your post. This tells WordPress to cut off the excerpt at that point and tell the reader to click to read more.</p>
<p>This is a nice way of making your excerpts break off naturally, so they don&#8217;t cut off in the middle of a sentence, or other such unwanted behavior.</p>
<p>I don&#8217;t really use More tags, but for the perfectionist, they&#8217;re great.</p>
<p>There are other ways &#8211; with certain themes &#8211; of micromanaging exactly what your post excerpt/post description says. I&#8217;ll explain them in a future post.</p>
<h3>The Kitchen Sink</h3>
<div id="attachment_406" class="wp-caption aligncenter" style="width: 74px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/kitchen-sink-button.png"   ><img class="size-full wp-image-406" title="kitchen-sink-button" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/kitchen-sink-button.png" alt="The Kitchen Sink Button on the WordPress toolbar" width="64" height="31" /></a><p class="wp-caption-text">The Kitchen Sink Button</p></div>
<p>The &#8220;Kitchen Sink&#8221; button is simple. Toggle it to reveal more icons for advanced text editing and formatting. I&#8217;ll explain what these additional buttons do in another post, but click around and play with the different buttons. You&#8217;ll quickly figure out that there are many ways of editing text content  with WordPress.</p>
<h3>Uploading Images, Sound, Video, and attachments.</h3>
<p>WordPress is simply not limited to text content. I&#8217;ve given you the basics of authoring text content. Next  post will show you how to upload images and other embeddable media to your WordPress website.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/authoring-content-with-wordpress-pages-and-posts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review : Unbridled CSS Magic With Skybound Stylizer</title>
		<link>http://www.epicwebsites.com/unbridled-css-magic-with-skybound-stylizer-review</link>
		<comments>http://www.epicwebsites.com/unbridled-css-magic-with-skybound-stylizer-review#comments</comments>
		<pubDate>Tue, 15 Nov 2011 08:23:57 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=365</guid>
		<description><![CDATA[One day I was stumbling through the internet with my favorite little piece of browser software called StumbleUpon when I came across a little piece of CSS-editing software called Stylizer. They made a pretty serious claim on their website. Stylizer: A massively productive visual CSS editor for serious and aspiring CSS designers. I watched the video on the website. [...]]]></description>
			<content:encoded><![CDATA[<p>One day I was stumbling through the internet with my favorite little piece of browser software called <a href="http://www.stumbleupon.com/"   target="_blank" >StumbleUpon</a> when I came across a little piece of CSS-editing software called Stylizer. They made a pretty serious claim on their website.</p>
<blockquote>
<h2><a href="http://www.skybound.ca/"   target="_blank" >Stylizer:</a></h2>
<p>A massively productive<br />
<strong>visual CSS editor</strong> for serious<br />
and aspiring CSS designers.</p></blockquote>
<p>I watched the video on the website. A browser window shows the rendered HTML of any website on the left, with the various CSS stylesheets&#8217; rules and identifiers aligned vertically in a collapsible list on the right. That seems convenient.</p>
<p>The video went on to show how editing the CSS dynamically and in real-time changed the rendered HTML on the right. Tags for size and position worked by the user clicking and dragging a button to move the image around on the screen on the left. A feature called Bullseye allows the user to select and inspect any HTML element in the browser window, and automatically filter the CSS to the tags which directly modify its behavior.</p>
<p>The software looked very cool.</p>
<p>Nevertheless, I was initially hesitant about trying Stylizer: I really prefer to use free tools, especially open-source tools. I don&#8217;t like having to pay for software when there is a free equivalent that is just as good. I won&#8217;t. It&#8217;s not logical.</p>
<p>But I had never seen a CSS tool similar to Stylizer. Editors that I had used before like Dreamweaver certainly lacked the robustness and productive focus that Stylizer had apparently created. They had a free 14-day trial, so I downloaded the application, which was only available at the time for Windows. Luckily, that&#8217;s my operating system of choice.</p>
<h3>I fell in love with Stylizer the first time I used it.</h3>
<p>The control was intuitive and just as robust as the website described. It is so convenient to be able to edit CSS and see the results instantly in your browser window. The design of the application is very intelligent and well-thought out. Stylizer successfully avoids the trap of endless cascading menus and popup dialog boxes found in Adobe and Microsoft web development products: 99% of the interaction with the application happens in the one window, split between browser and editor.</p>
<div id="attachment_366" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/stylizer-interface.png"   ><img class="size-medium wp-image-366" title="Stylizer Visual CSS Editor Interface" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/stylizer-interface-300x161.png" alt="Stylizer Visual CSS Editor Interface" width="300" height="161" /></a><p class="wp-caption-text">Stylizer&#39;s interface is divided between browser and CSS tags for ease of use</p></div>
<p>I cannot stress Stylizer&#8217;s ease-of-use enough. It has easily doubled my productivity when working with CSS. It is so easy to create, edit, modify, and remove tags. Using the Bullseye feature, it is also very easy to detect and rectify visual glitches and bugs. If your DIV tag is floating weirdly or your text content is cut off, you can press spacebar, click the culprit element in the browser menu, and then see a filtered list of every linked CSS tag that could be causing the issue.</p>
<div id="attachment_367" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/selecting-with-bullseye.png"   ><img class="size-medium wp-image-367" title="Selecting an element with Stylizer's Bullseye" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/selecting-with-bullseye-300x161.png" alt="Selecting an element with Stylizer's Bullseye" width="300" height="161" /></a><p class="wp-caption-text">Selecting an element with Stylizer&#39;s Bullseye</p></div>
<p>The Bullseye feature brings up a breadcrumb at the bottom of the screen that shows the element you currently have selected and each nesting container of that element. This way, you can see the organization of your HTML tags graphically so you can better organize your CSS to match. I don&#8217;t know of any other application with such a robust system for doing this type of selection and editing.</p>
<p>Another great feature of Stylizer is that it allows you to test and edit CSS dynamically in 9 different browsers &#8211; including Chrome, multiple versions of Firefox and IE 6 thru 9.</p>
<p>My only complaint with Stylizer is that occasionally the menu screen used for configuring how to save style sheets to an FTP file server will cause the application to hang and eventually crash. This only happens very rarely, less than 10% of the time. The nice thing is that this only has to be set up once for each website: Stylizer will remember for any given website where you should save or upload the edited CSS files once you configure it for the first time. Once the server is set up initially, the application will only rarely have saving problems.</p>
<p>The other issue that I have with Stylizer is the somewhat restrictive license. The license key is bound to two computers&#8217; hardware &#8211; a laptop and a desktop &#8211; and must be verified against the Skybound server in order for the application to activate. However, I understand the piracy concerns that have befallen the software industry and that as a small company, Skybound has to take whatever measures necessary to avoid software piracy.</p>
<p>All this should not detract from the point I&#8217;m trying to make.</p>
<h3>Stylizer is unbridled CSS magic.</h3>
<p>Aside from the minor stability issues with saving, and my minor concerns about license restrictiveness, Stylizer is an excellent app and a godsend for anyone who uses CSS. There are literally too many reasons to list why Stylizer is an excellent app. I recommend that if you use CSS, you go download it and try it out today. It was the best $99 I ever had one of my colleagues spend on me.</p>
<p>I definitely give the CSS editing software Stylizer my full endorsement and recommendation. <a href="http://www.skybound.ca/"   target="_blank" >Learn more about Stylizer&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/unbridled-css-magic-with-skybound-stylizer-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Things I Do Immediately After Installing WordPress</title>
		<link>http://www.epicwebsites.com/3-things-i-do-immediately-after-installing-wordpress</link>
		<comments>http://www.epicwebsites.com/3-things-i-do-immediately-after-installing-wordpress#comments</comments>
		<pubDate>Tue, 15 Nov 2011 05:38:12 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=316</guid>
		<description><![CDATA[To supplant my earlier post How to Make a Personal Website Without Writing Code, I&#8217;ve decided to assemble a list of the things I do immediately following a successful WordPress installation. Every prolific web designer has a pattern when creating a new website, steps that he follows in order to expedite his workflow. This is my unofficial checklist: Clean [...]]]></description>
			<content:encoded><![CDATA[<div class="banner"><img title="963519_14306823" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/963519_14306823.png" alt="" width="600" height="137" /></div>
<p>To supplant my earlier post <a href="http://www.epicwebsites.com/how-to-make-a-personal-website-without-writing-code" title="How to Make a Personal Website Without Writing Code"   >How to Make a Personal Website Without Writing Code</a>, I&#8217;ve decided to assemble a list of the things I do immediately following a successful WordPress installation. Every prolific web designer has a pattern when creating a new website, steps that he follows in order to expedite his workflow. This is my unofficial checklist:</p>
<h3>Clean Up Default Options</h3>
<p>WP&#8217;s default options on install mostly make sense, but there are a few steps I take on a fresh WordPress install.</p>
<h4>Clean pages and posts.</h4>
<p>WordPress comes with default pages and posts to show off the different types of content a site administrator can create with the system. The first thing I do is delete the example posts; just as routine housekeeping.</p>
<h4>Create pages and posts that I&#8217;m sure will be on the site.</h4>
<p>Usually I&#8217;ll brainstorm with the client beforehand to come up with the number and name of pages that they will want on the site. Generally this is pretty straightforward. Here&#8217;s a list of a typical sitemap that I might create:</p>
<ol>
<li>Home/Landing Page</li>
<li>About Our Company</li>
<li>Services</li>
<ol>
<li>Service Category A</li>
<li>Service Category B</li>
<li>Service Category C</li>
</ol>
<li>Testimonials</li>
<li>Contact</li>
</ol>
<p>I generally just create blank pages or pages with dummy content on them. The traditional dummy content is a classical Latin text called <a href="http://www.lipsum.com/"   ><em>Lorem Ipsum</em></a>, which has a long history in use with printers and later, graphic designers.</p>
<h4>Set Permalinks to %POSTNAME%.</h4>
<div id="attachment_343" class="wp-caption alignright" style="width: 216px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/permalinkpostname.png"   ><img class="size-medium wp-image-343" title="Setting Permalinks to %postname% in WordPress Settings" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/permalinkpostname-300x196.png" alt="Setting Permalinks to %postname% in WordPress Settings" width="206" height="134" /></a><p class="wp-caption-text">Setting Permalinks to %postname% in WordPress Settings</p></div>
<p>Permalinks are what determines how a current page or post appears in the address bar of your browser. For instance, this page appears as http://www.epicwebsites.com/5-things-i-do-immediately-after-installing-wordpress. The permalink for this page is the name of the post. On other websites, it might appear as the index number of the page, which is almost arbitrary. /?p=15 is a lot less pretty than the actual title of the post. Setting the permalink to the name of the post also helps search engines find your content, because it helps match words to what a user is looking for. It&#8217;s not a win-all though: good content is the only key to success in search engine results.<br />
To set Permalinks to %POSTNAME%, under &#8220;Settings&#8221; click &#8220;Permalinks&#8221;. In the text box on that page type %POSTNAME%, then click &#8220;Save&#8221;. Easy as pie.</p>
<p>&nbsp;</p>
<blockquote>
<h2>Good content is the only key to success in search engine results.</h2>
</blockquote>
<p>&nbsp;</p>
<h3>WordPress Plugins</h3>
<p>There are hundreds (thousands?) of useful WordPress Plugins &#8211; small pieces of software &#8211; designed to extend what WordPress can do. The plugin system is really what makes WordPress such a powerful and useful platform. There are countless blog articles discussing the relative merits of different plugins from different authors &#8211; I won&#8217;t discuss all that in this post. Here&#8217;s a baseline list of what I consider the essentials and how to install them.</p>
<h4>Spam-fighting plugin &#8211; Akismet</h4>
<div class="wp-caption aligncenter" style="width: 629px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/akismet-logo.png"   ><img title="Akismet Logo | Things to do after installing WordPress | Plugins" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/akismet-logo.png" alt="Akismet Logo WordPress Plugin" width="619" height="89" /></a><p class="wp-caption-text">Prevent spam with Akismet WordPress plugin.</p></div>
<p>One of the problems with having a WordPress site is that if you have a comments system, you are GOING to get spammed. It doesn&#8217;t matter if you only get ten real visitors a month. You&#8217;ll check your email and six of the comments people have left on your blog every week won&#8217;t make sense &#8211; it&#8217;s because they&#8217;re automatically generated by a spam bot. Fortunately, you can use Akismet to fight spam. It&#8217;s already installed by default in WordPress, you just have to activate it and register on the site. Don&#8217;t worry &#8211; it&#8217;s free if your site is a personal site. Just sign up your website as a &#8220;Personal Blog&#8221; and say that you don&#8217;t want to contribute any money. Here are the steps to activate Akismet:</p>
<ol>
<li>Go to &#8220;Plugins&#8221;</li>
<li>Click &#8220;Activate&#8221; next to &#8220;Akismet&#8221;.</li>
<li>At the top of the screen, a yellow box will appear telling you that Akismet is almost ready. Click &#8220;enter your API key&#8221;.</li>
<li>In the green-yellow box asking you to &#8220;Please enter your Akismet key.&#8221;, click the link to the right: &#8220;Get your key.&#8221;</li>
<li>Follow the instructions on the Akismet website.</li>
<li>Enter your key in the textbox on the Akismet plugin configuration page.</li>
</ol>
<h4>Contact form plugin &#8211; Contact Form 7</h4>
<p>You know those fancy forms on those other websites that let you send the author an email through a form right on the website? You, too, can have one easily with WordPress. Install Contact Form 7 for easy graphic and simple HTML contact forms that you can build and customize yourself. When a visitor to the site fills out the form, WordPress will send you an email with the content of the message on the user&#8217;s behalf &#8211; without exposing your email address to spammers.</p>
<h4>Lightbox 3</h4>
<p>When you attach an image to a WordPress page or post, by default WordPress turns the attached image to a link to the full version of that image. It&#8217;s convenient, but not exactly pretty. Lightbox 3 opens the image by darkening the rest of the page and overlaying the image on top of the screen. It&#8217;s gorgeous and works beautifully. You have to configure the settings to make it open images in LightBox by default &#8211; but it&#8217;s lovely once you&#8217;ve got it all figured out.</p>
<h3>Analytics</h3>
<p>Google Analytics is a service for webmasters to track how many people are visiting their site and from where. If you have a google account, you can set up an Analytics account for free <a href="http://www.google.com/analytics/"   >on the Google Analytics Website</a>.</p>
<p>There are a lot of visitor-counting and -tracking services out there, but I&#8217;ve found that Google Analytics is really excellent and robust for a free service. The application statistically analyzes where visitors are coming from (both from which search engines and from where in the world), where they go on your website, and on what pages they lose interest and navigate away from your site. It is incredibly useful to show how effective your website &#8211; and specific content on your website &#8211; is on the web. It helps you profile and measure your audience and determine whether you&#8217;re reaching your goals.</p>
<div id="attachment_327" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/analytics_map.png"   ><img class="size-medium wp-image-327" title="Epic Websites Analytics Map" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/analytics_map-300x191.png" alt="Google Analytics service shows you where in the world your web traffic is coming from" width="300" height="191" /></a><p class="wp-caption-text">Google Analytics service shows you where in the world your web traffic is coming from.</p></div>
<p>There&#8217;s a plugin that makes Google Analytics installation on WordPress super easy. Called Google Analytics for WordPress, the plugin allows you to install and configure Google Analytics service &#8211; provided you have an account &#8211; easily on WP. It also adds tracking information next to each page and post so you can track your content&#8217;s effectiveness without leaving the WordPress Dashboard.</p>
<p>&nbsp;</p>
<p>These are just some really basic WP configuration options, to showcase some features for users to play around with. Sometimes, depending on what I&#8217;m doing, the process is much different. I hope that some of this information is helpful to you as you discover WordPress!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/3-things-i-do-immediately-after-installing-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Personal Website Without Writing Code</title>
		<link>http://www.epicwebsites.com/how-to-make-a-personal-website-without-writing-code</link>
		<comments>http://www.epicwebsites.com/how-to-make-a-personal-website-without-writing-code#comments</comments>
		<pubDate>Sat, 05 Nov 2011 00:23:03 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=293</guid>
		<description><![CDATA[&#8220;My friend is an [artist/rockstar/tortoise collector/model] and needs a website. They don&#8217;t have any money, so they asked me for help putting one together, but I don&#8217;t know where to start!&#8221; As a web designer, I get asked to help people put together personal websites all the time. Most of the time, they aren&#8217;t looking for professionally-designed websites, they [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;My friend is an [artist/rockstar/tortoise collector/model] and needs a website. They don&#8217;t have any money, so they asked me for help putting one together, but I don&#8217;t know where to start!&#8221;</p></blockquote>
<p>As a web designer, I get asked to help people put together personal websites all the time. Most of the time, they aren&#8217;t looking for professionally-designed websites, they just want something they can post updates to without learning HTML. If you have 30 minutes and $50, you can get yourself a decent-looking website with relatively little hassle.</p>
<p>A good place to start is by following the steps outlined in the following video by Hank Green. This is basically the way I start creating every website. WordPress installation takes me about four minutes, for you it might take ten.</p>
<p><object width="500" height="281"><param name="movie" value="http://www.youtube.com/v/OWExYC_XK9E?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OWExYC_XK9E?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>A clearer outline (and source) on the steps in this video: <a href="http://fourminutesite.com" title="fourminutesite.com"   target="_blank" >http://fourminutesite.com</a></p>
<p>That&#8217;s a lot of information delivered very quickly. Here&#8217;s my step-by-step guide. I use different websites and hosting company to save money.</p>
<ol>
<li><strong>Find a domain name.</strong><br />
<a href="http://bustaname.com/"   target="_blank" >BustAName.com</a> is an okay place  to check names, my personal favorite is called <a href="http://domai.nr/" title="Domai.nr"   target="_blank" >Domai.nr</a>, it suggests lots of alternate names and provides a list of availability for all of them, really fast. A full green box next to the name means it&#8217;s available.</li>
<li><strong>Purchase hosting.</strong><br />
Hank suggests that you use anhosting, I don&#8217;t have personal experience with them, but the absolute cheapest best hosting you can get is from a company called <a href="http://webhostingpad.com/" title="webhostingpad.com"   target="_blank" >WebHostingPad</a>, and they offer basically the exact same package as anhosting for twenty four dollars less a year. <span style="color: #ff0000;">Word of warning: Don&#8217;t use GoDaddy hosting. It&#8217;s overly expensive and hard to use.</span></li>
<li><strong>Wait until the domain name is configured.</strong><br />
There really isn&#8217;t much you can do here, it usually takes between 1 and 72 hours to set up a new domain name.</li>
<li><strong>Install WordPress.</strong><br />
Exactly as in the video. Check your email to find the login info, log into the cPanel (located at http://www.[yourdomain].com/cpanel), scroll down and click on &#8220;Softaculous&#8221;, click on &#8220;WordPress&#8221;, then click &#8220;Install&#8221;. <span style="color: #ff0000;">Remember: you want to make sure the &#8220;In Directory&#8221; field is blank!</span> Most hosts provide a very similar process for installing WordPress.</li>
<li><strong>Check out WordPress!</strong><br />
The final screen of the installation screen will provide you with two links. The first will take you to your website. The second, the http://[yourdomain]/wp-admin link, will take you to the administrator panel for WordPress.  <span style="color: #ff0000;">Remember the /wp-admin url! That&#8217;s how you&#8217;ll always get to the administrator panel for WordPress.<br />
</span></li>
<li><strong>Install a new theme.</strong><br />
It is now really super easy to install a new theme for WordPress. After logging in to the admin panel at http://[yourdomain]/wp-admin, on the right side click on &#8220;Appearance&#8221; and then &#8220;Themes&#8221;. At the tabs at the top, click on &#8220;Install&#8221;. You can then search for themes to install, or click &#8220;Featured&#8221; to see the current favorites. When you find one you like, you can click the blue &#8220;Install&#8221; link next to the theme.</p>
<div class="mceTemp mceIEcenter">
<div id="attachment_313" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.epicwebsites.com/wp-content/uploads/2011/11/installing_theme.jpg"   ><img class="size-medium wp-image-313" title="How To Install a WordPress Theme" src="http://www.epicwebsites.com/wp-content/uploads/2011/11/installing_theme-300x277.jpg" alt="" width="300" height="277" /></a><p class="wp-caption-text">Here&#39;s an example of a WordPress &quot;Install Theme&quot; page</p></div>
</div>
</li>
<li><strong>Author some content.</strong><br />
<span style="color: #ffff00;"><em>Posts</em></span> are what you&#8217;re going to want to create if you&#8217;re writing a blog. <span style="color: #ffff00;"><em>Pages</em></span> are what you want to write for static information, like an &#8220;About&#8221; page, or a &#8220;Contact Us&#8221; page. There are already some examples installed by default that you can play with.</li>
<li><strong>Explore WordPress.</strong><br />
WordPress is meant to be extensible and modular; which means that there is no definitive guide to how to use it. Different themes and plugins and configurations have different options hidden in different sub-menus. Just click around and explore and figure out what everything does.</li>
</ol>
<p>A word of warning, however: some think or expect that creating a website is something that can happen overnight. Websites take time and effort and dedication from the author to create quality content. As we say in the web industry, &#8220;Content Is King!&#8221; I promise you the success of your amateur website will depend almost entirely upon the quality of your content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/how-to-make-a-personal-website-without-writing-code/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Can I Get More Visitors To My Website?</title>
		<link>http://www.epicwebsites.com/how-can-i-get-more-visitors-to-my-website</link>
		<comments>http://www.epicwebsites.com/how-can-i-get-more-visitors-to-my-website#comments</comments>
		<pubDate>Wed, 20 Apr 2011 17:47:42 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=185</guid>
		<description><![CDATA[Good question. A website is only as good as the attention and potential customers that it gets your company. Even an informational website is only as useful as it is visible. Fortunately, we&#8217;re experts at increasing visitation to your website. As I mentioned before in my post Does Your Small Business Need A Website?, the first thing people do [...]]]></description>
			<content:encoded><![CDATA[<p>Good question. A website is only as good as the attention and potential customers that it gets your company. Even an informational website is only as useful as it is visible.</p>
<h4>Fortunately, we&#8217;re experts at increasing visitation to your website.</h4>
<p>As I mentioned before in my post <a href="http://www.epicwebsites.com/?p=151"   >Does Your Small Business Need A Website?</a>, the first thing people do when looking for more information about your business, products, or services is use a search engine. Therefore, having good <em>search-engine visibility</em> is essential.</p>
<p>You might assume that websites that rank highest in search engines are those with vast advertising budgets, but that isn&#8217;t necessarily true.</p>
<p>Skilled web developers know that the best way to increase attention to your business isn&#8217;t necessarily through advertising and, more importantly, doesn&#8217;t cost gobs of money.</p>
<p>There are simple organizational tricks we use when organizing content that ensure that relevant content on your website is more likely to be featured in results of search engines like Google, Yahoo, or Bing.</p>
<p>The idea is to give hints to the search engine that a page on your site is the most likely to provide an answer to a given search engine query. We understand how the search engines work, so we know how to convince them that your site should be the one that they recommend.</p>
<p>The process I&#8217;m describing is called SEO (Search Engine Optimization), and it&#8217;s an important step we go through when we put your site online.</p>
<p>How does this help you? Well, we can reduce this concept to a simple equation:</p>
<p style="text-align: center;">Your Website + <strong>Optimization</strong> = Higher Visibility = More Customers = <strong>More Money In Your Pocket</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/how-can-i-get-more-visitors-to-my-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does Your Small Business Need a Website?</title>
		<link>http://www.epicwebsites.com/do-small-businesses-need-a-website</link>
		<comments>http://www.epicwebsites.com/do-small-businesses-need-a-website#comments</comments>
		<pubDate>Wed, 13 Apr 2011 05:53:17 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=151</guid>
		<description><![CDATA[Short answer: Definitely. Long answer: Yes, absolutely. If you&#8217;re a small business, a website is an indispensable asset to establishing your branding and your digital image. Even if you&#8217;re not planning on selling online, or entering the social networking scene, a website provides your business with the legitimacy that comes from having an established brand. If nothing else, your [...]]]></description>
			<content:encoded><![CDATA[<p>Short answer: Definitely.</p>
<p>Long answer: Yes, absolutely.</p>
<p>If you&#8217;re a small business, a website is an indispensable asset to establishing your branding and your digital image. Even if you&#8217;re not planning on selling online, or entering the social networking scene, a website provides your business with the legitimacy that comes from having an established brand. If nothing else, your business&#8217; website will say to the internet generation, &#8220;Yes! We&#8217;re exist! This is who we are! Give us a call!&#8221;</p>
<p>A common motif among the rising market of new consumers: When we&#8217;re curious about a product or service, what&#8217;s the first thing we do? We Google for more information. We have learned that the best way to be informed about anything is online. You need to make sure that it&#8217;s your information that we&#8217;re finding.</p>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 344px"><a href="http://www.epicwebsites.com/" title="Home"   ><img class="size-full wp-image-152     " title="Google It! " src="http://www.epicwebsites.com/wp-content/uploads/2011/04/google_me.jpg" alt="&quot;Google&quot; Business Card" width="334" height="274" /></a><p class="wp-caption-text">The search engine has radically altered how we find information.</p></div>
<p>Being connected is more than just having a website, though. Businesses are evaluated by customers not solely on credentials alone but also by <em>appearance </em>and<em> exposure</em>. I spend a lot of time thinking about how each client&#8217;s site should look, how it&#8217;ll sell their services effectively to potential customers.</p>
<p>I can tell you from personal experience in everyday life that the comparative  quality of a business&#8217; website usually determines whether I will choose  their services over a competitor&#8217;s. I will &#8211; nine times out of ten &#8211;  select the business that looks like they&#8217;ve spent time and thought on  their company&#8217;s image. An easy-to-use, beautiful website says to the  client, &#8220;We&#8217;re established. We know what we&#8217;re doing. We&#8217;re good at what  we do.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/do-small-businesses-need-a-website/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why WordPress?</title>
		<link>http://www.epicwebsites.com/why-wordpress</link>
		<comments>http://www.epicwebsites.com/why-wordpress#comments</comments>
		<pubDate>Tue, 12 Apr 2011 18:57:04 +0000</pubDate>
		<dc:creator>alaska.alex</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://www.epicwebsites.com/?p=132</guid>
		<description><![CDATA[Web developers and computer people in general talk a whole lot of jargon that makes very little sense to the layperson. Most of my clients don&#8217;t speak geek and don&#8217;t have time to learn. They just want a website that looks good and does what it&#8217;s supposed to. Fortunately for you, that&#8217;s my area of expertise. One term that [...]]]></description>
			<content:encoded><![CDATA[<p>Web developers and computer people in general talk a whole lot of jargon that makes very little sense to the layperson. Most of my clients don&#8217;t speak geek and don&#8217;t have time to learn. They just want a website that looks good and does what it&#8217;s supposed to. Fortunately for you, that&#8217;s my area of expertise.</p>
<p>One term that I do like to familiarize my clients with is <a href="http://wordpress.org/"   target="_blank" >WordPress</a>. WordPress is free web software that allows a person to create a beautiful website or blog. I use the technology on nearly every new site I create for a client.</p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_157" class="wp-caption aligncenter" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://wordpress.org/" title="Wordpress"   target="_blank" ><img class="size-medium wp-image-157" title="Wordpress Logo" src="http://www.epicwebsites.com/wp-content/uploads/2011/04/wordpress-logo-stacked-rgb-300x186.png" alt="WordPress, the king of the CMS'" width="300" height="186" /></a></dt>
<dd class="wp-caption-dd"></dd>
</dl>
</div>
<p>Originally, WordPress was intended to be used as  a blogging tool, like Google&#8217;s <a href="http://blogspot.com"   target="_blank" >blogspot.com</a>. It&#8217;s evolved naturally through community contribution into a more fully fledged web Content Management System. For both client and developer, WordPress is a godsend. WordPress provides the client with the ability to easily make changes to content once the site has been posted. It&#8217;s a clean, organized, yet highly extensible system.</p>
<p>What does this mean for you? Well, it means that long after I finish your site, you&#8217;ll be able to go in yourself and make changes to text, post images,  and post content updates.</p>
<p>In the past, every change to a website meant lots of work with File Transfer Protocols and HTML and other non-user-friendly technologies. Usually it means hiring and paying a developer premium rates to make simple changes to text.</p>
<p>With WordPress, you don&#8217;t need to know HTML to make changes to your content. Posting to your website becomes as easy as posting to a blog, or formatting an email.</p>
<p>You&#8217;re not paying me to make simple changes to your content. Using WordPress allows me to focus on what I do best: handling the technical and design aspects of your website. I handle domain registration, hosting, installing WordPress, configuring WordPress, designing a theme, working with PHP, JavaScript, CSS, creating page structure, installing plugins, organizing content, making sure it looks right for every type of computer, administration, and technical support.</p>
<p>People ask me why everybody in the freelance web development world is so crazy about WordPress. My best answer is that in my opinion, no other Content Management System is quite as elegant, extendable, and easy to use as WordPress is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epicwebsites.com/why-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

