<?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>WordPressHelp &#187; tips</title>
	<atom:link href="http://wordpresshelp.org/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpresshelp.org</link>
	<description>Making WordPress Even Easier to Use!</description>
	<lastBuildDate>Fri, 21 Jan 2011 03:45:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress Security</title>
		<link>http://wordpresshelp.org/2009/04/19/security/</link>
		<comments>http://wordpresshelp.org/2009/04/19/security/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 01:59:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[BLOG]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/?p=109</guid>
		<description><![CDATA[There are numerous actions a prudent web admin can take to make their site more secure. In an effort to place the key safety precautions you can employ on a WordPress site I have gathered a number of actions from multiple sources and placed them here. Please note that this posting is not original content, [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2009%252F04%252F19%252Fsecurity%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22WordPress%20Security%22%20%7D);"></div>
<p>There are numerous actions a prudent web <a href="http://wordpresshelp.org/tag/admin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with admin">admin</a> can take to make their <a href="http://wordpresshelp.org/tag/site/" class="st_tag internal_tag" rel="tag" title="Posts tagged with site">site</a> more secure. In an effort to place the key safety precautions you can employ on a <a href="http://wordpresshelp.org/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with WordPress">WordPress</a> <a href="http://wordpresshelp.org/tag/site/" class="st_tag internal_tag" rel="tag" title="Posts tagged with site">site</a> I have gathered a number of actions from multiple sources and placed them here.</p>
<p>Please note that this posting is not original content, rather it is a merged aggregation from the references listed below.</p>
<h3>Item 1.</h3>
<h2>Always Upgrade to the current version of WordPress</h2>
<p>Upgrade your WordPress as soon as possible. Most WordPress releases patch <a href="http://wordpresshelp.org/tag/security/" class="st_tag internal_tag" rel="tag" title="Posts tagged with security">security</a> loopholes, fixes which are essential for your continued protection.</p>
<h3>Item 2.</h3>
<h2>Change Default Passwords</h2>
<p>That is the first thing to do, if you are still using the default 6 lettered admin password which is sent to you via e-mail. Give a tight and secure password with numbers and letters and symbols jumbled up so that granny&#8217;s bruteforcing technique doesn&#8217;t cost you your <a href="http://wordpresshelp.org/tag/blog/" class="st_tag internal_tag" rel="tag" title="Posts tagged with BLOG">blog</a>. Don&#8217;t be too concerned about loosing your password and choose a simple password as you can always change your lost WordPress password.</p>
<h3>Item 3.</h3>
<h2>Remove WordPress ‘version string’ in your theme files</h2>
<p>1. Go to WordPress dashboard, click on presentation -&gt; edit <a href="http://wordpresshelp.org/tag/wordpress-themes/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Themes">themes</a> -&gt; header.php<br />
2. Find and remove this. bloginfo(&#8216;version&#8217;) Save the file.</p>
<p>Explanation: Hide the version number of your WordPress such that it will be hard for hacker to find security loopholes for the specific version of WordPress.</p>
<h3>Item 4.</h3>
<h2>Place empty ‘index.html’ file in the plugins folder</h2>
<p>1. Open a text editor ’save as’ and save the file as index.html (be sure to change the filetype from text files to all files if you are running in windows)<br />
2. Upload the file to WordPress wp-content/plugins folder in your web server.</p>
<p>Explanation: Hide the plugins used by your WordPress blog. It uses the same concept as above which is to hide security loopholes in the plugins.</p>
<h3>Item 5.</h3>
<h2>Upload a copy of .htaccess file in the wp-admin and wp-includes folders</h2>
<p>1. Using FTP program or your webserver file manager, go to the root folder of your server and download .htaccess file (set ’show hidden files’ first if you’re using FTP program such as FileZilla)<br />
2. Go to your wp-admin folder<br />
3. Upload the .htaccess file you’ve downloaded from the top level directory.</p>
<h3>Item 6.</h3>
<h2>Use SSH instead of Telnet, SFTP instead of FTP</h2>
<p>For real security use ssh to access your site instead of ftp which is inherently insecure and open to snooping of your account details as the authorization details (login &amp; password) are transmitted in clear over the internet. With ssh you can use secure ftp protocol like sftp to do anything you can do with ftp. Similarly you can use ssh instead of telnet to securely connect to your Linux / Unix server</p>
<h3>Item 7.</h3>
<h2>Create a robot.txt to place in your top level directory</h2>
<p>Recommended contents include:<br />
User-agent: *<br />
Disallow: /cgi-bin<br />
Disallow: /wp-admin<br />
Disallow: /wp-includes<br />
Disallow: /wp-content/plugins<br />
Disallow: /wp-content/cache<br />
Disallow: /wp-content/themes<br />
Disallow: /trackback<br />
Disallow: /feed<br />
Disallow: /comments<br />
Disallow: /category/*/*<br />
Disallow: */trackback<br />
Disallow: */feed<br />
Disallow: */comments<br />
Disallow: /*?*<br />
Disallow: /*?<br />
Allow: /wp-content/uploads</p>
<h3>References:</h3>
<ul>
<li>http://www.bloganything.net/922/secure-your-wordpress-blog</li>
<li>http://blog.taragana.com/index.php/archive/20-wordpress-security-plug-ins-and-<a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a>-to-keep-hackers-away/</li>
<li>wordpress codex</li>
</ul>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2009/04/19/security/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Design Pointers</title>
		<link>http://wordpresshelp.org/2008/03/03/design-pointers/</link>
		<comments>http://wordpresshelp.org/2008/03/03/design-pointers/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:42:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/design-pointers/</guid>
		<description><![CDATA[The most important part of your web site is the actual text content. Use the following tips regarding content: Site Navigation Scheme &#8211; Using index cards or smaller pieces of paper, write down all the items that you want included in your web site (Brainstorm here!). Now separate them into Categories, understanding that one index [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Fdesign-pointers%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Design%20Pointers%22%20%7D);"></div>
<p>The most important part of your web <a href="http://wordpresshelp.org/tag/site/" class="st_tag internal_tag" rel="tag" title="Posts tagged with site">site</a> is the actual text content. Use the following <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a> regarding content:</p>
<ol>
<li> Site Navigation Scheme &#8211; Using index cards or smaller pieces of paper, write down all the items that you want included in your web site (Brainstorm here!). Now separate them into Categories, understanding that one index card may end up in more than one category. When you have something that makes sense, you have just created one navigational scheme!
<ul>
<li> If you need more than one level of hierarchy, create additional piles. Ensure that those items which you know your audience will want to get to are not too far down in the navigational scheme. Will your audience have to click more than two times to get to the item? If so, consider using a <a href="http://wordpresshelp.org/tag/quick/" class="st_tag internal_tag" rel="tag" title="Posts tagged with quick">Quick</a> List on higher levels of your site which will get your audience quickly to these popular items.</li>
<li> Repeat the above process until you come up with one or more navigational schemes for your site. Now decide how you want to &#8221; label &#8221; each of the Categories so that it is brief and yet descriptive for your audience.</li>
</ul>
</li>
<li> Static vs Dynamic &#8211; Determine which elements of your web site will be relatively static in nature, and which elements are dynamic, requiring frequent updates. You may decide in this step NOT to include something on the web site, if you will not be able to maintain it.</li>
<li> Page Size &#8211; For large documents, decide whether you will break it into separate web pages, making each page printable on its own.
<ul>
<li> Your alternative is to make one large document with a table of contents or index at the top with target links to specific areas of the document.</li>
</ul>
</li>
<li> Page Identity &#8211; Make each page in a group of web pages understandable on its own. This means that you will need to title each page consistently. If your site has several layers of content, consider the usage of footprints on your pages. (Ex.Home &amp; gt; &amp; gt; ITS &amp; gt; &amp; gt; Documents).</li>
<li> Print vs Web &#8211; Content that typically needs to be revised when converting printed media to the web include:
<ul>
<li> contact points (email addresses in addition to mail addresses, room numbers and telephone numbers)</li>
<li> if you include a phone number, use complete phone numbers with area codes</li>
<li> when referring to a date, spell out the month. While the US uses month / day / year, the rest of the world uses day / month / year</li>
<li> for forms to be placed online, you will need to rewrite the instructions. For example, remove / reword sentences such as &#8221; Complete back side of this form. &#8220;</li>
</ul>
</li>
<li> Link descriptions &#8211; Part of your documents will contain links to other information. These links should alert the user to what they will see if they select the link; in other words they should be brief and yet descriptive. In some cases, it is also appropriate to describe the &#8221; where &#8221; in the link. For example, if a link will take the user to another web site, convey that information in the link text. Avoid terminology like &#8221; click here &#8221; or &#8221; press the right arrow &#8220;; browser methods of choosing links vary.
<ul>
<li> provide &#8221; return to &#8221; statements on pages of your web site to help users get back on track.</li>
</ul>
</li>
<li> Stale content &#8211; Tell users, in words, how often a page is updated.</li>
<li> Original content -
<ul>
<li> Make the content of your home page original. Do not duplicate documents that appear elsewhere on the Internet. Instead, link to them</li>
<li> Be aware of copyright regulations that apply to existing Web sites.</li>
</ul>
</li>
<li> In <a href="http://wordpresshelp.org/tag/development/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Development">development</a> &#8211; Avoid under Construction pages. If you intend to eventually include an additional page or section on your web site, you may say so on a completed page of your web site, but do not put up a page which only states Under Construction.</li>
<li> Spelling errors &#8211; Spell check and proofread your pages as you would any other publication.</li>
</ol>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/design-pointers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Tips</title>
		<link>http://wordpresshelp.org/2008/03/03/special-tips/</link>
		<comments>http://wordpresshelp.org/2008/03/03/special-tips/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:38:32 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/special-tips/</guid>
		<description><![CDATA[Special Tips Be aware of the pitfalls of character sets . (Here comes a pound sign Ã‚Â£ what did you get?) Currency signs are a real danger. It might be safer to write the currency in full. It is not just the signs that fail in some way; even those that do display may be [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Fspecial-tips%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Special%20Tips%22%20%7D);"></div>
<h1>Special <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">Tips</a></h1>
<p>Be aware of the pitfalls of character sets . (Here comes a pound sign Ã‚Â£ what did you get?) Currency signs are a real danger. It might be safer to write the currency in full. It is not just the signs that fail in some way; even those that do display may be misinterpreted. Let &#8216; s say you are in the USA and write $25.00 without qualification. How much does that look like to a browser in Australia, Canada, or Hong Kong? If the local $ is worth more than the US$ then you risk someone dismissing a product as overpriced. If the local $ is less, your strangely eager customer may suddenly turn sour when she or he thinks you have been deliberately misleading.</p>
<ul>
<li>  <a href="http://www.htmlhelp.com/reference/charset/">ISO    8859-1 Character Set Overview</a></li>
<li> If you specify a background color or image, but don &#8216; t specify text and link colors, the user &#8216; s text and link colors will be used against your background. In some cases, there won &#8216; t be contrast between the user &#8216; s text and link colors and your background color or image, so your text and links will disappear. The rule of thumb is that if you set one color, then you need to set them all .</li>
</ul>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/special-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Resources</title>
		<link>http://wordpresshelp.org/2008/03/03/design-resources/</link>
		<comments>http://wordpresshelp.org/2008/03/03/design-resources/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:13:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[treemagic]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/design-resources/</guid>
		<description><![CDATA[Top Ten Resources Designing For Multiple Browsers Without Being Bland A concise, sober, and BRIEF description of a good Web authoring strategy. Other fine articles by the author include What You See is Not What Others Get and Widen Your Web Site &#8216; s Audience . Stephen Traub. Getting Started with HTML A primer to [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Fdesign-resources%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Design%20Resources%22%20%7D);"></div>
<h2>Top Ten Resources</h2>
<ul>
<li> <strong> <a href="http://www1.shore.net/%7Estraub/wprmultb.htm">      Designing For Multiple Browsers Without Being Bland</a> </strong><br />
A concise, sober, and BRIEF description of a good Web authoring strategy. Other fine articles by the author include <em> What You See is Not What Others Get </em> and <em> Widen Your Web <a href="http://wordpresshelp.org/tag/site/" class="st_tag internal_tag" rel="tag" title="Posts tagged with site">Site</a> &#8216; s  Audience </em>. Stephen Traub.</li>
<li> <strong> <a href="http://www.w3.org/MarkUp/Guide/" target="_blank">Getting Started with HTML</a> </strong><br />
A primer to <em> Learning HTML 3.2 by Examples </em>, this is a comprehensive and succinct <a href="http://treemagic.info:8080/wiki/wiki/Guide">Guide</a> to writing standard HTML.</li>
<li> <strong> <a href="http://www.unplug.com/great/">Web Site Design Tips</a> </strong><br />
Web site design <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a> for the beginner to the expert. A great collection of classic web site design <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a> that will build a strong foundation for any new web designer. <a href="http://goodpractices.com/#" target="_top">/a&gt;  </a></li>
<li><a href="http://goodpractices.com/#" target="_top"> <strong> </strong></a><strong><a href="http://www.htmlhelp.com/reference/">The                              Web Design Group Reference Section</a> </strong><br />
Excellent background information and technical details on HTML authoring. <a href="http://treemagic.info:8080/wiki/wiki/Web%20Design">Web Design</a> Group.</li>
<li> <strong> <a href="http://trace.wisc.edu/world/web/" target="_parent">Designing for The Web</a> </strong><br />
A series of informative articles on Web site design, including <em> A Web Site is a Harsh Mistress </em> &amp; <em>Rules                              of Thumb</em>. The special focus is on complementing                              Web design skills with competence in interface design <a href="http://goodpractices.com/#" target="_top"> </a>.   Don &#8216; t miss <a href="http://www.acm.org/chapters/trichi/newsletters/apr97/web.design.html"> Web Site                              Design</a>. Diane Wilson.</li>
<li> <strong> <a href="http://www.useit.com/">Useit.com:                              Usable Information Technology</a> </strong><br />
An expansive resource on usability and user interface issues &#8211; - featuring several extremely challenging and well-researched essays on Web design and style. Jakob Nielsen.</li>
<li> <strong> <a href="http://english.unitecnology.ac.nz/resources/resources/tutorial/web_writing/understanding.html" target="_blank">                              Understanding HTML</a> </strong><br />
An outstanding presentation of HTML basics by an Australian with a fine writing style. Dianne Gorman.</li>
<li> <strong> <a href="http://www.mcsr.olemiss.edu/%7Emudws/webhints.html">Hints for Web Authors</a> </strong><br />
A short yet insightful historical analysis of conventional vs.web publishing , <strong> Hints for Web Authors </strong> is replete with solid recommendations on how to succeed with the latter, including a few pragmatic suggestions mixed in there for good measure, &#8220;&#8230; in hopes that others may find &#8216; em useful. &#8221; Warren Steel.</li>
<li> <strong> <a href="http://www.dantobias.com/webtips/">Dan&#8217;s                              Web Tips</a> </strong><br />
This huge resource contains a balanced <strong> summary review </strong> of most of today &#8216; s important Web authoring topics. Daniel Tobias.</li>
<li> <strong> <a href="http://www.w3.org/MarkUp/">HyperText                              Markup Language</a> </strong><br />
World Wide Web Consortium (W3C) home page for HTML. Here you will find pointers to specifications for HTML, guidelines for how to use HTML to the best effect and pointers to related work at W3C. W3C.</li>
</ul>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/design-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Style Tips</title>
		<link>http://wordpresshelp.org/2008/03/03/style-tips/</link>
		<comments>http://wordpresshelp.org/2008/03/03/style-tips/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:03:32 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/style-tips/</guid>
		<description><![CDATA[Condense textual content to fit the time and attention constraints of today &#8216; s busy Web users. Thoughts on Web Style Inverted Pyramids in Cyberspace Use small (byte-wise) graphics so graphics load more quickly in graphics-capable browsers. (It is not advisable to use GIFs for everything. It &#8216; s of the first importance to make [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Fstyle-tips%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Style%20Tips%22%20%7D);"></div>
<p> Condense textual content to fit the time and attention constraints of today &#8216; s busy Web users.</p>
<ul>
<li>  <a href="http://www.holovaty.com/" target="_blank">    Thoughts on Web Style</a></li>
<li>  <a href="http://www.useit.com/alertbox/9606.html">Inverted    Pyramids in Cyberspace</a></li>
</ul>
<p>Use <strong> small (byte-wise) graphics </strong> so graphics load more quickly in graphics-capable browsers. (It is not advisable to use GIFs for everything. It &#8216; s of the first importance to make the right choice between JPEG and a palette-based format. Avoid blindly choosing GIF and then trying to rescue yourself from the resulting problems.)</p>
<ul>
<li>  <a href="http://www.faqs.org/faqs/jpeg-faq/part1/preamble.html">JPEG Image Compression    Frequently Asked Questions</a></li>
<li>  When using graphics, provide <strong> textual alternatives </strong> for image-disabled or text-only Web browsers and indexing agents. Some people never turn images on.</li>
<li>  <a href="http://ppewww.ph.gla.ac.uk/%7Eflavell/alt/alt-text.html">Use of ALT Texts In    IMGs</a></li>
</ul>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/style-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessibility Guidelines</title>
		<link>http://wordpresshelp.org/2008/03/03/accessibility-guidelines/</link>
		<comments>http://wordpresshelp.org/2008/03/03/accessibility-guidelines/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 19:00:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[ambientwebs]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[treemagic]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/accessibility-guidelines/</guid>
		<description><![CDATA[Accessibility Guidelines and Tools Quick Tips to Make Accessible Web Sites &#8221; Quick Tips &#8221; introduce key concepts of accessible Web design. Please note that these are not complete guidelines. Web Accessibility Quick Reference A document created by AmbientWebs &#8216; s Web Services to provide a summary of the items that must be done to [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Faccessibility-guidelines%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Accessibility%20Guidelines%22%20%7D);"></div>
<h2> Accessibility Guidelines and <a href="http://wordpresshelp.org/tag/tools/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tools">Tools</a></h2>
<table>
<tr>
<td valign="top" width="50%"><a href="http://www.w3.org/WAI/EO/waicard12snapshot.gif">Quick Tips to Make Accessible Web Sites</a></td>
<td>&#8221; <a href="http://wordpresshelp.org/tag/quick/" class="st_tag internal_tag" rel="tag" title="Posts tagged with quick">Quick</a> <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">Tips</a> &#8221; introduce key concepts of accessible Web design. Please note that these are not complete guidelines.</td>
</tr>
<tr>
<td valign="top" width="50%"><a href="http://www.washburn.edu/accessibility/accessibility-quickref.html">Web Accessibility Quick Reference</a></td>
<td>A document created by <a href="http://wordpresshelp.org/tag/ambientwebs/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ambientwebs">AmbientWebs</a> &#8216; s Web Services to provide a summary of the items that must be done to accomplish web accessibility using the priorities established by WAI.</td>
</tr>
<tr>
<td valign="top" width="50%"><a href="http://webxact.watchfire.com/">WebXact</a></td>
<td>WebXact is a web-based tool that analyzes web pages for their accessibility to people with disabilities. The Center for Applied Special Technology (CAST) offers WebXact as a free public service in order to further its mission to expand opportunities for people with disabilities through the innovative uses of computer technology. To analyze a web page, type in the URL of the page that you want WebXact to examine and select Submit. WebXact will display a report indicating any accessibility and / or browser compatibility errors found on the page.</td>
</tr>
<tr>
<td valign="top" width="50%"><a href="http://www.w3.org/TR/WCAG/full-checklist.html">Checklist of Checkpoints for Web Content Accessibility Guidelines 1.0 </a></td>
<td>This list of checkpoints is divided up into THREE levels of priorities.</td>
</tr>
<tr>
<td valign="top" width="50%"><a href="http://www.w3.org/TR/WCAG/">Web Content Accessibility Guidelines 1.0</a></td>
<td>This is a very long document which outlines all of the guidelines. If you prefer to digest them all at once, you can read this entire document.</td>
</tr>
<tr>
<td valign="top" width="50%"><a href="http://www.w3.org/TR/WAI-WEBCONTENT-TECHS/">Techniques for Web Content Accessibility Guidelines 1.0</a></td>
<td>While Web Content <a href="http://treemagic.info:8080/wiki/wiki/Accessibility%20Guidelines">Accessibility Guidelines</a> 1.0 strives to be a stable document (as a W3C Recommendation), this document is expected to evolve as technologies change and content developers discover more effective techniques for designing accessible pages.</td>
</tr>
<tr>
<td valign="top" width="50%">&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<p><strong> <a href="http://www.washburn.edu/accessibility/resourcelinks.html">Other Web Accessibility Resource Links</a> </strong></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/accessibility-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Tips</title>
		<link>http://wordpresshelp.org/2008/03/03/general-tips/</link>
		<comments>http://wordpresshelp.org/2008/03/03/general-tips/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 18:50:59 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Site Development]]></category>
		<category><![CDATA[Web Developer]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wordpresshelp.org/2008/03/03/general-tips/</guid>
		<description><![CDATA[These tips will help beginners to create highly functional and accessible Web pages. Some of the tips focus on writing valid HTML syntax while others focus on designing pages for &#8221; ease-of-use. &#8221; General Tips Write your pages for multiple types of Web browsers &#8211; - to provide trouble-free access to the widest possible audience. [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwordpresshelp.org%252F2008%252F03%252F03%252Fgeneral-tips%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22General%20Tips%22%20%7D);"></div>
<p> These <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a> will help beginners to create highly functional and accessible Web pages. Some of the <a href="http://wordpresshelp.org/tag/tips/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tips">tips</a> focus on writing valid HTML syntax while others focus on designing pages for &#8221; ease-of-use. &#8221;</p>
<p>General Tips</p>
<ul>
<li>  Write your pages for multiple types of Web browsers &#8211; - to provide <strong> trouble-free access </strong> to the widest possible audience. The World Wide Web is a multi-platform, non-browser specific medium. It should not matter whether people browse your Web pages using Netscape, Explorer, Opera, Lynx, WebTV, NetPhonic &#8216; s Web-On-Call, Mobile Telephones, or Personal Data Assistants  (PDAs, or palmtops, the little computers  card). Each browser ought to render your informational Web pages without problems. If a Web page is designed properly, blind individuals, or anyone using text-to-voice or Braille displays, can easily listen to and review your work.
<ul>
<li>  <a href="http://www1.shore.net/%7Estraub/wysinwog.htm">What    You See Is Not What Others Get On The Web</a></li>
<li>  <a href="http://www.cast.org/bobby/">Bobby</a></li>
</ul>
</li>
<li>  Run Web pages through a validator to test their <strong> compliance </strong> with common HTML (HyperText Markup Language) specifications. Modify pages until they validate, because compliant pages have a better chance of being rendered by various Web browsers, as the writer intends. However, if you intend something that is impractical with HTML, it will be no less impractical for being syntactically valid. Work with the strengths of HTML rather than trying to batter it into a WYSIWYG page design system. (WYSIWYG stands for What You See Is What You Get.)</li>
<li>  <strong> Spell check </strong> and proof-read your documents.
<ul>
<li>  <a href="http://www.spellcheck.net/">Free    Website Spell checker</a></li>
</ul>
</li>
<li>  Establish a routine for <strong> locating and fixing </strong> broken internal and external Web <a href="http://wordpresshelp.org/tag/site/" class="st_tag internal_tag" rel="tag" title="Posts tagged with site">site</a> links.</li>
<li>  Include <strong> contact information </strong> and a copyright notice.
<ul>
<li>  <a href="http://www.w3.org/Provider/Style/SignIt.html">Sign    It!</a></li>
</ul>
</li>
</ul>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpresshelp.org/2008/03/03/general-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

