<?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>Pixelhaven Web Design &#124; A Cincinnati Web Design Company &#187; Quick Fixes</title>
	<atom:link href="http://www.pixelhavenllc.com/tag/quick-fixes/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pixelhavenllc.com</link>
	<description>Passionate about creating attractive, simple and structurally clean web sites</description>
	<lastBuildDate>Mon, 23 Jan 2012 22:35:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quick Tip: Using Conditional Comments And CSS</title>
		<link>http://www.pixelhavenllc.com/quick-tip-using-conditional-comments-and-css</link>
		<comments>http://www.pixelhavenllc.com/quick-tip-using-conditional-comments-and-css#comments</comments>
		<pubDate>Thu, 17 Jul 2008 11:00:41 +0000</pubDate>
		<dc:creator>Josh Harbaugh</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[style sheets]]></category>

		<guid isPermaLink="false">http://www.pixelhavenllc.com/?p=37</guid>
		<description><![CDATA[I often find myself trying to get Internet Explorer's various versions to behave correctly in my websites. Unfortunately, Internet Explorer isn't the sort of browser you can just ignore and hope those users upgrade to something more standards complaint. So, what do you do?</p><p><a href="http://www.pixelhavenllc.com/quick-tip-using-conditional-comments-and-css">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>I often find myself trying to get Internet Explorer&#8217;s various versions to behave correctly in my websites. Unfortunately, Internet Explorer isn&#8217;t the sort of browser you can just ignore and hope those users upgrade to something more standards complaint, like <a href="http://www.getfirefox.com">Firefox</a> or <a href="http://www.opera.com/">Opera</a>. So, what&#8217;s the easiest way to make sure users on Internet Explorer see your site as intended?</p>
<p>I&#8217;ve found that using <strong>conditional comments</strong> with <strong>separate style sheets</strong> works the best for me. Sure, it&#8217;s a rough-and-tumble solution to be sure, but it works when I&#8217;m in a crunch and I need to get a project done. And really, it&#8217;s not that bad of a method to use which, I imagine, is one of the reasons for the <a href="http://alistapart.com/articles/minorthreat">version targeting in the upcoming Internet Explorer releases</a>.</p>
<p><strong>How do you use conditional comments with separate style sheets?</strong></p>
<p>Well, I&#8217;ll show you. Let&#8217;s say you&#8217;ve noticed some display issues with a new CSS-based design in Internet Explorer. No surprise there, right? You isolated the problem and created a hack to get it working in IE, but you&#8217;d rather not clutter up your default style sheet with all this mucked-up styling, so you create a separate style sheet to house these changes. <em>An added benefit of this method is that you can overwrite default style sheets with these new styles to make Internet Explorer behave.</em> Here&#8217;s how.</p>
<p><strong>Setup your style sheet link as normal.</strong></p>
<pre class="html" name="code">
&lt;html>
   &lt;head>
   &lt;title>Wicked awesome page title&lt;/title>
   &lt;link rel="stylesheet" href="/stylesheets/default.css" type="text/css" />
   &lt;/head>
   &lt;body>
      &lt;p>Some information ...&lt;/p>
   &lt;/body>
&lt;/html>
</pre>
<p><strong>Then, add the conditional comment for Internet Explorer 6.0</strong></p>
<pre class="html" name="code">
&lt;html>
   &lt;head>
   &lt;title>Wicked awesome page title&lt;/title>
   &lt;link rel="stylesheet" href="/stylesheets/default.css" type="text/css" />
   &lt;!--[if IE 6]>
   &lt;link rel="stylesheet" href="/stylesheets/ie6.css" type="text/css" />
   &lt;![endif]-->
   &lt;/head>
   &lt;body>
      &lt;p>Some information ...&lt;/p>
   &lt;/body>
&lt;/html>
</pre>
<p>And presto! You&#8217;ve got a style sheet that will only get used in Internet Explorer 6.0. What about all the other versions? The 7th version of Internet Explorer helped to improve the browsers understanding of CSS and web standards, so some of the same old issues with Internet Explorer don&#8217;t really come up. What if you wanted to load a style sheet that worked for all versions lower than 7?</p>
<p><strong>For that you&#8217;d do something like this:</strong></p>
<pre class="html" name="code">
&lt;html>
   &lt;head>
   &lt;title>Wicked awesome page title&lt;/title>
   &lt;link rel="stylesheet" href="/stylesheets/default.css" type="text/css" />
   &lt;!--[if lt IE 7]>
   &lt;link rel="stylesheet" href="/stylesheets/ie6.css" type="text/css" />
   &lt;![endif]-->
   &lt;/head>
   &lt;body>
      &lt;p>Some information ...&lt;/p>
   &lt;/body>
&lt;/html>
</pre>
<p>The &#8216;lt&#8217; just means &#8220;less than&#8221;, and will target any versions less than 7, and load up the style sheet accordingly. Additional syntax are: &#8216;gt&#8217; for &#8220;greater than&#8221; and &#8216;gte&#8217; / &#8216;lte&#8217; for &#8220;greater / less than or equal to&#8221;. This trick can apply to anything you want to show in Internet Explorer but not other browsers, such as, messages explaining to users that they are using a version of Internet Explorer that may not be suited well for the website they are currently viewing and may notice some display issues.</p>
<p>I&#8217;d use the conditional comment sparingly, but if you&#8217;re in a deadline situation and don&#8217;t have time to find a legitimate CSS fix for the problem, I&#8217;m all for using this trick to get the job done.<br />
<a name="conditionalcomments"></a><br />
By the way, you can also use this technique to hide/show content from a particular Internet Explorer version. Perhaps a <em>&#8220;You are currently using Internet Explorer 6. Though not necessary to use this website, if you&#8217;d like to upgrade your browser we&#8217;d be able to enhance your experience while you&#8217;re here.&#8221;</em> message for IE6 users?  </p>
<p>UPDATE: As a side note, if you use conditional comments in your markup it will still validate. Conditional comments are actually valid markup, so don&#8217;t worry if you like to make sure all your code validates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelhavenllc.com/quick-tip-using-conditional-comments-and-css/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick fixes to improve your website&#8217;s effectiveness</title>
		<link>http://www.pixelhavenllc.com/quick-fixes-to-improve-your-websites-effectiveness</link>
		<comments>http://www.pixelhavenllc.com/quick-fixes-to-improve-your-websites-effectiveness#comments</comments>
		<pubDate>Sun, 18 May 2008 19:11:50 +0000</pubDate>
		<dc:creator>Josh Harbaugh</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.pixelhavenllc.com/dev/?p=21</guid>
		<description><![CDATA[I’ve outlined a few Quick Fixes, separating them into the most important categories, that you can implement on your website to help improve it over time.</p><p><a href="http://www.pixelhavenllc.com/quick-fixes-to-improve-your-websites-effectiveness">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>A website should always be in a state of improvement and trying to enhance the users&#8217; experience while browsing. The more engaged your readers and customers are, the more likely they are to come back in the future.</p>
<p>I&#8217;ve outlined a few Quick Fixes, separating them into the most important categories, that you can implement on your website to help improve it over time.<span id="more-21"></span></p>
<h3>Copyrighting</h3>
<p><strong>Tell readers why they should perform a task</strong><br />
Sometimes people really need to be told &#8220;why&#8221; they should do something. It&#8217;s no always enough to say &#8220;Click here&#8221;, when &#8220;For a chance to win, click here&#8221; would do the trick.</p>
<p><strong>Make your most popular pages easier to scan</strong><br />
Break up all those large blocks of text into smaller more manageable pieces. The easier it is to read the more likely your readers are to actually read it.</p>
<p><strong>Make headlines meaningful</strong><br />
Take a page from the newspaper industry&#8217;s book &#8211; make your headlines engaging and get visitors interested in the topics to be discussed.</p>
<p><strong>Give your visitors a &#8220;call to action&#8221;</strong><br />
This goes along with telling your visitors why they should perform a task, but it&#8217;s always a good idea to start that message with a strong call to action.</p>
<h3>Usability</h3>
<p><strong>Add an &#8220;about&#8221; page</strong><br />
Bring a personal touch to your website with a page that describes who you are, what you do, and why they should trust you as a business.</p>
<p><strong>Have a text-based sitemap</strong><br />
This goes along with search engine optimization, but it&#8217;s a good idea to include some sort of page with a visual &#8220;map&#8221; of all the links, categories and sub-categories of your website for easy navigation.</p>
<p><strong>Create specific landing pages</strong><br />
If you&#8217;re trying to sell a product or service, make sure you&#8217;ve got landing pages with a purpose backing up your campaign.</p>
<p><strong>Add more internal links</strong><br />
Including some internal links into the most highly visited pages will often increase traffic to those pages and keep them at the top.</p>
<h3>SEO (Search Engine Optimization)</h3>
<p><strong>Implement 301s to consolidate page rank</strong><br />
If you&#8217;ve got both a non-&#8221;www&#8221; and a &#8220;www&#8221; domain make sure you&#8217;ve got redirects setup to direct one to the other and consolidate those URLs. Search engines like that. In fact, Google has a feature that can do this for you if you&#8217;ve verified your site with them.</p>
<p><strong>Add a dynamic meta description</strong><br />
Though becoming less important for SEO with some of the search engine &#8220;big boys&#8221; it&#8217;s still often a good idea to give any pages a dynamic description meta tag to do along with the respective content on that page. Typically keep it under 130 characters as this is usually all the search engines use when displaying the description in their search results.</p>
<p><strong>Update your content as often as possible</strong><br />
On the internet content is sweet grapes devoured by the king, and keeping that king happy should be one of your first priorities. The more frequently you are to update the content on your pages the better chance you have to keep at the top of the organic search results for your top keywords as they see your content as being more relevant to their users.</p>
<p><strong>Get rid of those frames</strong><br />
In an age of accessibility and web standards using frames on a website shows the age of that website. Search engines have a hard time crawling the content within frames because of the nature in using this technique. Try to update those frame-based designs with something using HTML/CSS.</p>
<p><strong>Fix broken links</strong><br />
Make sure you don&#8217;t have any broken links on your pages as this will often adversely affect your page ranking in search engines.</p>
<h3>Accessibility</h3>
<p><strong>Offer an alternative to Javascript</strong><br />
Remember, not everyone has javascript turned on in their browsers. Make sure you&#8217;ve got an alternative for those that have it disabled or are using screen readers to browse your content.</p>
<p><strong>Provide alternate text for images</strong><br />
This goes along with SEO best practices as well, but make sure all your images have some sort of descriptive text to explain what the image is about as this will allow readers using screen readers to get the full experience. Search engines can also use these for organic searches for keywords.</p>
<h3>Design</h3>
<p><strong>Place important information &#8220;above the fold&#8221;</strong><br />
An old term from the newspaper industry, &#8220;above the fold&#8221; refers to keeping the most important information on the top portion of the paper (the side you see when you pick up that paper at the newstand. Same practice and results. Different application.</p>
<p><strong>Keep it simple</strong><br />
Try keeping your message to a minimum. Users do not like being bombarded with information the minute they venture to your site. Give them a little bit at a time to keep them interested and keep them digging deeper into your website.</p>
<p><strong>Shrink up page filesize</strong><br />
Keeping your pages under 50kb in size is a good practice as this will ensure that your viewers get the optimal performance out of their experience while browsing.</p>
<p><strong>Validate design in alternative browsers</strong><br />
Make sure your layouts stay consistant in different browsers. Not every user is going to be looking at the site with the same type of browser and you wouldn&#8217;t want to miss out on a potential sale because the buttons and text looked out of sync with the design and therefore &#8220;less professional&#8221; to the customer.</p>
<p><strong>Convert PDF files to HTML</strong><br />
Get that text out of those PDF files and into a format that promotes smoother flow and readability.</p>
<h3>Conclusion</h3>
<p>There you have it. A list of a some of the small improvements you can make over time to your website to increase it&#8217;s effectiveness. For more information about any of these tips do not hesitate to <a title="Send us an email with your questions." href="http://www.pixelhaven.biz/contact">send me an email</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixelhavenllc.com/quick-fixes-to-improve-your-websites-effectiveness/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

