<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Muchsino's Weblog</title>
	<atom:link href="http://muchsino.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://muchsino.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 23 May 2009 11:57:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='muchsino.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Muchsino's Weblog</title>
		<link>http://muchsino.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://muchsino.wordpress.com/osd.xml" title="Muchsino&#039;s Weblog" />
	<atom:link rel='hub' href='http://muchsino.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Good Navigation Links</title>
		<link>http://muchsino.wordpress.com/2009/05/23/good-navigation-links/</link>
		<comments>http://muchsino.wordpress.com/2009/05/23/good-navigation-links/#comments</comments>
		<pubDate>Sat, 23 May 2009 11:57:03 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=42</guid>
		<description><![CDATA[It helps people move around your site when you have a clean navigation menu in the sidebar and/or the footer. It helps people find the posts and articles you want them to find. There are a variety of methods for user friendly site navigation on your WordPress site. Helping the user use your site means [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=42&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It helps people move around your site when you have a clean navigation menu in the sidebar and/or the footer. It helps people find the posts and articles you want them to find. There are a variety of methods for user friendly site navigation on your WordPress site.</p>
<p>Helping the user use your site means putting things where they can find them. Following the newsletter formats from the days of print, most website users are used to looking for intra-site links on the <em>sides</em> and <em>bottom</em> of a web page. As a designer, you can put them anywhere you want, but let&#8217;s stick with the conventional placement for now. After all, we want our WordPress sites to be user-friendly, right?</p>
<p>In the two WordPress Themes that come with your WordPress installation, both use a <strong>sidebar</strong> to hold most of the site&#8217;s navigation links. Other Themes may use navigational aids in the header and footer. While these navigation links can be displayed in any template file, typically, the navigation links include:</p>
<ul>
<li> Pages</li>
<li> Categories</li>
<li> Archives (by month)</li>
<li> Links</li>
<li> Admin or Meta</li>
</ul>
<p>The template tags associated with generating this list of navigation links are found in the default WordPress Themes&#8217;s sidebar inside of a nested list. Let&#8217;s look at each of these tags individually and then look how to expand the use of navigational aids on your WordPress site.</p>
<h2><span class="mw-headline">Pages</span></h2>
<p>With the introduction of WordPress v1.5, Pages were available to help the administrator create individual Pages outside of the WordPress Loop such as <strong>Contact Us</strong>, <strong>About Us</strong>, and <strong>What&#8217;s New</strong>.  The template tags used to display the list of individual Pages is wp_list_pages().</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;?php wp_list_pages(); ?&gt;</span></strong></p>
<p>There are many ways of customizing the <tt>wp_list_pages()</tt> tag to be more useful to your users. A long list of Pages and sub-Pages can go on for quite a while, so you might want to only feature the most important Pages in your sidebar.</p>
<p>To exclude some Pages from your list, you can set the parameters for <strong>exclude</strong>.  The following example excludes Pages with the Page-ID numbers of 17 and 38.</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;ul&gt;<br />
&lt;?php wp_list_pages(&#8216;exclude=17,38&#8242; ); ?&gt;<br />
&lt;/ul&gt;</span></strong></p>
<p>To learn more about customizing the <tt>wp_list_pages()</tt> template tag, visit the Template Tag page for wp_list_pages().</p>
<h2><span class="mw-headline">Categories</span></h2>
<p>The best template tag for creating a category list in your navigation menu is wp_list_categories().</p>
<p>The default usage of the category list tag is:</p>
<p style="padding-left:30px;"><span style="color:#008000;"><strong>&lt;?php wp_list_categories(); ?&gt;</strong></span></p>
<p>Again, like the Pages template tag, you can use <strong>exclude</strong> to limit the categories you want listed, making it easier for the user to pick from only a few instead of twenty or thirty categories. The following example excludes category-IDs 10 and 15.</p>
<p style="padding-left:30px;"><span style="color:#008000;"><strong>&lt;ul&gt;<br />
&lt;?php wp_list_categories(&#8216;exclude=10, 15&#8242;); ?&gt;<br />
&lt;/ul&gt;</strong></span></p>
<p>If you would like only to feature the <strong>children</strong> or <em>sub-categories</em> of one or more categories in your category list, you can use the <strong>child_of</strong> parameter.</p>
<p style="padding-left:30px;"><span style="color:#008000;"><strong>&lt;ul&gt;<br />
&lt;?php wp_list_categories(&#8216;child_of=8, 14&#8242;); ?&gt;<br />
&lt;/ul&gt;</strong></span></p>
<p>To learn more about customizing the these template tags, visit the Template Tag page for wp_list_categories().</p>
<h2><span class="mw-headline">Archives</span></h2>
<p>Like the categories template tag, there is an Archives date-based Template Tag called wp_get_archives(). The tag will allows you to display links to archives by year, day, week, day, or individual posts. You can limit the number of actual links to show in your Archives template tags.</p>
<p>The default usage of wp_get_archives will show a link for each month of posts:</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;?php wp_get_archives(); ?&gt;</span></strong></p>
<p>To show the most recent three months of posts by month, you would use the following:</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;ul&gt;<br />
&lt;?php wp_get_archives(&#8216;monthly&amp;limit=3&#8242;); ?&gt;<br />
&lt;/ul&gt;</span></strong></p>
<p>Displaying the archives by date, you can show the most recent 15 days:</p>
<p style="padding-left:30px;"><span style="color:#008000;"><strong>&lt;ul&gt;<br />
&lt;?php wp_get_archives(&#8216;type=daily&amp;limit=15&#8242;); ?&gt;<br />
&lt;/ul&gt;</strong></span></p>
<p>If you would like to show the actual posts, you can use the parameter <strong>postbypost</strong> which displays the most recent posts, with the number set by the <strong>limit</strong> parameter.  To show the last 25 posts by post title:</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;ul&gt;<br />
&lt;?php wp_get_archives(&#8216;type=postbypost&amp;limit=25&#8242;); ?&gt;<br />
&lt;/ul&gt;</span></strong></p>
<p>To learn more about customizing the this template tag, visit the Template Tag page for wp_get_archives().</p>
<h2><span class="mw-headline">Links</span></h2>
<p>The Links feature of WordPress, managed via Administration &gt; Links, allows displaying of external links, such as a blogroll, a user would like to feature on his or her blog. These links are generated by the template tag, wp_list_bookmarks().  For examples and more information on the specific use of each of this template tag, see wp_list_bookmarks().</p>
<h2><span class="mw-headline"> Admin or Meta </span></h2>
<p>The Admin or Meta list of links in the WordPress sidebar are the links which are used by the Administrator, if logged in, to access the administration panels of the site. They may also feature RSS Feeds and other information related to the administration or use of the site. Check the following tags for more information on which ones you might want on your site to assist yourself and other registered users:</p>
<ul>
<li> wp_register() &#8211; Registering on your site for comments and other administrative purposes</li>
<li> wp_loginout() &#8211; Logging in and out of your site&#8217;s administration panel with a password</li>
<li> bloginfo() &#8211; Various parameters available for setting the RSS/Atomz/RDF feeds for the site and comments</li>
<li> Template Tags &#8211; For more information on various template tags to use on your site</li>
</ul>
<h2><span class="mw-headline"> Other Navigation Locations </span></h2>
<p>In addition to the sidebar, you can help your users navigate through your site with navigation tags used elsewhere, such as in the <em>header</em> and <em>footer</em> of your site.  Using the above template tags for navigation links, you can style the link lists as horizontal menus instead of vertical lists.</p>
<h3><span class="mw-headline"> Link to Posts and Pages </span></h3>
<p>Often in these narrow areas, you may want to only highlight specific posts or Pages to save space and direct the user to specific areas to continue their browsing. To include a specific link to a post or Page, you can use the get_permalink() template tag.</p>
<p>The following example presents links to post-ID numbers 1 and 10 and lists the categories on the site, excluding category-ID 2 and 4.</p>
<p style="padding-left:30px;"><span style="color:#008000;"><strong>&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_permalink(1); ?&gt;&#8221;&gt;About My Blog&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_permalink(10); ?&gt;&#8221;&gt;About Me&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php wp_list_cats(&#8216;exclude=2, 4&#8242;); ?&gt;</strong></span></p>
<p>The list might look like this:</p>
<div style="border:1px solid blue;width:50%;font-size:120%;margin:20px;padding:20px;">
<ul>
<li> About My Blog</li>
<li> About Me</li>
<li> My Stories</li>
<li> My Travels</li>
<li> My Friends</li>
</ul>
</div>
<h3><span class="mw-headline">Next and Previous Posts</span></h3>
<p>There are two other sets of navigational aids to consider as you design your site. Both of these sets involve moving a user through your site from one post to another.</p>
<p>The first set is featured only on the non-single/non-permalink web pages and is the template tag posts_nav_link().  This tag creates two links at the bottom of the page within the WordPress Loop to display the <strong>next</strong> and <strong>previous</strong> pages of the index, archives, searches, and categories.</p>
<p>By default, the <tt>posts_nav_link</tt> looks like this:</p>
<div style="border:1px solid blue;width:50%;margin:20px;padding:20px;">« Previous Page  — Next Page »</div>
<p>To learn more about changing the look of this link, visit the Template Tag page for posts_nav_link().</p>
<p>The other set of navigational aids for moving through your site control the <strong>next post</strong> and <strong>previous post</strong> links typically found at the bottom of your single/permalink post. These direct the user to move to the next chronologically created post or the previous.</p>
<p>The template tags are previous_post() and next_post().  These can be styled in several different ways, using the <strong>next post</strong> and <strong>previous post</strong> titles or using the actual titles of the next and previous posts.</p>
<p>The following example displays the next and previous post titles with arrows to emphasis the direction the user may choose.</p>
<p style="padding-left:30px;"><strong><span style="color:#008000;">&lt;?php previous_post(&#8216;&amp;laquo; &amp;laquo; %&#8217;, &#8221;, &#8216;yes&#8217;); ?&gt;<br />
&lt;?php next_post(&#8216;% &amp;raquo; &amp;raquo; &#8216;, &#8221;, &#8216;yes&#8217;); ?&gt;</span></strong></p>
<div style="border:1px solid blue;width:50%;margin:20px;padding:20px;">« « Previous Post Title    |    Next Post Title » »</div>
<p>To learn more about changing the look of these links, visit the Template Tag page for previous_post() and next_post().</p>
<h2><span class="mw-headline"> Styling Your Navigation Links </span></h2>
<p>As you have seen, there are a lot of ways WordPress uses to help the user move through a WordPress Site. We&#8217;ve shown you some of the WordPress template tags, but there are also many Plugins available which also assist with site navigation such as providing <em>related posts</em>, <em>customized post lists</em>, and more to customize your site&#8217;s navigation.</p>
<p>The following are some of the resources that may help you in stylizing and customizing your navigation lists.</p>
<ul>
<li> Next and Previous Links</li>
<li> Styling Lists with CSS</li>
<li> Creating Horizontal Menus</li>
<li> Dynamic Menu Highlighting</li>
<li> <span class="new">Navigation Plugins</span></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=42&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/23/good-navigation-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>Wrapping Text Around Images</title>
		<link>http://muchsino.wordpress.com/2009/05/22/wrapping-text-around-images/</link>
		<comments>http://muchsino.wordpress.com/2009/05/22/wrapping-text-around-images/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:43:08 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=39</guid>
		<description><![CDATA[Current versions of WordPress now have image alignment built-in. WordPress adds CSS classes to align the image to the right, left, and center of a paragraph, so the text will wrap around the image. In order to take advantage of these new CSS classes for image alignment and the text wrapping around the image, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=39&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Current versions of WordPress now have image alignment built-in. WordPress adds CSS classes to align the image to the right, left, and center of a paragraph, so the text will wrap around the image.</p>
<p>In order to take advantage of these new CSS classes for image alignment and the text wrapping around the image, the WordPress Theme must include the following in the <code>style.css</code> found in the WordPress Theme directory.</p>
<pre>img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}</pre>
<p>When adding the image in your WordPress blog, select the image alignment as right, left, or center in the Image/Media Panel.</p>
<p>The image will be embedded into your blog post with the selected style for alignment such as:</p>
<pre>&lt;img src="<a class="external free" title="http://example.com/images/leaf.jpg" href="http://example.com/images/leaf.jpg">http://example.com/images/leaf.jpg</a>"
 alt="leaf graphic"
 title="leaf graphic"
class="alignright size-medium wp-image-3109"
height="25" width="30"/&gt;</pre>
<h2><span class="mw-headline"> Giving The Image Style </span></h2>
<div class="floatright"><a class="image" title="leaf.gif" href="http://codex.wordpress.org/File:leaf.gif"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Wrapping_Text_Around_Images_files/leaf.gif" border="0" alt="" width="37" height="46" /></a></div>
<p>There are times when you want an <a title="Using Images" href="http://codex.wordpress.org/Using_Images">image</a> on your post to fill the screen, or sit in the middle of text with writing above and below it, but most of the time you want your image to sit on one side or the other of the text and have the text flow or wrap around the image. While the styles above will float the image left and write, you may want to add more design elements to your image.</p>
<p>Let&#8217;s start from the beginning with a simple guide to using images in your WordPress blog.</p>
<p>First, here is a look at a typical image tag in your post, without the instructions for wrapping the text around the image. Note that we&#8217;ve added both the <tt>title</tt> and <tt>alt</tt> attributes to the tag; alt is important for accessibility, title is for the image tooltip.</p>
<p>&lt;img src=&#8221;<a class="external free" title="http://example.com/images/leaf.jpg" href="http://example.com/images/leaf.jpg">http://example.com/images/leaf.jpg</a>&#8221;   alt=&#8221;leaf graphic&#8221;   title=&#8221;leaf graphic&#8221; /&gt;</p>
<p>To begin the process of setting your image up to be wrapped, there are a few changes that you may need to make to the style sheet that controls your WordPress site. <a title="CSS" href="http://codex.wordpress.org/CSS">CSS</a> offers a great list of resources for creating and editing Cascading Style Sheets.</p>
<p>From your <a title="Using Themes" href="http://codex.wordpress.org/Using_Themes">WordPress Theme</a> folder, open the <tt>style.css</tt> file in a text-editor. Important! Save a back up copy somewhere before you do any edits!  Now, do a search for <tt>img</tt>. Hopefully, all your image selectors will be grouped together. If not, find them all and cut and paste them into one group to make this process easier.</p>
<p><a id="Borders" name="Borders"></a></p>
<h3><span class="mw-headline"> Borders </span></h3>
<p>You&#8217;ll need to decide if you want a border around your images and, if you do, what size, color, and type it should be. For no border, you would use the following:</p>
<p>img {border:0}</p>
<div style="border:1px solid red;background:white none repeat scroll 0 0;float:right;width:50px;height:70px;text-align:center;">
<p><a class="image" title="Image:leaf.gif" href="http://codex.wordpress.org/File:leaf.gif"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Wrapping_Text_Around_Images_files/leaf.gif" border="0" alt="Image:leaf.gif" width="37" height="46" /></a></div>
<p>For 1 pixel solid red line border, add:</p>
<p>img {border:solid red 1px}</p>
<p>If you create a link around an image, some browsers will put a border around the image to let the visitor know it&#8217;s a link. If you don&#8217;t want that, use the following:</p>
<p>a img {border:0}</p>
<p>You can still add a hover around the image so when the visitor moves their mouse over the image, not only will the mouse pointer turn into a hand, the image will get a colorful border:</p>
<p>a:hover img { border:solid red 1px; }  <a id="Padding_and_Image_Width" name="Padding_and_Image_Width"></a></p>
<h3><span class="mw-headline"> Padding and Image Width </span></h3>
<p>Let&#8217;s clean up one more thing to make the image in your content work better with the rest of the styles we will use.</p>
<p>We want to clear all the padding around the images within your content and make sure that the whole width of the image shows up rather than just a part of it. If it isn&#8217;t in your style sheet, add the following:</p>
<p>p img { padding: 0; max-width: 100%; }  <a id="Image_Left.2C_Right.2C_and_Center" name="Image_Left.2C_Right.2C_and_Center"></a></p>
<h3><span class="mw-headline"> Image Left, Right, and Center </span></h3>
<p>When an image sits on the sides of your text, it helps to have space between the text and the image so the words aren&#8217;t right up against the edge. As some browsers treat the margins and padding differently, the following styles will accommodate most browser&#8217;s &#8220;space requirements&#8221; so the image doesn&#8217;t overlap the text or any lists that appear inline with the image.</p>
<p>img.right { padding: 4px; margin: 0 0 2px 7px; display: inline; } img.left { padding: 4px; margin: 0 7px 2px 0; display: inline; }</p>
<p>The declaration of <tt>display:inline</tt> keeps the image inline with the text that you placed it with.</p>
<p>Now, it is time to add the <tt>float</tt> declaration to the images. BUT WAIT. Why should we waste our left and right floats on just images? Why not use them on anything that we want to sit on the right or left of the page and have the text float around it? You can do that, you know. But that&#8217;s for another tutorial. We&#8217;re not going to waste this, so if it isn&#8217;t there in your style sheet already, add the following:</p>
<p>.right { float: right; } .left { float: left; }</p>
<dl>
<dd><strong>Note:</strong> The Default/Kubrick Theme uses this technique but names the classes <tt>alignleft</tt> and <tt>alignright</tt>.  Using <tt>left</tt> and <tt>right</tt> seems easier to remember and use, but either name sets may be used to make this work. </dd>
</dl>
<p>So what about centering the image?  Yes, you can still do that too.  The <tt>center</tt> tag isn&#8217;t valid any more, so you can create a style for centering things:</p>
<p>img.centered { display: block; margin-left: auto; margin-right: auto; }  <a id="Left.2C_Right.2C_and_Centered_Examples" name="Left.2C_Right.2C_and_Centered_Examples"></a></p>
<h4><span class="mw-headline">Left, Right, and Centered Examples </span></h4>
<p>This sounds like a lot of complicated stuff, but once this is done, you will never have to mess with it again. We hope. To use it, create the link to your image and add <tt>class="right"</tt>, <tt> class="left"</tt>, or <tt>class="centered"</tt> and the image will move to the right, left, or center and the text will wrap around it. It&#8217;s just that simple.</p>
<div style="margin:20px;"><tt>&lt;img src="/images/leaf.gif" class="right" alt="Red leaf" title="Red Leaf" /&gt;This is some text that will wrap around the image that sits on the right side of the text that you are writing about the leaf that is there. That is, if you are writing about leaves in the first place and you want to write about this specific leaf.</tt></div>
<div style="margin:20px;">
<div style="border:1px solid blue;width:50%;font-size:105%;margin:20px;padding:20px;">
<div class="floatright"><a class="image" title="leaf.gif" href="http://codex.wordpress.org/File:leaf.gif"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Wrapping_Text_Around_Images_files/leaf.gif" border="0" alt="" width="37" height="46" /></a></div>
<p>This is some text that will wrap around the image that sits on the right side of the text that you are writing about the leaf that is there. That is, if you are writing about leaves in the first place and you want to write about this specific leaf.</p></div>
<div style="margin:20px;"><tt>&lt;p&gt;This is text that sits above the leaf image that you might be writing about in your post if you were to write about leaves. &lt;img src="/images/leaf.gif" class="centered" alt="Red leaf" title="Red Leaf" /&gt;This is some text that will sit below the text image and you can continue to write about the leaf that is there.&lt;/p&gt;</tt></div>
<div style="border:1px solid blue;width:50%;font-size:105%;margin:20px;padding:10px;">This is text that sits above the leaf image that you might be writing about in your post if you were to write about leaves.</p>
<div class="center">
<div class="floatnone"><a class="image" title="leaf.gif" href="http://codex.wordpress.org/File:leaf.gif"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Wrapping_Text_Around_Images_files/leaf.gif" border="0" alt="" width="37" height="46" /></a></div>
</div>
<p>This is some text that will sit below the text image and you can continue to write about the leaf that is there.</p></div>
<p><a id="Alternative_Text_Size" name="Alternative_Text_Size"></a></p>
<h3><span class="mw-headline"> Alternative Text Size </span></h3>
<p>Some browsers will now allow you to control the size of the text created by the <tt>ALT</tt> tag. This is the text that appears when you hold your mouse over an image or when the the image fails to load. You can set it to any size, but something much smaller than your content&#8217;s font size would be a good idea.</p>
<pre>img {font-size:60%}</pre>
<p><a id="Captioning_The_Image" name="Captioning_The_Image"></a></p>
<h2><span class="mw-headline"> Captioning The Image </span></h2>
<p>Images tend to just sit there, looking pretty. The <tt>alt</tt> and <tt>title</tt> properties say a little something about what the image looks like, but other than that, unless you add some text around it, it just sits there. So create a caption style that adds some &#8220;spice.&#8221;</p>
<div style="border:1px dashed #2f6fab;color:black;background-color:#f9f9f9;line-height:1.1em;padding:1em;">
<p><tt>.caption { margin: 5px; padding: 5px; border: solid 1px #E5E5FF; background: #E5F2FF; font-size:90%; color: black }</tt></div>
<p>In the above example, we&#8217;ve added a border and a little hint of background color, but you can style it however you want. We recommend that you at least make the text a difference size and padding to the overall container so it is distinguised from the rest of the post&#8217;s content.</p>
<div style="border:1px dashed #2f6fab;color:black;background-color:#f9f9f9;line-height:1.1em;padding:1em;">
<p><tt> &lt;div class="caption right"&gt;<br />
&lt;img src="<a class="external free" title="http://example.com/images/leaf.jpg" href="http://example.com/images/leaf.jpg">http://example.com/images/leaf.jpg</a>" alt="leaf graphic" title="leaf graphic"&gt;<br />
Red Leaf&lt;/div&gt; </tt></div>
<div style="border:1px solid blue;width:40%;font-size:105%;margin:20px;padding:20px;">
<div class="thumb tright">
<div class="thumbinner" style="width:39px;"><a class="image" title="Red Leaf" href="http://codex.wordpress.org/File:leaf.gif"><img class="thumbimage" src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Wrapping_Text_Around_Images_files/leaf.gif" border="0" alt="" width="37" height="46" /></a></p>
<div class="thumbcaption">Red Leaf</div>
</div>
</div>
<p>This is text that wraps around the leaf image that features a caption. You might want a caption under the picture of the leaf if you were writing about leaves in your post. The caption sits below the text and helps the user to understand what the picture is about.</p></div>
<p>In the example above, we just added the <tt>right</tt> class to the container which will position it as a float to the right, allowing the text to flow around it. Using the <tt>left</tt> class would float it to the left, and <tt>centered</tt> would give you the text, image centered, text effect.</p>
<p><a id="Clear_The_Display" name="Clear_The_Display"></a></p>
<h2><span class="mw-headline"> Clear The Display </span></h2>
<p>In the event that the image is larger than the amount of text that would otherwise surround it, causing the image to hang like a flag over some element below it, then at some point in the text, you&#8217;ll want to clear the display. Note that there is no text inside this division.</p>
<div style="border:1px dashed #2f6fab;color:black;background-color:#f9f9f9;line-height:1.1em;padding:1em;">
<p>&lt;div style=&#8221;clear:both;&#8221;&gt;&lt;/div&gt;</p></div>
<p><a id="Resources" name="Resources"></a></p>
<h2><span class="mw-headline"> </span></h2>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=39&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/22/wrapping-text-around-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://muchsino.wordpress.com/2009/05/22/36/</link>
		<comments>http://muchsino.wordpress.com/2009/05/22/36/#comments</comments>
		<pubDate>Fri, 22 May 2009 13:39:31 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=36</guid>
		<description><![CDATA[They say you can not judge a book by its cover, and yet every day people do. They pick up a book, look at the cover, and then are moved to either put it down, turn it over, or open it up just because of how the cover looks. Websites are also judged by their [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=36&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>They say you can not judge a book by its cover, and yet every day people do. They pick up a book, look at the cover, and then are moved to either put it down, turn it over, or open it up just because of how the cover looks. Websites are also judged by their covers and the first impression often comes from the <strong>header</strong>.</p>
<p>The <strong>header</strong> of your site is typically the first thing people see.  From this masthead or header art across the top of your page, people make sweeping judgements about what they are about to see and read. The same people who say you can not judge a book by its cover, also say that you only have 30 seconds to make a good impression. In the world of the Internet where the next web page is a click away, you have much less than that.</p>
<p>We are going to take you inside the architecture of a WordPress header and offer tips on how to customize it to become your own book cover, enticing people into your site with a good first impression. Then we will offer some tips from some experts on what makes a good website header.</p>
<p><a id="The_WordPress_Header" name="The_WordPress_Header"></a></p>
<h2><span class="mw-headline">The WordPress Header</span></h2>
<p>By default, the WordPress header is a simple piece of code. You do not have to get into the code to change the header that comes with whatever WordPress Theme you choose. You set the blog or website title and description in the Administration &gt; Settings &gt; General panel, and WordPress does the rest.</p>
<p>In its simplest form, the WordPress <strong>Classic</strong> Theme features the header code like this in the <tt>wp-content/themes/classic/header.php</tt> template file:</p>
<pre>&lt;h1 id="header"&gt;
&lt;a href="&lt;?php bloginfo('url'); ?&gt;"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;
&lt;/h1&gt;</pre>
<p>The header is set in an <tt>h1</tt> HTML tag and features one template tag used with two different options or <em>parameters</em>.  You can learn more about these parameters in the documentation for <tt>bloginfo()</tt>.  Basically, the first one displays the URL of the website in a link, and the second one displays the name of the blog or website as set in the Administration &gt; Settings &gt; General panel. When the user moves the mouse over the header title, the header can be clicked to return back to the main or front page of the site as set in the Administration &gt; Settings &gt; General  panel.</p>
<p>The WordPress <strong>Default</strong> Theme features an image in the background and presents the header like this in <tt>wp-content/themes/default/header.php</tt>:</p>
<pre>&lt;div id="header"&gt;
 &lt;div id="headerimg"&gt;
   &lt;h1&gt;
    &lt;a href="&lt;?php echo get_option('home'); ?&gt;"&gt;
       &lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;
   &lt;/h1&gt;
     &lt;div class="description"&gt;
       &lt;?php bloginfo('description'); ?&gt;
     &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
The header of the Default/Kubrick ThemeAgain,
the template tag featuring the name of the blog or website is in a
link, but this shows another usage similar to the URL request above. It
gets the same information, just in a different way. It also adds the <em>description</em> of the site from the Administration &gt; Settings &gt; General  panel.</pre>
<p>Basically, these two header examples do the same thing in different ways. They provide information in the header, with the potential for an image, and make the header title clickable to help navigation on the site. It is just a matter of how much information you want in your header, and how that information is displayed.</p>
<p>Using the first example from the Classic Theme, an image can still be used in the background, set within the style sheet in the <tt>h1</tt> selector, but the second one gives more control to the use of an image in the header by giving it its own division. How these look are totally controlled by the style sheet.</p>
<p><a id="Styling_the_Header" name="Styling_the_Header"></a></p>
<h2><span class="mw-headline">Styling the Header</span></h2>
<p>As listed in the two above examples, the styles for the header are contained within the <tt>h1</tt>, <tt>header</tt>, <tt>headerimg</tt>, and <tt>description</tt> CSS selectors.  These are all found within the <tt>style.css</tt>, though may be found in the styles in the <tt>header.php</tt> of the Theme you are using.  You will have to check both places.</p>
<p>In the Classic Theme, the CSS for the header are found in one selector, the <tt>#header</tt>.</p>
<p>#header { 	background: #90a090; 	border-bottom: double 3px #aba; 	border-left: solid 1px #9a9; 	border-right: solid 1px #565; 	border-top: solid 1px #9a9; 	font: italic normal 230% &#8216;Times New Roman&#8217;, Times, serif; 	letter-spacing: 0.2em; 	margin: 0; 	padding: 15px 10px 15px 60px; }</p>
<p>The background color is set to a green shade and there is a border all the way around the header which changes colors creating a recessed, shadow effect. The Times font is set with a size of 230% with a wider than normal letter spacing. The padding on the left side indents the text in from the left.</p>
<p>All of these can be easily changed, giving the border a thicker width and making it all the same color, changing the background color, the font size and style, the letter spacing, and more by modifying the information in each style attribute.</p>
<p>The same is true of the Default WordPress Theme header, except there are more styles to think about and they are found within the <tt>header.php</tt>&#8216;s &#8220;head&#8221; tag <strong><em>and</em></strong> the <tt>style.css</tt>, though once you have your styles set, you can move the information into your style sheet.</p>
<p>The styles that control the header&#8217;s look are found within the <tt>h1</tt>, <tt>header</tt>, <tt>headerimg</tt>, and <tt>description</tt> CSS selectors.  Just like the Classic Theme, find these references and make your modifications there to change the look.</p>
<p>Changing the header image of the Default WordPress Theme has been simplified with the introduction of a utility called <span class="external text">Kubrickr</span>. It simply asks you to supply a new image file name for the header and then switches it for you, so you do not have to dig into the code. If all you want to change is the header image, this is an extremely useful and easy tool.</p>
<p>If you do want to get your hands into the code, dig into your header styles and make the changes. Below is a simple tutorial on changing just the header image manually.</p>
<div class="center">
<div class="floatnone"><span class="image"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Designing_Headers_files/400px-connectionsthemeheader.jpg" border="0" alt="Connections Theme Header" width="400" height="135" /></span></div>
</div>
<p><a id="Changing_the_Header_Image" name="Changing_the_Header_Image"></a></p>
<h3><span class="mw-headline">Changing the Header Image</span></h3>
<p>There are many different header images and header art available for you to use to change the image in the header. The styles for the header image for the Default or Kubrick WordPress Theme, and any Theme based upon that Theme, are more complicated to change than those for the Classic Theme. The styles are found within the styles in the <tt>header.php</tt> &#8220;head&#8221; section, as well as in the <tt>styles.css</tt>.  To change only the header image reference, open the <tt>header.php</tt> template file and look for the styles like this:</p>
<p>#header {   background: url(&#8220;&lt;?php bloginfo(&#8216;stylesheet_directory&#8217;); ?&gt;/images/wc_header.jpg&#8221;)    no-repeat bottom center; } #headerimg  {   margin: 7px 9px 0;    height: 192px;    width: 740px; }</p>
<p>To change the image file, replace the &#8220;kubrickheader.jpg&#8221; with the name of the new graphic image you have uploaded to your site to replace it. If it is in a different directory, change that by replacing the <tt>bloginfo()</tt> tag with the specific address of the graphic&#8217;s location.</p>
<p>If you are using an image that is the same size, then simply replace the image. If it is a different size, fill in the height and width of the image in the next section called <tt>#headerimg</tt>.  If you do not know, and are using Windows, view the folder in which the image resides on your computer in <strong>Thumbnail</strong> view mode.  Click <strong>View &gt; Thumbnail</strong> from the Windows Explorer menu. In Thumbnail view mode, find your image and hold the mouse over it. A small balloon tip will pop up listing the dimensions. Use that information in the styles. Otherwise, just right click on the image file and choose <strong>Properties</strong> and it should give you the file size and dimensions.</p>
<p>Save the template file and upload it and the image to your website and take a look.  Some changes may need to be made to fine-tune the placement and look.</p>
<p>With the header image in place, it is time to tackle the rest of the header.  Open your <tt>style.css</tt> style sheet file and look for the following:</p>
<ul>
<li> <tt>h1</tt></li>
<li> <tt>header</tt></li>
<li> <tt>headerimg</tt></li>
<li> <tt>description</tt></li>
</ul>
<p>Your Theme may or may not have all of these, but the Default Theme has all of them in different places within the style sheet. All or some of these may need to have the attributes changed to change the look of your header.</p>
<p>If you change the size of the header image or header art, be sure and change the other structural CSS selectors like content and sidebar to accommodate the change in the header size.</p>
<h3><span class="mw-headline">Header Image Specifications</span></h3>
<p>A header image that fits within the Default WordPress Theme is about 192 x 740 pixels. If you are replacing the header within any WordPress Theme, check the size of the header image and then find a replacement that matches that size. If you choose a header image that is smaller or wider or taller than the replacement, you may have to modify the other structural elements of the web page to allow for the change in size of the header.</p>
<p>If you are modifying the entire site&#8217;s Theme, the width of the overall page or content area needs to be taken into consideration for the header image&#8217;s size. The two most common screen sizes are 1024&#215;768 and 800&#215;600 pixels. Yet, wide screen monitors are gaining ground and web designers now need to prepare for screen widths of 1280&#215;1024 and 1600&#215;1200.</p>
<p>If you set your website to &#8220;float,&#8221; positioned in the middle of the browser window with space on either side, then you can set your header width to whatever you want. If you are designing a Theme with a flexible or &#8220;elastic&#8221; screen width, then the width of your header becomes important.</p>
<p>If you are using a header image that can be repeated, and you are using elastic widths, you can set the styles within the header to repeat to fill the space:</p>
<pre>#header {
background: url("/images/kubrickheader.jpg")</pre>
<h3><span class="mw-headline">Hiding the Header Text</span></h3>
<p>Many Themes and Theme designers want to feature their header with a picture only, no text. Some will put the text in the graphic image, therefore not requiring the actual use of the text. One option is to remove the template tags that generate the title and description. The other option is to leave it in, but hide it.</p>
<p>To hide the header text while leaving it in the code, do not change anything in your template files.  Only change the CSS.  Add <tt>display:none</tt> to the CSS selectors you do not want to appear. For example, to hide the text within the <tt>h1</tt> selector:</p>
<p>h1 {display:none; font-size: 230%; color: blue;&#8230;&#8230;.</p>
<p>It is still there, but the browser has been commanded to not show it in any way.  The container literally is &#8220;not there.&#8221;</p>
<p>It might be hidden, but some web page screen readers and search engines will still find the information. If you are serious about making your site be accessible, some newer text readers access the style sheet and <em>do not read</em> the elements marked <tt>display:none</tt>.  There are two popular methods for working around this. One is to use the <tt>display:none</tt> as outlined above, but also include an <strong>aural style sheet</strong> that changes that selector to <tt>display:block</tt>, &#8220;turning the visibility&#8221; back on. The other method is to position the content literally &#8220;off the page&#8221; by a negative indent. Here is an example:</p>
<p>h1 {    font-size: 0;    text-indent: -1000px; }</p>
<p>This technique moves the entire <tt>h1</tt> tag and its contents physically off the web page. The screen reader will still &#8220;read&#8221; the text because it is there, but it will not display on the page. Extensive testing has proven so far that this technique works across most browsers and with all screen readers.</p>
<p>For more information on either technique and aural style sheets:</p>
<ul>
<li> <span class="external text">What do Screen Readers really say? (Accessibility and display:none)</span></li>
<li> <span class="external text">Testing Screen Readers and display:none</span></li>
<li> <span class="external text">Facts and Opinion About Fahrner Image Replacement</span></li>
<li> <span class="external text">Hiding Text But Not From Screen Readers</span></li>
<li> <span class="external text">W3&#8242;s Aural Style Sheets</span></li>
<li> <span class="external text">About Web Design&#8217;s Aural Style Sheets</span></li>
<li> <span class="external text">ACSS: Aural Style Sheets</span></li>
<li> <span class="external text">Richinstyles Guide to Aural Style Sheets</span></li>
</ul>
<p><a id="Making_the_Whole_Header_Clickable" name="Making_the_Whole_Header_Clickable"></a></p>
<h3><span class="mw-headline">Making the Whole Header Clickable</span></h3>
<p>To make the entire header, graphic and all, clickable, you must put the header graphic inside of a link. There are two ways to do this. You can put the graphic directly into the WordPress Theme manually, or you can use the stylesheet to define the link size area to encompass the header art area.</p>
<p>To make the header art clickable by embedding it into the header, in the <tt>wp-content/themes/classic/header.php</tt> template file of your WordPress Theme, change the following:</p>
<p>&lt;div id=&#8221;header&#8221;&gt;      &lt;h1&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;/&#8221;&gt;      &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt; &lt;/h1&gt; &lt;/div&gt;  to:   &lt;div id=&#8221;header&#8221;&gt;     &lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt;   &lt;img src=&#8221;http://example.com/headerimage.jpg&#8221; alt=&#8221;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&#8221; /&gt;     &lt;/a&gt;      &lt;h1&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt;&#8221; title=&#8221;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&#8221;&gt;          &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;      &lt;/h1&gt;</p>
<p>You can style the <tt>h1</tt> heading to overlap or sit below, or not even be visible in the header.</p>
<p>To make the overall area of the header clickable, the header must have a width area set for the <tt>h1</tt> anchor HTML tag to make the clickable area cover the header image in the background. The styles are set in the stylesheet.</p>
<p>The HTML and WordPress Template Tags look like this, the same as above:</p>
<p>&lt;pre&gt;&lt;div id=&#8221;header&#8221;&gt;      &lt;h1&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;/&#8221;&gt;      &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt; &lt;/h1&gt; &lt;/div&gt;</p>
<p>The CSS would then be styled something like this to enlarge the clickable link area and hide the header text (optional), customized to your own design needs.</p>
<p>#header h1 a { 	width: 400px; 	height: 100px; 	display: block; 	background: url(images/headerimage.gif) no-repeat top left; 	} #header h1 a span { display: none; }</p>
<p>Another option is to add a script to make the <tt>header</tt> section clickable, which may not work for all browsers. This is showcased in the <strong>Default</strong> WordPress Theme (Kubrick) with its clickable header:</p>
<ul>
<li> Open the <tt>wp-content/themes/default/header.php</tt> template file.</li>
<li> Change from <tt>&lt;div id="header"&gt;</tt> to:</li>
</ul>
<p>&lt;div id=&#8221;header&#8221; onclick=&#8221;location.href=&#8217;http://example.com/&#8217;;&#8221; style=&#8221;cursor: pointer;&#8221;&gt;</p>
<p>If you want both text areas of the header to be clickable and not the entire header image, use the following to make the header art and the blog title and description clickable.</p>
<p>&lt;div id=&#8221;header&#8221;&gt;  &lt;div id=&#8221;headerimg&#8221;&gt;    &lt;h1&gt;      &lt;a href=&#8221;&lt;?php echo get_option(&#8216;home&#8217;); ?&gt;&#8221;&gt;        &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;      &lt;/a&gt;    &lt;/h1&gt;  &lt;div class=&#8221;description&#8221;&gt;    &lt;a href=&#8221;&lt;?php echo get_option(&#8216;home&#8217;); ?&gt;&#8221;&gt;      &lt;?php bloginfo(&#8216;description&#8217;); ?&gt;    &lt;/a&gt;   &lt;/div&gt;  &lt;/div&gt; &lt;/div&gt;</p>
<h3><span class="mw-headline">Rotating Header Images</span></h3>
<p>There are several scripts available that will allow you to rotate images within the header, sidebar, or on any template file. We will examine the use of one of these, the <span class="external text">Random Image Rotator</span>.</p>
<p>Save the script to a separate folder in which you have the header images you wish to rotate in your header. For this example, call it <tt>rotate.php</tt>.  To use this as a background image that changes or rotates with every load of the web page:</p>
<pre>#header {
background: url("/images/headerimgs/rotate.php")
no-repeat bottom center; }</pre>
<p>To actually put this in your header, or elsewhere on your site, add an image link like this within the <tt>header</tt> division:</p>
<pre>&lt;img src="/images/headerimgs/rotate.php" alt="A Random Header Image" /&gt;</pre>
<p>Image rotating scripts include:</p>
<ul>
<li> <span class="external text">Photomatt&#8217;s Random Image Rotator</span></li>
<li> <span class="external text">Image Rotator PHP from Automatic Labs</span></li>
<li> <span class="external text">WordPress Randomize Plugin</span></li>
</ul>
<div class="center">
<div class="floatnone"><span class="image"><img src="/Documents%20and%20Settings/moco123/My%20Documents/Wordpress/Designing_Headers_files/400px-rdcthemeheader.jpg" border="0" alt="RDC Theme Header" width="400" height="85" /></span></div>
</div>
<p><a id="Adding_Navigation_to_Your_Header" name="Adding_Navigation_to_Your_Header"></a></p>
<h3><span class="mw-headline">Adding Navigation to Your Header</span></h3>
<p>Headers are another area where you can add navigation elements to your website. Typically these are horizontal menus at the top or bottom of your header. To add these, create a new division within the <tt>header</tt> to style your header navigation elements.</p>
<p>This can be as simple as displaying your categories across the top of the header using one of the <strong>List Categories</strong> template tags.  Let us look at one example using the <tt>list_cats()</tt> tag.</p>
<p>In this example, the <tt>list_cats()</tt> template tag is set to sort the list of categories by ID in an unordered list (<tt>&lt;ul&gt;&lt;li&gt;</tt>) without dates or post counts, does not hide empty categories, uses category &#8220;description&#8221; for the title in the links, does not show the children of the parent categories, and excludes categories 1 and 33. It sits in its own &#8220;category&#8221; division. Notice that a link to the &#8220;home&#8221; page or front page has been included manually at the start of the list.</p>
<pre>&lt;div id="header"&gt;
&lt;div id="categorylist"&gt;
&lt;ul&gt;&lt;li&gt;
&lt;a title="Home Page" href="index.php"&gt;HOME&lt;/a&gt;&lt;/li&gt;
&lt;?php list_cats(FALSE, '', 'ID', 'asc', '', TRUE, FALSE,
FALSE, FALSE, TRUE, FALSE, FALSE, '', FALSE,
'', '', '1,33', TRUE); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;!-- end of categorylist --&gt;
&lt;h1&gt;&lt;a href="&lt;?php bloginfo('url'); ?&gt;"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;/div&gt;&lt;!-- end of header --&gt;</pre>
<p>To style this list, the <tt>#categorylist</tt> in the <tt>style.css</tt> might be:</p>
<pre>#categorylist {font-size:12px; font-style:normal;
        text-transform:uppercase; }
#categorylist ul {list-style-type: none; list-style-image:none;
        margin:0; padding-bottom: 20px; }
#categorylist li { display: inline; padding: 0px 5px;}
#categorylist a:link, #category a:visited {color:blue}
#categorylist a:hover {color:red}</pre>
<p>It might look like this:</p>
<div style="border:1px solid blue;font-size:105%;color:blue;font-weight:bold;margin:20px;padding:20px;">WORDPRESS   COMPUTERS   INTERNET NEWS</div>
<p>You can also add your Pages, archives, and other links within your header navigation.  For more information on navigation menus:</p>
<ul>
<li> Good Navigation Links</li>
<li> Dynamic Menu Highlighting</li>
<li> Creating Horizontal Menus</li>
<li> Styling Lists with CSS</li>
<li> wp_list_cats()</li>
<li> list_cats()</li>
</ul>
<p><a id="Header_Tips" name="Header_Tips"></a></p>
<h2><span class="mw-headline">Header Tips</span></h2>
<p>Here are some tips and information to help you choose and customize your WordPress site&#8217;s header.</p>
<dl>
<dt>Pay attention to text placement and color. </dt>
<dd>The colors and placement of the text within a header can add or subtract to your presentation.  Here are some tips. </dd>
</dl>
<dl>
<dd>
<ul>
<li> If you use white text, make sure there is a background color in the <tt>header</tt> and/or <tt>headerimg</tt> to showcase the white text again if for some reason the image does not appear on the screen or the user has &#8220;show images&#8221; turned off. This will allow your white text to still be visible.</li>
<li> If the image has a main feature or element, position the text so it does not cover the main subject of the image.</li>
<li> If the text is hard to read against a busy area of the graphic, position the text to a less busy area of the header image.</li>
<li> Make sure the color of the text is easily seen by your visitors and does not clash with the header art colors. Fluorescent orange text on a lime green background is painful.</li>
<li> Be aware that some color differences and patterns in your header art may make the text letters in your overlaid text &#8220;disappear.&#8221; The same applies if you embed the text in your header art or header image.</li>
</ul>
</dd>
</dl>
<dl>
<dt>Have a purpose and point. </dt>
<dd>A good header reflects the content of the site. The rest of the site has to meet expectations and live up to the header, so the header must reflect the content, purpose and intention of the site. </dd>
<dt>It should invite visitors to remain. </dt>
<dd>A good header is like the cover of a book or magazine. It should encourage people to stay and have a look around, read and look more, and find something of value. It is the teaser, the lead that grabs their attention and says &#8220;there is something worth exploring here.&#8221; </dd>
<dt>It should blend in with the overall look. </dt>
<dd>Bold and dramatic headers lend themselves to boldly designed sites, whereas soft and pastel colored sites lend themselves to gentler graphic headers. A site dedicated to punk rock and grunge should have a header look punky and grungy. It is up to you, but think consistency. </dd>
<dt>Headers do not need to have pictures. </dt>
<dd>Not all headers must have pictures and graphics. Sometimes the words are more important, whether they are against a wash of color or a white background. </dd>
<dt>Cluttered headers are still cluttered. </dt>
<dd>Avoid cramming ads, navigation, text, scrolling news feeds, and the kitchen sink into your header.  Simple is always better. </dd>
<dt>Maintain accessibility standards in your header. </dt>
<dd>We mentioned hiding the header text, and there is more you can do to make sure your header meets accessibility standards. Use the <tt>h1</tt> tag so screen readers will <span class="external text">recognize it as a header</span>.  Use titles and <tt>alt</tt> descriptions in links and images used in the template file (not in the style sheet as background images). </dd>
<dt>Headers can be any height, but remember content sells. </dt>
<dd>The average header is less than 200 pixels high, but headers range in height from very thin to a half page. Remember that the main reason people visit your site is its content, and the more they have to scroll down past your header to get to the content, the less interested they tend to be. Help lead them to the content with your header. </dd>
<dt> Think &#8220;Site Identity.&#8221; </dt>
<dd>A header is part of the site&#8217;s identify or &#8220;brand&#8221; and people like to know they are on the same site when they click a link to another page within that site. Consider your header or header art as your site&#8217;s &#8220;brand identity&#8221;. </dd>
</dl>
<pre>
repeat-x top left; }</pre>
<p>This sets the header image to repeat horizontally beginning from the top left corner and going across. You can adjust these to whatever <span class="external text">background position</span> your header design and layout needs.</p>
<p><a id="Header_Art" name="Header_Art"></a></p>
<h3><span class="mw-headline">Header Art</span></h3>
<p>A new term growing in the web design field is <strong>header art</strong>. These are header images that are usually handmade using combinations of color, shapes, symbols, images, and text. They can take some time and labor to create. While there are some free header art sites, some sites sell their handmade header art. Although a photograph may be unique in its own way and convey the needed visual style, handmade header artwork is easier to match to other web page colors and is usually more aesthetically pleasing because of its distinctive nature.</p>
<p>Choosing pre-made header art has some benefits. The artists have already done the work and all you have to do is choose the design that best matches your website. And the graphic is ready to use, already sized and saved as a small file size.</p>
<p><span class="external text">Digital Westex&#8217;s WordPress Header Art</span> features a wide range of header art sized and ready for free download specifically for WordPress.</p>
<p><a id="Header_Art_Copyrights" name="Header_Art_Copyrights"></a></p>
<h4><span class="mw-headline">Header Art Copyrights</span></h4>
<p>The best header art to use, if you do not want to generate your own, is any that bear the <span class="external text">Creative Commons License</span> that specifically allows its public use. Read the individual license for the image&#8217;s use to make sure that you have permission to use the header art on your site. Usually you must attribute the author, share alike and not use it for commercial purposes. If in doubt, always ask permission from the author before use.</p>
<p>As header art is made and licensed &#8220;as is&#8221; by the designer/artist, some header art cannot be modified without the artist&#8217;s permission. Check the website copyrights and licenses and ask if you are in doubt and wish to modify the artwork.</p>
<p><a id="Designing_Your_Own_Header_Art" name="Designing_Your_Own_Header_Art"></a></p>
<h4><span class="mw-headline">Designing Your Own Header Art</span></h4>
<p>You can also design your own header art. Any graphic design software program will work. Popular ones include Adobe Photoshop, Adobe Elements, JASC PaintShop Pro, The Gimp and Macromedia Fireworks. The graphic design software should have the ability to resize and control the resolution and type of the image when saved. The size of your header art should be the size of the header container you&#8217;re going to put it in.</p>
<p>You can use your own photographs, artwork, fonts, and any combination of images to create your header art. When done, save it &#8220;for the web&#8221; as a jpg, gif, or .png file. For an explanation on which to use read <span class="external text">Sitepoint&#8217;s GIF-JPG-PNG What&#8217;s the Difference</span> article.  These file types will <em>compress</em> the image&#8217;s resolution, reducing the file&#8217;s size. In general, avoid file sizes larger than 50K as larger sizes tend to slow a site access times.</p>
<pre></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=36&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/22/36/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Themes</title>
		<link>http://muchsino.wordpress.com/2009/05/22/using-themes/</link>
		<comments>http://muchsino.wordpress.com/2009/05/22/using-themes/#comments</comments>
		<pubDate>Fri, 22 May 2009 13:33:33 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=30</guid>
		<description><![CDATA[Before the advent of Themes, WordPress generated content using a single file, index.php, and files to support comment display and submission. A single style sheet controlled the presentation. All other pages, including the category and archive pages, were generated by passing parameters to the index.php page. The new Theme system provides two convenient features. Physically [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=30&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before the advent of Themes, WordPress generated content using a single file, <tt>index.php</tt>, and files to support comment display and submission. A single style sheet controlled the presentation. All other pages, including the category and archive pages, were generated by passing parameters to the <tt>index.php</tt> page.</p>
<p>The new Theme system provides two convenient features.</p>
<dl>
<dt> Physically Separate Components </dt>
<dd>The new WordPress modular template files system provides a method to define separate physical PHP files for the different components of your WordPress site. This allows creation of unique designs and functionality for many special pages, such as category archives, monthly archives, and the individual entry pages. </dd>
<dt>Quickly Change Layout and Design </dt>
<dd>It allows users with appropriate permissions to quickly change the layout of the entire site by uploading a new theme and essentially flipping a switch in the admin panel. </dd>
</dl>
<p>The old method of generating pages will still work. If you are upgrading from v1.2 or v1.2.1 or v1.2.2, <strong>you can continue using your existing design</strong>.  Keeping your older design will not prevent you from adding additional themes and easily switching between designs.</p>
<p><a id="What_is_a_Theme.3F" name="What_is_a_Theme.3F"></a></p>
<h2><span class="mw-headline">What is a Theme?</span></h2>
<p>Fundamentally, the WordPress Theme system is a way to &#8220;skin&#8221; your weblog. Yet, it is more than just a &#8220;skin.&#8221; Skinning your site implies that only the design is changed. WordPress Themes can provide much more control over the look <em>and presentation</em> of the material on your website.</p>
<p>A WordPress Theme is a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog. These files are called <strong>template files</strong>. A theme modifies the way the site is displayed, without modifying the underlying software. Themes may include customized template files, image files (<tt>*.jpg</tt>, <tt>*.gif</tt>), style sheets (<tt>*.css</tt>), custom Pages, as well as any necessary code files (<tt>*.php</tt>). For an introduction to template files, see Stepping Into Templates.</p>
<p>Themes are a whole new ball game. Let&#8217;s say you write a lot about cheese and gadgets. Through the innovative use of the WordPress Loop and template files, you can customize your Cheese category posts to look different from your Gadgets category posts. With this powerful control over what different pages and categories look like on your site, you are limited only by your imagination. For information on how to use different Themes for different categories or posts, see The Loop in Action and Category Templates.</p>
<h2><span class="mw-headline">Get New Themes</span></h2>
<p>The <span class="external text">WordPress Theme Directory</span> is the official site for WordPress Themes which have been checked and inspected, and are free for downloading. The site features the ability to search by type and style, and offers a demonstration of the page view elements of the Theme.</p>
<h2><span class="mw-headline">Using Themes</span></h2>
<p>WordPress supplies two themes in its distribution for your initial use. You can switch between these two themes using the admin panel. Themes that you add to that directory will appear in the Administration Panels &gt; Design &gt; Themes as additional selections.</p>
<h3><span class="mw-headline">Adding New Themes</span></h3>
<p>There are many themes available for download that will work with your WordPress installation.</p>
<div class="thumb tright">
<div class="thumbinner" style="width:182px;"><span class="image"><img class="aligncenter size-full wp-image-32" title="180px-presentthemes2" src="http://localhost/wordpress/wp-content/uploads/2009/05/180px-presentthemes2.png" alt="180px-presentthemes2" width="180" height="94" /></span></p>
<div class="thumbcaption">
<div class="magnify"><span class="internal"><br />
</span></div>
<p>Presentation Theme Panel</p></div>
</div>
</div>
<p>If the theme that you are installing provides instructions, be sure to read through and follow those instructions for the successful installation of the theme. <strong>It is recommended that theme developers provide installation instructions for their own themes</strong>, because themes can provide special optional functionality that may require more steps than the basic installation steps covered here. If your theme does not work after following any provided instructions, please <strong>contact the theme author for help</strong>.</p>
<p>To add a new theme to your WordPress installation, follow these basic steps:</p>
<ol>
<li> Download the theme archive and extract the files it contains. You may need to preserve the directory structure in the archive when extracting these files. Follow the guidelines provided by your theme author.</li>
<li> Using an FTP client to access your host web server, create a directory to contain your theme in the <tt>wp-content/themes</tt> directory provided by WordPress.  For example, a theme named <strong>Test</strong> should be in <tt>wp-content/themes/test</tt>.  Your theme may provide this directory as part of the archive.</li>
<li> Upload the theme files to the new directory on your host server.</li>
<li> Follow the instructions below for selecting the new theme.</li>
</ol>
<h4><span class="mw-headline">Adding New Themes in cPanel </span></h4>
<p>If your host offers the cPanel control panel, and the theme files are in a .zip or .gz archive follow these instructions. Note: This assumes the theme you download is a compressed (zip) file and the files in the zip file are in their &#8216;named&#8217; folder.</p>
<ol>
<li> Download the theme zip file to your local machine.</li>
<li> In cPanel File Manager, navigate to your themes folder. If you have WordPress installed in it&#8217;s own folder called wordpress, you would navigate to &#8220;public_html/wordpress/wp-content/themes&#8221; and if WordPress is installed in your web-root folder you would navigate to &#8220;public_html/wp-content/themes&#8221;.</li>
<li> Once you&#8217;ve navigated to the themes folder in cPanel File Manager, click on Upload file(s) and upload that zip file you saved in Step 1.</li>
<li>Once the zip file is uploaded, click on the zip file name in cPanel, then in the panel to the right, click on Extract File Contents, and that zip file will be uncompressed.</li>
<li>Follow the instructions below for selecting the new theme.</li>
</ol>
<p>Note: You can also install and activate the plugin <span class="external text">Get_Theme</span>, to download themes directly to your blog.</p>
<h3><span class="mw-headline">Selecting the Active Theme</span></h3>
<p>To select the active theme for your site:</p>
<ol>
<li> Log in to the WordPress Administration Panels.</li>
<li> Select the Design subpanel, then Themes.</li>
<li> From the <strong>Available Themes</strong> section, click on theme title (or theme screenshot) for the theme you wish to activate.</li>
<li> A preview of the theme will be shown to activate theme click the <strong>Activate &#8220;Theme Name&#8221;</strong> link in the top right.</li>
</ol>
<p>Your selection should immediately become active.</p>
<h2><span class="mw-headline">Creating Themes</span></h2>
<p>If you are interested in creating your own theme for distribution, or learning more about the architecture of themes, please review the documentation regarding Theme Development and Designing Themes for Public_Release.</p>
<h3><span class="mw-headline">Theme Files</span></h3>
<p>The following are the files typically included within a Theme.</p>
<ul>
<li>404 Template = <tt>404.php</tt></li>
<li>Archive Template = <tt>archive.php</tt></li>
<li>Archive Index Page = <tt>archives.php</tt></li>
<li>Comments Template = <tt>comments.php</tt></li>
<li>Footer Template = <tt>footer.php</tt></li>
<li>Header Template = <tt>header.php</tt></li>
<li>Links = <tt>links.php</tt></li>
<li>Main Template = <tt>index.php</tt></li>
<li>Page Template = <tt>page.php</tt></li>
<li>Popup Comments Template = <tt>comments-popup.php</tt></li>
<li>Post Template = <tt>single.php</tt></li>
<li>Search Form = <tt>searchform.php</tt></li>
<li>Search Template = <tt>search.php</tt></li>
<li>Sidebar Template = <tt>sidebar.php</tt></li>
<li>Stylesheet = <tt>style.css</tt></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=30&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/22/using-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>

		<media:content url="http://localhost/wordpress/wp-content/uploads/2009/05/180px-presentthemes2.png" medium="image">
			<media:title type="html">180px-presentthemes2</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress Semantics</title>
		<link>http://muchsino.wordpress.com/2009/05/22/wordpress-semantics/</link>
		<comments>http://muchsino.wordpress.com/2009/05/22/wordpress-semantics/#comments</comments>
		<pubDate>Fri, 22 May 2009 13:28:14 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=26</guid>
		<description><![CDATA[Introduction to WordPress Terminology WordPress was created by the developers as weblogging or blogging software. A blog, as defined in the Codex Glossary, is an online journal, diary, or serial, published by a person or group of people. Many blogs are personal in nature, reflecting the opinions and interests of the owner. But, blogs are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=26&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><span class="mw-headline">Introduction to WordPress Terminology</span></h2>
<p>WordPress was created by the developers as <strong>weblogging</strong> or blogging software.  A blog, as defined in the Codex Glossary, is an online journal, diary, or serial, published by a person or group of people.  Many <em>blogs</em> are personal in nature, reflecting the opinions and interests of the owner.  But, <em>blogs</em> are now important tools in the world of business, politics, and entertainment.</p>
<p><em>Blogs</em> are a form of a Content Management System (CMS) which <span class="external text">Wikipedia</span> calls &#8220;a system used to organize and facilitate collaborative content creation.&#8221;   Both <em>blogs</em> and <em>Content Management Systems</em> can perform the role of a <span class="external text">website</span> (<strong>site</strong> for short).  A <em>website</em> can be thought of as a collection of articles and information about a specific subject, service, or product, which may not be a personal reflection of the owner.</p>
<p><a id="Terminology_Related_to_Content" name="Terminology_Related_to_Content"></a></p>
<h3><span class="mw-headline">Terminology Related to Content</span></h3>
<p>The term <strong>Word</strong> in WordPress refers to the words used to compose <span class="external text">posts</span>.  <em>Posts</em> are the principal element (or content) of a blog.  The <em>posts</em> are the writings, compositions, discussions, discourses, musings, and, yes, the rantings of the blog&#8217;s owner and guest authors. <em>Posts</em>, in most cases, are the reason a blog exists; without <em>posts</em>, there is no blog!</p>
<p>To facilitate the post writing process, WordPress provides a <span class="mw-redirect">full featured authoring tool</span> with modules that can be moved, via <span class="external text">drag-and-drop</span>, to fit the needs of all authors.  The Dashboard QuickPress module makes it easy to quickly write and publish a post.  There&#8217;s no excuse for not writing.</p>
<p>Integral to a blog are the pictures, images, sounds, and movies, otherwise know as media.  <em>Media</em> enhances, and gives life to a blog&#8217;s content.  WordPress provides an easy to use method of inserting <em>Media</em> directly into posts, and a method to upload Media that can be later attached to posts, and a Media Manager to manage those various <em>Media</em>.</p>
<p>An important part of the <span class="mw-redirect">posting</span> process is the act of assigning those posts to categories.  Each post in WordPress is filed under one or more <em>categories</em>.  <em>Categories</em> can be hierarchical in nature, where one category acts as a parent to several child, or grandchild, categories.  Thoughtful <em>categorization</em> allows posts of similar content to be grouped, thereby aiding viewers in the navigation, and use of a site. In addition to categories, terms or keywords called tags can be assigned to each post.  <em>Tags</em> act as another navigation tool, but are not hierarchical in nature.</p>
<p>In turn, post categories and tags are two of the elements of what&#8217;s called post meta data.  <em>Post meta data</em> refers to the information associated with each post and includes the author&#8217;s name and the date posted as well as the post categories. <em>Post meta data</em> also refers to Custom Fields where you assign specific words, or keys, that can describe posts.  But, you can&#8217;t mention <em>post meta data</em> without discussing the term <strong>meta</strong>.</p>
<p>Generally, meta means <strong>&#8220;information about&#8221;</strong>; in WordPress, <em>meta</em> usually refers to <strong>administrative</strong>-type information.  So, besides <em>post meta data</em>, <em>Meta</em> is the HTML tag used to describe and define a web page to the outside world, like <em>meta tag keywords</em> for search engines.   Also, many WordPress-based sites offer a <em>Meta</em> section, usually found in the sidebar, with links to login or register at that site.  And, don&#8217;t forget Meta Rules: The rules defining the general protocol to follow in using this Codex, or <em>Meta,</em> as in the <span class="external text">MediaWiki</span> <span class="external text">namespace</span> that refers to administrative functions within Codex.  That&#8217;s a lot of <em>Meta</em>!</p>
<p>After a post is made public, a blog&#8217;s readers will respond, via comments, to that post, and in turn, authors will reply.  <em>Comments</em> enable the communication process, that give-and-take, between author and reader.  <em>Comments</em> are the life-blood of most blogs.</p>
<p>Finally, WordPress also offers a content management tool called a Page.  <em>Pages</em> often present static information, such as &#8220;About Me&#8221;, or &#8220;Contact Us&#8221;, <em>Pages</em>.  Typically &#8220;timeless&#8221; in nature, <em>Pages</em> should not be confused with the time-oriented objects called <em>posts</em>. Interestingly, a <em>Page</em> is allowed to be commented upon, but a <em>Page</em> cannot be categorized.</p>
<p><a id="Terminology_Related_to_Design" name="Terminology_Related_to_Design"></a></p>
<h3><span class="mw-headline">Terminology Related to Design</span></h3>
<p>The <em>flexibility</em> of WordPress is apparent when discussing terminology related to the design of a WordPress blog.  At the core of WordPress, developers created a programming structure named The Loop to handle the processing of posts.  <em>The Loop</em> is the critical PHP program code used to display <em>posts</em>.  Anyone wanting to enhance and <strong>customize</strong> WordPress will need to understand the mechanics of <em>The Loop</em>.</p>
<p>Along with The Loop, WordPress developers have created Template Tags which are a group of PHP functions that can be invoked by designers to perform an action or display specific information. It is the <em>Template Tags</em> that form the basis of the Template Files.  <em>Templates (files)</em> contain the programming pieces, such as <em>Template Tags</em>, that control the structure and flow of a WordPress site.  These files draw information from your WordPress MySQL database and generate the HTML code which is sent to the web browser.  A Template Hierarchy, in essence the order of processing, dictates how <em>Templates</em> control almost all aspects of the output, including Headers, Sidebars, and Archives.  <em>Archives</em> are a dynamically generated list of posts, and are typcially grouped by date, category, tag, or author.</p>
<p>Templates and Template Tags are two of the pieces used in the composition of a WordPress Theme.  A <em>Theme</em> is the overall design of a site and encompasses color, graphics, and text.  A <em>Theme</em> is sometimes called the <strong>skin</strong>.  With the recent advances in WordPress, Theme Development has become a hot topic.  WordPress-site owners have available a long list of <em>Themes</em> to choose from in deciding what to present to their sites&#8217; viewers.  In fact, with the use of a <span class="external text">Theme Switcher Revisited Plugin</span>, WordPress designers can allow their visitors to select their own <em>Theme</em>.</p>
<p>Plugins are custom functions created to extend the core functionality of WordPress. The WordPress developers have maximized flexibility and minimized code bloat by allowing outside developers the opportunity to create their own useful add-on features. As evidenced by the <span class="external text">Plugin Directory</span>, there&#8217;s a <em>Plugin</em> to enhance virtually every aspect of WordPress.  A Plugin management tool makes it extremely easy to find and install Plugins.</p>
<p><a id="Terminology_for_the_Administrator" name="Terminology_for_the_Administrator"></a></p>
<h3><span class="mw-headline">Terminology for the Administrator</span></h3>
<p>Another set of terms to examine are those involving the Administration of a WordPress site.  A comprehensive set of Administration Panels enables users to <strong>easily</strong> administer and monitor their blog. A WordPress administrator has a number of powers which include requiring a visitor to register in order to participate in the blog, who can create new posts, whether comments can be left, and if files can be uploaded to the blog. An Administrator also defines Links and the associated Link Categories which are an important part of a blog&#8217;s connection to the outside world.</p>
<p>Some of the main administrative responsibilities of a WordPress blog involve adding, deleting, and managing Registered Users.  Administering users means controlling Roles and Capabilities, or permissions.  <strong>Roles</strong> control what functions a registered <em>user</em> can perform as those functions can range from just being able to login at a blog to performing the role administrator.</p>
<p>Another chief concern for the blog administrator is Comment Moderation.  Comments, also called <span class="mw-redirect">discussions</span>, are responses to posts left for the post author by the visitor and represent an important part of &#8220;the give and take&#8221; of a blog. But <em>Comments</em> must be patrolled for Spam and other malicious intentions.  The WordPress Administration Comments SubPanel simplifies that process with easy-to-use screens which add, change, and delete Comments.</p>
<p>And not to be forgotten is the obligation for an administrator to keep their WordPress current to insure that the latest features, bugs, and security fixes are in effect. To accomodate administrators, WordPress has a simple Upgrade Tool to download and install the lastest version of WordPress.  There&#8217;s no excuse to not upgrade!</p>
<p><a id="The_Terminology_of_Help" name="The_Terminology_of_Help"></a></p>
<h3><span class="mw-headline">The Terminology of Help</span></h3>
<p>The final set of <em>jargon</em> relates to <strong>helping</strong> you with WordPress.  There are many <em>help</em> resources available to WordPress users; <span class="mw-redirect">Getting More Help</span>,  Finding WordPress Help, Troubleshooting, and WordPress FAQ (frequently asked questions) are good starting points.  Also Getting Started with WordPress will <strong>jump-start</strong> readers into the world of WordPress and the excellent WordPress Lessons provide in-depth <strong>tutorials</strong> on many of the aspects of using WordPress.  Among the most important resources is the WordPress Support Forum where <strong>knowledgeable</strong> volunteers answer your questions and help solve any problems related to WordPress.  And, of course, this Codex which is filled with hundreds of articles designed to make your WordPress experience a success!</p>
<p><a id="History_of_the_WordPress_Name" name="History_of_the_WordPress_Name"></a></p>
<h2><span class="mw-headline">History of the WordPress Name</span></h2>
<p>Besides the technical terminology of WordPress, it&#8217;s also interesting to know the history of the name, WordPress. The name &#8220;WordPress&#8221; was originally coined by <span class="external text">Christine Selleck</span> (<span class="external text">see related post</span>) in response to developer Matthew Mullenweg&#8217;s desire to associate his new software project with <span class="external text">printing presses</span>.  In this sense, <strong>press</strong> refers to the world of reporters, journalists, columnists, and photographers. An aptly chosen name, because WordPress serves as the <strong>printing press</strong> that enables its users to <em>publish</em> their <strong>words</strong>.  It&#8217;s a good name, don&#8217;t you think so?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=26&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/22/wordpress-semantics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>Playing With Fonts</title>
		<link>http://muchsino.wordpress.com/2009/05/22/playing-with-fonts/</link>
		<comments>http://muchsino.wordpress.com/2009/05/22/playing-with-fonts/#comments</comments>
		<pubDate>Fri, 22 May 2009 12:32:39 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=23</guid>
		<description><![CDATA[Fonts Represent Your Content There&#8217;s no doubt that your words, your posts, are the meat and potatoes of your blog or website. Those words, along with your lovely colors and pictures, tell your website&#8217;s story. But, don&#8217;t forget to pay attention to your font selections. The fonts you choose in designing your theme can influence [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=23&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><span class="mw-headline">Fonts Represent Your Content</span></h2>
<p>There&#8217;s no doubt that your words, your posts, are the meat and potatoes of your blog or website. Those words, along with your lovely colors and pictures, tell your website&#8217;s story.  But, don&#8217;t forget to pay attention to your font selections.  The fonts you choose in designing your theme can influence whether or not people hang around to see more than a page or two of your pretty work.</p>
<p>Fonts come in a wide variety of types and styles, but unfortunately, unless the user actually has that font installed on their machine, they will see something that is only &#8220;close&#8221;, such as a generic serif or sans-serif, to what you wanted to present. If you want to see a list of what you have installed on your machine, visit several of the font sites listed below or this <span class="external text">font test</span>.  If your font is there, you will see it.  If not, you will see a generic Courier font.</p>
<p>In your Theme&#8217;s style sheet (<tt>style.css</tt> usually) you can control the font-family (the list of fonts to display), the color, the size, and other aspects of your font. The following example sets the fonts for your sidebar menu, sets the size to <tt>1em</tt> high, and sets the color to blue:</p>
<pre>#menu {font-family: Verdana, Arial, Helvetica,
   sans-serif; font-size:1em; color:blue; }</pre>
<p>As you can see, you&#8217;ve set more than one font in the font-family. If the user doesn&#8217;t have Verdana, Arial will take over. If Verdana and Arial are missing, they have a chance to use Helvetica. If all else fails, the user&#8217;s system fonts takes over and uses the default font for <em>sans-serif</em>.  This list of choices helps the designer control the fonts and insures a more consistent &#8220;look and feel&#8221;.</p>
<p>Font families tend to be single words, but on occasion you will find a phrase to represent a font such as <em>Lucida Console</em>.  This is set in the style selector surrounded with quote marks such as:</p>
<pre>#menu {font-family: Verdana, Arial, Helvetica,
     "Lucida Console", sans-serif;.....</pre>
<h2><span class="mw-headline">Fonts in WordPress</span></h2>
<p>WordPress Themes use fonts in many different ways, and not always consistently. It depends upon the Theme author&#8217;s decisions and needs in designing a Theme. Different fonts can be found in different areas of the website, one type in the header, another in the sidebar (or maybe two or three), and another font style or type in the post content area. Finding those fonts in order to change them, can give a user grief.</p>
<p>Since fonts can be anywhere, finding the font you want to change can be a challenge. Generally, an overall font is set in the <tt>body</tt> of a website.</p>
<p>body {font-family: Verdana, Arial, Helvetica,       Futura, sans-serif;       font-size: 1em;       padding:0;       margin:0; }</p>
<p>This covers the definition of the fonts found within the site that are not definied by a specific tag, class or div. It&#8217;s the &#8220;fall-back font&#8221;.</p>
<p>Fonts found within the header of a site are normally found within the <tt>header</tt> div and same for the <tt>sidebar</tt> or <tt>menu</tt> and <tt>footer</tt> style divisions. The content, though, may be more challenging to track down.</p>
<p>Fonts within the post content area are often found within the following, but not always, CSS classes:</p>
<ul>
<li> content</li>
<li> post</li>
<li> entry</li>
<li> post-entry</li>
</ul>
<p>They may have the font information in the specific class or in a paragraph tag:</p>
<p>.content p { margin:5px;     padding:5px;     font-family: Tahoma, Verdana, Helvetica, sans-serif;      font-size: 110%;     color: black; }</p>
<p>Fonts within the <tt>sidebar</tt> or <tt>menu</tt> nested lists can be very difficult to narrow down. For a step-by-step guide of all the nested lists found within many WordPress sites, see Styling Lists with CSS.</p>
<p>If you are still having trouble tracking down a specific font code, consider using some of the tips and techniques in Finding Your CSS Styles.</p>
<p><a id="Which_Font" name="Which_Font"></a></p>
<h2><span class="mw-headline">Which Font</span></h2>
<p>Determining which font will work best on your site is a personal choice, but there are articles that will help you decide. We recommend that you begin with fonts that are most commonly found on most people&#8217;s computers, and that are easy to read.</p>
<p><a id="Font_Surveys" name="Font_Surveys"></a></p>
<h3><span class="mw-headline">Font Surveys</span></h3>
<p>To find out what fonts are most popular, check out the following:</p>
<ul>
<li> <span class="external text">Codestyle&#8217;s Windows Web Font Survey Results</span></li>
<li> <span class="external text">Codestyle&#8217;s Font Survey For All Platforms</span></li>
<li> <span class="external text">Web Style Guide: Typefaces</span></li>
</ul>
<p><a id="Font_Sizes" name="Font_Sizes"></a></p>
<h3><span class="mw-headline">Font Sizes</span></h3>
<p>You can also change the font size your viewers see. In the days of the typewriter and even with today&#8217;s word processors and desktop publishing software, the &#8220;point&#8221; system is still in use. You should be familiar with things like &#8220;12pt Times Roman&#8221; and &#8220;8pt Arial&#8221;. Point sizes don&#8217;t work well on web pages because most browsers can&#8217;t interpret what a &#8220;point&#8221; is. They understand pixels and percentages of a base size, but typewriter point sizes are interpreted differently on different browsers. You can use point size but there are better alternatives.</p>
<p>You can set your fonts to be absolute, which means they are fixed in size, but that too, has disadvantages. The problem with absolute font size is that if a user has their browser set to &#8220;see&#8221; larger fonts (<strong>View &gt; Text Size</strong>) or are using special software for the <span class="external text">visually or physically disabled</span>, you may have taken away their rights to &#8220;see&#8221; larger fonts. If you have to set the font to a specific size in order for your layout to work, make sure you don&#8217;t use that font for your site&#8217;s more important information. This example shows how to set an absolute font size:</p>
<p>#menu ul li {font-size: 12px; color: green; }</p>
<p>The more popular method is to set your font-size for the whole document, then, base everything on a relative size from there. A percentage of the base font is used, allowing the font to resize itself based upon the user&#8217;s preferences, too:</p>
<p>body { font-size: 1em; } #menu ul li { font-size: 110%; color: green; } <a id="Font_and_Text_Characteristics" name="Font_and_Text_Characteristics"></a></p>
<h3><span class="mw-headline">Font and Text Characteristics</span></h3>
<p>There are a lot of fun things you can do with fonts! You can make your fonts italic, you can make them bold, and you can make the first letter of a paragraph larger than the rest of the text. The list of variations goes on and on. This lesson is just a peek into how to style and size fonts on your WordPress site. There is a lot more that goes into deciding which font to use, how to use it, how many to use, what sizes, and&#8230;well, which fonts will look best on your site. Different browsers interpret fonts in different ways, too. You can find more information to help you make your font decisions below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=23&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/22/playing-with-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Uninstall a program in Windows</title>
		<link>http://muchsino.wordpress.com/2009/05/18/how-to-uninstall-a-program-in-windows/</link>
		<comments>http://muchsino.wordpress.com/2009/05/18/how-to-uninstall-a-program-in-windows/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:35:42 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[Guides and Tutorials]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=15</guid>
		<description><![CDATA[Just spend a few minutes on Google with the keyword &#8220;Uninstall&#8221; to realize the difficulties faced by many of you deal with the removal of certain software for your computers. Some have even made a great reputation in the field. To assist in this process, we propose a case based on three points, while giving [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=15&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just spend a few minutes on Google with the keyword &#8220;Uninstall&#8221; to realize the difficulties faced by many of you deal with the removal of certain software for your computers. Some have even made a great reputation in the field. To assist in this process, we propose a case based on three points, while giving you a brief overview of the theoretical principle of installation and uninstall, with all that implies for your computer. Sensitive cases concerning the removal &#8220;by hand&#8221; will also be discussed, telling you step by step how to clean your PC effectively. Finally, we will recommend some free software or not, you will ensure effective removal, acting on the registry for example.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Why there is not a program to uninstall? </span></span></strong></p>
<p>The difficulties encountered to remove some software have originated from three sources:</p>
<ul>
<li>ignorance of some users who do not make a proper procedure, removing files manually without trial;</li>
<li>weaknesses in the Windows tool, which is sometimes unable to completely remove an application;</li>
<li>software themselves, finally, who are sometimes poorly designed and require exaggerated efforts to be eradicated from your hard drives.</li>
</ul>
<p>That is why we must first of all to abide by certain rules, but it also happens to have to place the hands dirty.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">The principle of an installation an uninstallation</span></span></strong></p>
<p>What will happen when you install a program on your hard drive? Since you started the process, several elements are in place. First, the program installs of course all the files it needs to operate, such as libraries and the executable file. This process often uses the Program Files directory (or Programs in Vista) by default, unless you specify another location, but some files may also be placed on file systems, especially in the case of the drivers.</p>
<p>The program also places items in the registry (which should more accurately called &#8220;the Register&#8221;) which will allow Windows to know everything about the program, how it should be launched, the location of executable file or some settings &#8230; Most of the time, then it has one or more shortcuts in the Start menu in Windows on the desktop or in the Quick Launch. This option is often offered when you install a program, with the option to disable it.</p>
<p>It is not uncommon for software to define themselves to Windows they will be executed at the start of Windows. It is sometimes possible to disable this option, but it is not always the case. Many applications also install items in the folder of the user, often in hidden folders (such as the AppData folder in Windows Vista). Finally, be careful not to install more components than necessary, toolbars Google or Yahoo! Sometimes interfering in the installation of some software. Again, check boxes may be present to disable them but they are not always in the heat of the action.</p>
<p>Let&#8217;s see how does a uninstall via the Windows tool. This will first look for the module dedicated often associated with the program to remove (in the directory under names such as uninstall.exe or unwize.exe). This will, in theory, to erase all traces of the software, making the inverse of a facility. It rises from the Start menu, the registry, the folder in which he is now and possibly in place shortcuts on the desktop. Alas, this module may not be as effective as expected, and you have probably already read a message like &#8220;Some files have been deleted. Please delete them manually.&#8221; Similarly, some software trainer leave voluntarily files or registry keys to anticipate a possible relocation. Therefore, a more complete cleaning than that produced by these tools is sometimes.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">The effects on the registry </span></span></strong></p>
<p>As we can see, the installation of a program has an effect on the registry, which lists all the items related to the software in question: files associated with it, location, shortcut, windows settings for this application &#8230; A large number of parameters that must be stored in order to run the program according to your settings. It becomes clear that the number of installed programs, the greater the registry increases. Even more annoying, the uninstall does not remove all the entries.</p>
<p>Thus, over the facilities, please uninstall and reinstall possible, the registry so swells, sometimes to slow down the computer. Obviously, this downturn is very low and this is noticeable especially true in recent operating systems such as Windows XP and Vista. However, a registry of excessive size will certainly be an obstacle to research potential of a key or entry states.</p>
<p>We have seen in previous post, the most commonly used to remove software from their computer is to use the module to add / remove programs from Windows, in Control Panel (called Programs and Features in Windows Vista). However, sometimes this way does not work for a variety of reasons: the unfortunate intervention program folder, disappearance of the program in question in the list of installed applications &#8230; In this case, a series of operations will be necessary to replace the action of this module.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Use the module to uninstall the program to remove </span></span></strong></p>
<p>The first of these is to enable the module to uninstall the program to remove. Go to the directory where the software is present (typically C:  Program Files  labelname). You have to put you in search of an executable named uninstall.exe or unwise.exe whose icons may vary, but still had enough of the action uninstall.</p>
<p>Run this program, before taking care to close all pending. Often, the uninstaller will inform you as to remove the software is running on your computer and asks you to stop the execution. Sometimes the uninstall itself stop the program. However, sometimes a little error message comes explicitly warn you that the uninstall is impossible without more explanation than that. In this case, you will have to open Task Manager (via the famous <a href="http://forums.techarena.in/tips-tweaks/867084.htm" target="_blank">Keyboard shortcut</a> CTRL + ALT + DEL) and identify the process for the program to uninstall. This done, you should be able to start the uninstall process of your program without concern. This is done, you should be able to start the uninstall process of your program without concern.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Remove residue in Program Files </span></span></strong></p>
<p>If the uninstaller your software has been designed, you should not have traces of the application on your computer. However, it should be checked, starting with the directory where you are. Indeed, if all went well, Windows Explorer was automatically put you in the Program Files folder, since logically, your uninstalled application should no longer exist.</p>
<p>If this is not the case (which happens frequently), remove the file in question and remove it. However, if you encounter a file or folder reluctant (which may come from a dll still loaded, for example), do not hesitate to use a program such as <a href="http://www.download.com/Unlocker/3000-2248_4-10493998.html" target="_blank">Unlocker</a>. This very useful little program lets you perform an action such as deleting a file that refuses to disappear through the tools. Right-click on the folder or file, select &#8220;Unlocker&#8221;, select your action (here, Delete) and click OK. Your directory has finally disappeared.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Clear the tracks in the Users folder </span></span></strong></p>
<p>If the Program Files directory (or Programs for Vista) is now free of all traces of your software, it is still a few here and there that can survive. We will not talk of the Common Files folder, which may contain files for the application uninstalled. However, as the folder name indicates, the elements in them are often shared between multiple applications and a reduction unfortunate is very easy.</p>
<p>To spend more cautiously Users folder on Vista, or Documents and Settings in XP. This directory contains probably some remnants of your application, certainly little bulky, but are wrong to disturb the order sought. Several cases are analyzed, but in all cases, you must allow the display of hidden files and folders via the &#8220;Tools&#8221; menu &#8211; &#8220;Folder Options&#8221; from the explorer.</p>
<p><strong> In Windows XP, the files will be visiting the following: </strong></p>
<ol style="list-style-type:decimal;">
<li>C:  Documents and Settings  username  Application Data</li>
<li> C:  Documents and Settings  username  Local Settings  Application Data</li>
<li> C:  Documents and Settings  username  Local Settings  Apps</li>
</ol>
<p>You must seek, in these directories, all elements that contain the name of the application or the editor and delete them. Make sure, however, in this case not to remove the items to another application by the same publisher.</p>
<p>Take advantage of your presence in these folders to delete the contents of C:  Documents and Settings  username  Local Settings  Temp, which can occupy an important place in your storage unit. Finally, install some software components not only in your home directory, but also that of all accounts on the computer. Thus file * C:  Documents and Settings  All Users  can contain the same elements as those listed above. Be careful though, because removing these items, you touch the pattern of other users. Finish by emptying the trash.</p>
<p>In Windows Vista, things are very similar, only the names of files being different. The directories are to be analyzed as follows:</p>
<ul>
<li>C:  Users  username  AppData  Local</li>
<li>C:  Users  username  AppData  LocalLow</li>
<li>C:  Users  username  AppData  Roaming</li>
<li>C:  Users  All Users</li>
</ul>
<p>Again, be careful what you delete and do not hesitate to use a file Unlocker if you resist.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">The manipulations in the registry </span></span></strong></p>
<p>The most delicate and the longest was then to clean the registry items that relate to remove the software. We have seen in previous post, the register contains a large number of keys or entries that can be found at many places in this base. What we advise you to do is safe if you stick to our guidance, but the handling of the registry is not a trivial. Above all, be sure to make a backup. For this, use the shortcut Windows key + R and enter the command &#8220;regedit&#8221;. Go immediately on the File menu, then Export to save the current basis in a safe place. If something went wrong, you just have to import this backup to restore the PC to its original state.</p>
<p>What about cleaning itself. The registry database containing thousands of entries, it is not easy to quickly identify those that you have deleted. Fortunately there is a very nice tool: the search key, value and data. On the Edit menu, select Find function so. You have to specify in the box to fill in the name of the application, that of the publisher or any other evidence that could identify the program to remove. Mistrust again, if you are unsure of the action, you better abstain. You can do the following for more security: starting with the rough cleaning by removing the elements that you are sure they will do more, and then restart your computer. If after a few hours of use, nothing seems abnormal, repeat a backup of this new base and refine your cleaning.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Cleaning the launching of Windows </span></span></strong></p>
<p>Last thing to check to ensure the disappearance of your software: the elimination of programs running at startup. To do this, use the shortcut Windows key + R and enter the command &#8220;msconfig.&#8221; Then go to the Startup tab and make sure that nothing here for the application is removed now. If you are unsure of your actions, do not hesitate one hand to observe the &#8220;Manufacturer&#8221;, the other to make a quick search on the Internet, it costs nothing and it can be reassured about its choice.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">Specialized Programs</span></span></strong></p>
<p>The numerous manipulations described in previous page are effective, but may take some time. For those, there are automated solutions, sometimes free, sometimes paid.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">To remove programs</span></span></strong></p>
<p>Start with specialized applications in the removal of programs. More efficient in principle that the specific tool of Windows, these programs allow a thorough cleaning of the registry to persistent elements in the specified folders on the previous page.</p>
<p><a href="http://www.download.com/PC-Decrapifier/3000-2096_4-10636481.html" target="_blank">PC Decrapifier</a> is a free software that can quickly get rid of software that you clutter. It is particularly effective for newly acquired and PC hard drives which are filled with programs that do not interest you. In its focus, among other you will find many antivirus and other security software often trial version on new computers, but Google Toolbar, Google Desktop, Dell URL Assistant or AOL. Regarding the use of PC Decrapifier, can not be simpler. It requires no installation and after having made a restore point (this is a good idea before starting such a procedure), a first result of detection will be presented. All you have to check the various items to remove and let PC Decrapifier it. This great program allows you finally select multiple applications to uninstall to make a bundle that will save precious time.</p>
<div><strong>PC Decrapifier and Your Uninstaller! can overcome the shortcomings of the Windows tool</strong><br />
<a href="http://gallery.techarena.in/showphoto.php/photo/22212" target="_blank"><img src="/Documents%20and%20Settings/moco123/My%20Documents/1105088_files/PC-Decrapifier.jpg" border="0" alt="" /></a> <a href="http://gallery.techarena.in/showphoto.php/photo/22211" target="_blank"><img src="/Documents%20and%20Settings/moco123/My%20Documents/1105088_files/PC-Decrapifier-Image.jpg" border="0" alt="" /></a></div>
<p><img class="aligncenter size-full wp-image-16" title="pc-decrapifier" src="http://localhost/wordpress/wp-content/uploads/2009/05/pc-decrapifier.jpg" alt="pc-decrapifier" width="240" height="170" /><img class="aligncenter size-full wp-image-17" title="pc-decrapifier-image" src="http://localhost/wordpress/wp-content/uploads/2009/05/pc-decrapifier-image.jpg" alt="pc-decrapifier-image" width="240" height="154" /><br />
Equally interesting, <a href="http://www.softpedia.com/get/Tweak/Uninstallers/Your-Uninstaller.shtml" target="_blank">Your Uninstaller!</a> Is software ergonomics appreciable whose mode &#8220;Pro&#8221; (as opposed to its &#8220;Basic&#8221;) you will not only find and delete any software quickly on your hard drive, but also follow in detail the uninstall process, to ensure that all those described in the previous page are met. Only flat, the trial version of this program is limited to 21 days.</p>
<p>Finally, one can also cite <a href="http://www.softpedia.com/get/Tweak/Uninstallers/Total-Uninstall.shtml" target="_blank">Total Uninstall</a>, which has a particular operation. Indeed, the software saves all very precise changes to the system during installation of software. It is therefore essential to avoid doing something else during the registration period so that Total Uninstall does not take such actions as changes caused by the installation.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">To clean the registry</span></span></strong></p>
<p>Late use software cited above may result in a registry somewhat cluttered. That is why we recommend the use of <a href="http://forums.techarena.in/windows-software/1080969.htm" target="_blank">CCleaner</a> which, through its tab &#8220;Register&#8221; to clean the basis of the orphans as dll nonexistent, obsolete programs, ActiveX and classes handicapped, or invalid file extensions.</p>
<p>Another way to optimize the registry is using a dedicated software defragmentation. Indeed, just as your hard disk, the registry tends to leave some open space between two blocks of information, making the path even longer. A program like <a href="http://www.download.com/Quicksys-RegDefrag/3000-2094_4-10844188.html" target="_blank">Quicksys RegDefrag</a> proposes to remedy these fragments by eliminating unnecessary and spaces, thus improving system performance. Fully translated into any other language, the simple and effective interface allows real simplicity use. As a first step, click the &#8220;Defrag Registry&#8221; and then click Analyze. After a few minutes you will get a graph showing the rate of fragmentation of your Registry. You do not have to click on &#8220;Defrag&#8221; and restart your system.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">For Software Removal</span></span></strong></p>
<p>We were talking about in the introduction, it is software that posed so many problems for users uninstall they have made a solid reputation in this regard, despite constant efforts yet in the different versions. This is the case of applications from Symantec and the Norton suite of security in particular, but also of Nero, the famous after burning. The main problem with the software is cumbersome. Indeed, in seeking to consolidate into a single program multiple applications, these publishers are creating programs that interfere so deeply into the computer it becomes difficult to remove.</p>
<p>Aware of this, both publishers have even made available to small applications only intended to remove their own software. So you can find <a href="http://forums.techarena.in/tips-tweaks/1016799.htm" target="_blank">Norton Removal Tool</a>, dedicated to uninstall Symantec products in our library and a program dedicated to Nero and a comprehensive tutorial on the <a href="http://www.nero.com/enu/support-nero7-tools-utilities.html" target="_blank">web site</a>.</p>
<p><strong><span style="font-size:medium;"><span style="color:darkslategray;">The all-in-One</span></span></strong></p>
<p>Conclude this overview complete with suites dedicated to the optimization and cleaning of Windows. This is the case of two programs that we tested recently, namely <a href="http://forums.techarena.in/windows-software/1076823.htm" target="_blank">TuneUp Utilities</a> and <a href="http://www.download.com/System-Mechanic/3000-2094_4-10030183.html" target="_blank">System Mechanic</a>. Faced with these two best sellers pay, two free software can claim their hold candle: this is <a href="http://www.snapfiles.com/get/pchealthfree.html" target="_blank">PC Health Optimizer Free Edition</a> and <a href="http://www.glaryutilities.com/" target="_blank">Glary Utilities</a>. The first proposes a neat interface, a module for cleaning the registry and another to uninstall the software, among many other functions. Its module Doctor Spyware Cleaner allows including research and uninstall software known to be harmful to the security of your computer.</p>
<p>In Glary Utilities, you will find a multitude of tools and utilities to fix, speed up, fix and protect your computer. His manager uninstall is particularly effective and should fill all those that discourage the procedure manual. Like PC Decrapifier, it can build a list of applications to remove a single step. Clever and effective, even if the latest version seems to show some signs of instability. Hopefully the next album will fix it quickly!</p>
<p><span style="color:#0000ff;"><strong><span style="font-size:medium;">Conclusion</span></strong></span></p>
<p>Installing and uninstalling programs are actions that we do every day. Update discovery programs more efficient than the previous one, our hard drives are often used for such operations. Even if the program installation and uninstallation have become particularly successful, these actions are not painless for our PC, either in terms of disk space or in terms of &#8220;clean&#8221; of the registry.</p>
<p>That is why follow a conscientious uninstall can avoid the deterioration of performance of your PC. However, it is not always easy to do so, for lack of time or knowledge. This is why software is often a great help, especially since they are always more powerful version version.</p>
<p>However, these programs are not without risk and before any changes, a backup of the registry, or even from any computer with a restore point is more than recommended. Otherwise, it will unfortunately do more than to use a software <a href="http://forums.techarena.in/guides-tutorials/882289.htm" target="_blank">data recovery</a>!</p>
<p>Some guides may also be of some interest:<span id="more-15"></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=15&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/18/how-to-uninstall-a-program-in-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>

		<media:content url="http://localhost/wordpress/wp-content/uploads/2009/05/pc-decrapifier.jpg" medium="image">
			<media:title type="html">pc-decrapifier</media:title>
		</media:content>

		<media:content url="http://localhost/wordpress/wp-content/uploads/2009/05/pc-decrapifier-image.jpg" medium="image">
			<media:title type="html">pc-decrapifier-image</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Trace a hacker</title>
		<link>http://muchsino.wordpress.com/2009/05/18/how-to-trace-a-hacker/</link>
		<comments>http://muchsino.wordpress.com/2009/05/18/how-to-trace-a-hacker/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:28:56 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[Guides and Tutorials]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=13</guid>
		<description><![CDATA[Sometimes, it&#8217;s just not enough to simply know that there&#8217;s a Trojan or Virus onboard. Sometimes you need to know exactly why that file is onboard, how it got there &#8211; but most importantly, who put it there. By enumerating the attacker in the same way that they have enumerated the victim, you will be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=13&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes, it&#8217;s just not enough to simply know that there&#8217;s a Trojan or Virus onboard. Sometimes you need to know exactly why that file is onboard, how it got there &#8211; but most importantly, who put it there.</p>
<p>By enumerating the attacker in the same way that they have enumerated the victim, you will be able to see the bigger picture and establish what you&#8217;re up against. But how can you do this? Read on&#8230;</p>
<p>## Connections make the world go round ##</p>
<p>The computer world, at any rate. Every single time you open up a website, send an email or upload your webpages into cyberspace, you are connecting to another machine in order to get the job done. This, of course, presents a major problem, because this simple act is what allows malicious users to target a machine in the first place.</p>
<p># How do these people find their victim?</p>
<p>Well, first of all, they need to get hold of the victim&#8217;s IP Address. Your IP (Internet Protocol) address reveals your point of entry to the Internet and can be used in many ways to cause your online activities many, many problems. It may not reveal you by name, but it may be uniquely identifiable and it represents your digital ID while you are online (especially so if you&#8217;re on a fixed IP / DSL etc).</p>
<p>With an IP address, a Hacker can find out all sorts of weird and wonderful things about their victim (as well as causing all kinds of other trouble, the biggest two being Portnukes/Trojans and the dreaded DoS ((Denial of Service)) attack). Some Hackers like to collect IP Addresses like badges, and like to go back to old targets, messing them around every so often. An IP address is incredibly easy to obtain &#8211; until recently, many realtime chat applications (such as MSN) were goldmines of information. Your IP Address is contained as part of the Header Code on all emails that you send and webpages that you visit can store all kinds of information about you. A common trick is for the Hacker to go into a Chatroom, paste his supposed website address all over the place, and when the unsuspecting victim visits, everything about your computer from the operating system to the screen resolution can be logged&#8230;and, of course, the all important IP address. In addition, a simple network-wide port scan will reveal vulnerable target machines, and a war-dialler will scan thousands of lines for exposed modems that the hacker can exploit.</p>
<p>So now that you know some of the basic dangers, you&#8217;re probably wondering how these people connect to a victim&#8217;s machine?</p>
<p>## Virtual and Physical Ports ##</p>
<p>Everything that you recieve over the Internet comes as a result of other machines connecting to your computer&#8217;s ports. You have two types; Physical are the holes in the back of your machine, but the important ones are Virtual. These allow transfer of data between your computer and the outside world, some with allocated functions, some without, but knowing how these work is the first step to discovering who is attacking you; you simply MUST have a basic knowledge of this, or you won&#8217;t get much further.</p>
<p># What the phrases TCP/UDP actually mean</p>
<p>TCP/IP stands for Transmission Control Protocol and Internet Protocol, a TCP/IP packet is a block of data which is compressed, then a header is put on it and it is sent to another computer (UDP stands for User Datagram Protocol). This is how ALL internet transfers occur, by sending packets. The header in a packet contains the IP address of the one who originally sent you it. Now, your computer comes with an excellent (and free) tool that allows you to see anything that is connected (or is attempting to connect) to you, although bear in mind that it offers no blocking protection; it simply tells you what is going on, and that tool is NETSTAT.</p>
<p>## Netstat: Your first line of defence ##</p>
<p>Netstat is a very fast and reliable method of seeing exactly who or what is connected (or connecting) to your computer. Open up DOS (Start/Programs/MS-DOS Prompt on most systems), and in the MSDOS Prompt, type:</p>
<p>netstat -a</p>
<p>(make sure you include the space inbetween the &#8220;t&#8221; and the &#8220;a&#8221;).</p>
<p>If you&#8217;re connected to the Internet when you do this, you should see something like:</p>
<p>Active Connections</p>
<p>Proto Local Address Foreign Address State<br />
TCP macintosh: 20034 modem-123.tun.dialup.co.uk: 50505 ESTABLISHED<br />
TCP macintosh: 80 proxy.webcache.eng.sq: 30101 TIME_WAIT<br />
TCP macintosh MACINTOSH: 0 LISTENING<br />
TCP macintosh MACINTOSH: 0 LISTENING<br />
TCP macintosh MACINTOSH: 0 LISTENING</p>
<p>Now, &#8220;Proto(col)&#8221; simply means what kind of data transmission is taking place (TCP or UDP), &#8220;Local address&#8221; is your computer (and the number next to it tells you what port you&#8217;re connected on), &#8220;Foreign Address&#8221; is the machine that is connected to you (and what port they&#8217;re using), and finally &#8220;State&#8221; is simply whether or not a connection is actually established, or whether the machine in question is waiting for a transmission, or timing out etc.</p>
<p>Now, you need to know all of Netstat&#8217;s various commands, so type:</p>
<p>netstat ?</p>
<p>You will get something like this:</p>
<p>Displays protocol statistics and current TCP/IP network connections.</p>
<p>NETSTAT [-a] [-e] [-n] [-s] [-p proto] [-r] [interval]</p>
<p>-a Displays all connections and listening ports.<br />
-e Displays Ethernet statistics. This may be combined with the -s option.<br />
-n Displays addresses and port numbers in numerical form.<br />
-p proto Shows connections for the protocol specified by proto; proto may be TCP or UDP. If used with the -s option to display per-protocol statistics, proto may be TCP, UDP, or IP.<br />
-r Displays the routing table.<br />
-s Displays per-protocol statistics. By default, statistics are shown for TCP, UDP and IP; the -p option may be used to specify a subset of the default.</p>
<p>Have a play around with the various options, but the most important use of these methods is when you combine them. The best command to use is</p>
<p>netstat -an</p>
<p>because this will list all connections in Numerical Form, which makes it a lot easier to trace malicious users&#8230;.Hostnames can be a little confusing if you don&#8217;t know what you&#8217;re doing (although they&#8217;re easily understandable, as we shall see later). Also, by doing this, you can also find out what your own IP address is, which is always useful.</p>
<p>Also,</p>
<p>netstat -b</p>
<p>will tell you what ports are open and what programs are connecting to the internet.</p>
<p>## Types of Port ##</p>
<p>It would be impossible to find out who was attacking you if computers could just access any old port to perform an important function; how could you tell a mail transfer from a Trojan Attack? Well, good news, because your regular, normal connections are assigned to low, commonly used ports, and in general, the higher the number used, the more you should be suspicious. Here are the three main types of port:</p>
<p># Well Known Ports These run from 0 to 1023, and are bound to the common services that run on them (for example, mail runs on channel 25 tcp/udp, which is smtp (Simple Mail Transfer Protocol) so if you find one of these ports open (and you usually will), it&#8217;s usually because of an essential function.</p>
<p># Registered Ports These run on 1024 to 49151. Although not bound to a particular service, these are normally used by networking utilities like FTP software, Email client and so on, and they do this by opening on a random port within this range before communicating with the remote server, so don&#8217;t panic (just be wary, perhaps) if you see any of these open, because they usually close automatically when the system that&#8217;s running on them terminates (for example, type in a common website name in your browser with netstat open, and watch as it opens up a port at random to act as a buffer for the remote servers). Services like MSN Messenger and ICQ usually run on these Ports.</p>
<p># Dynamic/Private Ports Ranging from 49152 to 65535, these things are rarely used except with certain programs, and even then not very often. This is indeed the usual range of the Trojan, so if you find any of these open, be very suspicious. So, just to recap:</p>
<p>Well Known Ports 0 to 1023 Commonly used, little danger.<br />
Registered Ports 1024 to 49151 Not as common, just be careful.<br />
Dynamic/Private Ports 49152 to 65535 Be extremely suspicious.</p>
<p>## The hunt is on ##</p>
<p>Now, it is essential that you know what you&#8217;re looking for, and the most common way someone will attack your machine is with a Trojan. This is a program that is sent to you in an email, or attempts to bind itself to one of your ports, and when activated, it can give the user your passwords, access to your hard drive&#8230;they can even make your CD Tray pop open and shut. At the end of this Document, you will find a list of the most commonly used Trojans and the ports they operate on. For now, let&#8217;s take another look at that first example of Netstat&#8230;.</p>
<p>Active Connections</p>
<p>Proto Local Address Foreign Address State<br />
TCP macintosh: 27374 modem-123.tun.dialup.co.uk: 50505 ESTABLISHED<br />
TCP macintosh: 80 proxy.webcache.eng.sq: 30101 TIME_WAIT<br />
TCP macintosh MACINTOSH: 0 LISTENING<br />
TCP macintosh MACINTOSH: 0 LISTENING<br />
TCP macintosh MACINTOSH: 0 LISTENING</p>
<p>Now, straight away, this should make more sense to you. Your computer is connected on two ports, 80 and 27374. Port 80 is used for http/www transmissions (ie for all intents and purposes, its how you connect to the net, although of course it&#8217;s a lot more complicated than that). Port 27374, however, is distinctly suspicious; first of all, it is in the registered port range, and although other services (like MSN) use these, let&#8217;s assume that you have nothing at all running like instant messengers, webpages etc&#8230;.you&#8217;re simply connected to the net through proxy. So, now this connection is looking even more troublesome, and when you realise that 27374 is a common port for Netbus (a potentially destructive Trojan), you can see that something is untoward here. So, what you would do is:</p>
<p>1) run Netstat , and use:</p>
<p>Netstat -a</p>
<p>then</p>
<p>Netstat -an</p>
<p>So you have both Hostnames AND IP addresses.</p>
<p>## Tracerouting ##</p>
<p>Having the attacker&#8217;s IP is all well and good, but what can you do with it? The answer is, a lot more! It&#8217;s not enough to have the address, you also need to know where the attacker&#8217;s connections are coming from. You may have used automated tracerouting tools before, but do you jknow how they work?</p>
<p>Go back to MSDOS and type</p>
<p>tracert *type IP address/Hostname here*</p>
<p>Now, what happens is, the Traceroute will show you all the computers inbetween you and the target machine, including blockages, firewalls etc. More often than not, the hostname address listed before the final one will belong to the Hacker&#8217;s ISP Company. It&#8217;ll either say who the ISP is somewhere in there, or else you run a second trace on the new IP/hostname address to see who the ISP Company in question is. If the Hostname that you get back doesn&#8217;t actually seem to mention an actual geographical location within its text, you may think all is lost. But fear not! Suppose you get a hostname such as</p>
<p><a href="http://www.haha.com/" target="_blank">http://www.haha.com</a></p>
<p>Well, that tells us nothing, right? Wrong&#8230;.simply enter the hostname in your browser, and though many times you will get nothing back, sometimes it will resolve to an ISP, and from there you can easily find out its location and in what areas they operate. This at least gives you a firm geographical location to carry out your investigations in.</p>
<p>If you STILL have nothing, as a last resort you COULD try connecting to your target&#8217;s ISP&#8217;s port 13 by Telnet, which will tell you how many hours ahead or behind this ISP is of GMT, thus giving you a geographical trace based on the time mentioned (although bear in mind, the ISP may be doing something stupid like not having their clocks set correctly, giving you a misleading trace. Similarly, a common tactic of Hackers is to deliberately have their computer&#8217;s clock set to a totally wrong time, so as to throw you off the scent). Also, unless you know what you&#8217;re doing, I wouldn&#8217;t advise using Telnet (which is outside the parameters of this tutorial).</p>
<p>## Reverse DNS Query ##</p>
<p>This is probably the most effective way of running a trace on somebody. If ever you&#8217;re in a chatroom and you see someone saying that they&#8217;ve &#8220;hacked into a satellite orbiting the Earth, and are taking pictures of your house right now&#8221;, ignore them because that&#8217;s just bad movie nonsense. THIS method is the way to go, with regard to finding out what country (even maybe what State/City etc) someone resides, although it&#8217;s actually almost impossible to find an EXACT geographical location without actually breaking into your ISP&#8217;s Head Office and running off with the safe.</p>
<p>To run an rDNS query, simply go back to MS-DOS and type</p>
<p>netstat</p>
<p>and hit return. Any active connections will resolve to hostnames rather than a numerical format.</p>
<p># DNS</p>
<p>DNS stands for Domain Name Server. These are machines connected to the Internet whose job it is to keep track of the IP Addresses and Domain Names of other machines. When called upon, they take the ASCII Domain Name and convert it to the relevant numeric IP Address. A DNS search translates a hostname into an IP address&#8230;.which is why we can enter &#8220;www.Hotmail.com&#8221; and get the website to come up, instead of having to actually remember Hotmail&#8217;s IP address and enter that instead. Well, Reverse DNS, of course, translates the IP Address into a Hostname (ie &#8211; in letters and words instead of numbers, because sometimes the Hacker will employ various methods to stop Netstat from picking up a correct Hostname).</p>
<p>So, for example,</p>
<p>298.12.87.32 is NOT a Hostname.<br />
mail6.bol.net.au IS a Hostname.</p>
<p>Anyway, see the section at the end? (au) means the target lives in Australia. Most (if not all) hostnames end in a specific Country Code, thus narrowing down your search even further. If you know your target&#8217;s Email Address (ie they foolishly sent you a hate mail, but were silly enough to use a valid email address) but nothing else, then you can use the Country codes to deduce where they&#8217;re from as well. You can also deduce the IP address of the sender by looking at the emails header (a &#8220;hidden&#8221; line of code which contains information on the sender)&#8230;on Hotmail for example, go to Preferences, and select the &#8220;Full Header&#8217;s Visible&#8221; option. Alternatively, you can run a &#8220;Finger&#8221; Trace on the email address, at:</p>
<p><a href="http://www.samspade.org/" target="_blank">www.samspade.org</a></p>
<p>Plus, some ISP&#8217;s include their name in your Email Address with them too (ie Wanadoo, Supanet etc), and your Hacker may be using an email account that&#8217;s been provided by a Website hosting company, meaning this would probably have the website host&#8217;s name in the email address (ie Webspawners). So, you could use the information gleaned to maybe even hunt down their website (then you could run a website check as mentioned previously) or report abuse of that Website Provider&#8217;s Email account (and thus, the Website that it goes with) to</p>
<p><a href="mailto:abuse@companynamegoeshere.com">abuse@companynamegoeshere.com</a></p>
<p>If your Hacker happens to reside in the USA, go to:</p>
<p><a href="http://www.usps.gov/ncsc/lookups/abbr_state.txt" target="_blank">www.usps.gov/ncsc/lookups/abbr_state.txt</a></p>
<p>for a complete list of US State abbreviatons.</p>
<p>## List of Ports commonly used by Trojans ##</p>
<p>Please note that this isn&#8217;t a complete list by any means, but it will give you an idea of what to look out for in Netstat. Be aware that some of the lower Ports may well be running valid services.</p>
<p>UDP: 1349 Back Ofrice DLL<br />
31337 BackOfrice 1.20<br />
31338 DeepBO<br />
54321 BackOfrice 2000</p>
<p>TCP: 21 Blade Runner, Doly Trojan, Fore, Invisible FTP, WebEx, WinCrash<br />
23 Tiny Telnet Server<br />
25 Antigen, Email Password Sender, Haebu Coceda, Shtrilitz Stealth, Terminator, WinPC, WinSpy, Kuang2 0.17A-0.30<br />
31 Hackers Paradise<br />
80 Executor<br />
456 Hackers Paradise<br />
555 Ini-Killer, Phase Zero, Stealth Spy<br />
666 Satanz Backdoor<br />
1001 Silencer, WebEx<br />
1011 Doly Trojan<br />
1170 Psyber Stream Server, Voice<br />
1234 Ultors Trojan<br />
1243 SubSeven 1.0 &#8211; 1.8<br />
1245 VooDoo Doll<br />
1492 FTP99CMP<br />
1600 Shivka-Burka<br />
1807 SpySender<br />
1981 Shockrave<br />
1999 BackDoor 1.00-1.03<br />
2001 Trojan Cow<br />
2023 Ripper<br />
2115 Bugs<br />
2140 Deep Throat, The Invasor<br />
2801 Phineas Phucker<br />
3024 WinCrash<br />
3129 Masters Paradise<br />
3150 Deep Throat, The Invasor<br />
3700 Portal of Doom<br />
4092 WinCrash<br />
4567 File Nail 1<br />
4590 ICQTrojan<br />
5000 Bubbel<br />
5000 Sockets de Troie<br />
5001 Sockets de Troie<br />
5321 Firehotcker<br />
5400 Blade Runner 0.80 Alpha<br />
5401 Blade Runner 0.80 Alpha<br />
5402 Blade Runner 0.80 Alpha<br />
5400 Blade Runner<br />
5401 Blade Runner<br />
5402 Blade Runner<br />
5569 Robo-Hack<br />
5742 WinCrash<br />
6670 DeepThroat<br />
6771 DeepThroat<br />
6969 GateCrasher, Priority<br />
7000 Remote Grab<br />
7300 NetMonitor<br />
7301 NetMonitor<br />
7306 NetMonitor<br />
7307 NetMonitor<br />
7308 NetMonitor<br />
7789 ICKiller<br />
8787 BackOfrice 2000<br />
9872 Portal of Doom<br />
9873 Portal of Doom<br />
9874 Portal of Doom<br />
9875 Portal of Doom<br />
9989 iNi-Killer<br />
10067 Portal of Doom<br />
10167 Portal of Doom<br />
10607 Coma 1.0.9<br />
11000 Senna Spy<br />
11223 Progenic trojan<br />
12223 Hack´99 KeyLogger<br />
12345 GabanBus, NetBus<br />
12346 GabanBus, NetBus<br />
12361 Whack-a-mole<br />
12362 Whack-a-mole<br />
16969 Priority<br />
20001 Millennium<br />
20034 NetBus 2.0, Beta-NetBus 2.01<br />
21544 GirlFriend 1.0, Beta-1.35<br />
22222 Prosiak<br />
23456 Evil FTP, Ugly FTP<br />
26274 Delta<br />
30100 NetSphere 1.27a<br />
30101 NetSphere 1.27a<br />
30102 NetSphere 1.27a<br />
31337 Back Orifice<br />
31338 Back Orifice, DeepBO<br />
31339 NetSpy DK<br />
31666 BOWhack<br />
33333 Prosiak<br />
34324 BigGluck, TN<br />
40412 The Spy<br />
40421 Masters Paradise<br />
40422 Masters Paradise<br />
40423 Masters Paradise<br />
40426 Masters Paradise<br />
47262 Delta<br />
50505 Sockets de Troie<br />
50766 Fore<br />
53001 Remote Windows Shutdown<br />
54321 SchoolBus .69-1.11<br />
61466 Telecommando<br />
65000 Devil</p>
<p>## Summary ##</p>
<p>The Internet is by no means as anonymous as some people think it is, and although this is to the detriment of people&#8217;s security online, this also works both ways&#8230;.it IS possible to find and stop even the most determined of attackers, you just have to be patient and keep hunting for clues which will help you put an end to their exploits.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=13&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/18/how-to-trace-a-hacker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>List of Windows XP and Windows Vista Command line Shortcuts</title>
		<link>http://muchsino.wordpress.com/2009/05/18/list-of-windows-xp-and-windows-vista-command-line-shortcuts/</link>
		<comments>http://muchsino.wordpress.com/2009/05/18/list-of-windows-xp-and-windows-vista-command-line-shortcuts/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:20:41 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[Tips and Tweaks]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=11</guid>
		<description><![CDATA[Notes: * Some commands are dangerous (SYSKEY example) and can cause problems that can lead to formatting. * Other commands are not run on Windows XP or earlier versions, I have not tested all. Contributors are free to make any necessary corrections. * Under Vista &#8220;Run&#8221; is not visible in the Start menu. Contents * [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=11&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><span style="color:darkslategray;"><span style="font-size:medium;"><strong>Notes:</strong></span></span></p>
<p><strong> <strong> *</strong> Some commands are dangerous (SYSKEY example) and can cause problems that can lead to formatting.<br />
<strong> *</strong> Other commands are not run on Windows XP or earlier versions, I have not tested all. Contributors are free to make any necessary corrections.<br />
<strong> * </strong>Under Vista &#8220;Run&#8221; is not visible in the Start menu.</strong></p>
<p><span style="color:darkslategray;"><span style="font-size:medium;"><strong>Contents</strong></span></span><br />
<strong><br />
<strong> * </strong>configuration Panel<br />
<strong>* </strong>Windows programs and tools<br />
<strong>*</strong> Disk Management<br />
<strong> *</strong> Network management and Internet<br />
<strong>* </strong>Other Commands </strong></p>
<p><span style="font-size:medium;"><span style="color:darkslategray;"><strong>Configuration Panel :</strong></span></span></p>
<p><strong>CONTROL Panel :</strong> Opens Control Panel</p>
<p><strong>AdminTool CONTROL:</strong> Opens administration tools</p>
<p><strong>KEYBOARD CONTROL:</strong> Opens the properties of the keyboard</p>
<p><strong>CONTROL COLOR:</strong> Opens the parameters of appearance</p>
<p><strong>CONTROL FOLDERS:</strong> Opens options records</p>
<p><strong>FONTS CONTROL: </strong>opens the font manager</p>
<p><strong>INTERNATIONAL CONTROL intl.cpl :</strong> opens the Regional and Language Options</p>
<p><strong>CONTROL MOUSE or main.cpl :</strong> opens the properties of the mouse</p>
<p><strong>UserPassword CONTROL: </strong>Opens Print user accounts</p>
<p><strong>CONTROL userpasswords2 :</strong> controls users password and their access</p>
<p><strong>PRINTERS CONTROL:</strong> Opens printers and fax machines available</p>
<p><strong>Appwiz.cpl:</strong> opens the Add / Remove Program</p>
<p><strong>OPTIONALFEATURES :</strong>opens the Add / Remove Windows Components <strong>(For Vista only) </strong></p>
<p><strong>Desk.cpl :</strong>opens display settings</p>
<p><strong>HDWWIZ.CPL : </strong>opens the Add Hardware Wizard</p>
<p><strong>INFOCARDCPL.CPL : </strong>opens the Program Compatibility Wizard</p>
<p><strong>IRPROPS.CPL:</strong> Opens manager infrared</p>
<p><strong>ISCSICPL: </strong>Opens tool configuration of the Microsoft initiator ISCI <strong>(For Vista only)</strong></p>
<p><strong>Joy.cpl: </strong>Opens tool game controller</p>
<p><strong>Mmsys.cpl : </strong>opens the parameters of sounds</p>
<p><strong>Sysdm.cpl :</strong> opens the system properties</p>
<p><strong>TABLETPC.CPL</strong> opens the settings for Tablet PC <strong>(Vista only)</strong></p>
<p><strong>TELEPHON.CPL:</strong> Opens tool phone connection</p>
<p><strong>Timedate.cpl : </strong>opens the parameters of the time and date</p>
<p><strong>Wscui.cpl: </strong>opens the Windows Security Center</p>
<p><strong>ACCESS.CPL:</strong> Opens Accessibility Options <strong>(For XP only)</strong></p>
<p><strong>WUAUCPL.CPL: </strong>Opens Service Windows update <strong>(for XP only) </strong></p>
<p><strong>Powercfg.cpl : </strong>opens the manager of feeding <strong>(For Vista only) </strong></p>
<p><strong>COLLAB.CPL : </strong>opens the immediate vicinity <strong>(For Vista only) </strong></p>
<p><strong>AZMAN.MSC:</strong> Open Authorization Manager <strong>(For Vista only) </strong></p>
<p><strong>CERTMGR.MSC :</strong>opens licenses for the current user</p>
<p><strong>COMPMGMT.MSC :</strong>opens the management tool of the computer</p>
<p><strong>COMEXP.MSC or DCOMCNFG :</strong> Opens the tool components and services (For Vista only)</p>
<p><strong>Devmgmt.msc :</strong> opens the device manager.</p>
<p><strong>Eventvwr or EVENTVWR.MSC :</strong> open Event Viewer</p>
<p><strong>FSMGMT.MSC : </strong>opens shared folders</p>
<p><strong>NAPCLCFG.MSC : </strong>Opens tool NAP client configuration <strong>(For Vista only)<br />
</strong><br />
<strong>Services.msc :</strong> opens the service manager</p>
<p><strong>TASKSCHD.MSC or SCHEDTASKS CONTROL:</strong> opens the Task Scheduler<strong> (For Vista only) </strong></p>
<p><strong>Gpedit.msc :</strong> Opens Print Group Policy <strong>(For more professional editions of Windows) </strong></p>
<p><strong>LUSRMGR.MSC : </strong>opens the publisher of users and local groups</p>
<p><strong>Secpol.msc :</strong> opens the Local Security Settings</p>
<p><strong>NTMSMGR.MSC : </strong>Opens manager removable storage media</p>
<p><strong>NTMSOPRQ.MSC :</strong> opens applications for the operator Removable Storage</p>
<p><strong>Rsop.msc : </strong>opens RSoP</p>
<p><strong>Wmimgmt.msc :</strong> Opens Windows Management Infrastructure</p>
<p><strong>TPM.MSC : </strong>opens the tool management module secure platform on the local computer <strong>(for Vista only) </strong></p>
<p><strong>PerfMon or perfmon.msc :</strong> opens monitor reliability and performance of Windows.</p>
<p><strong>MMC : </strong>opens a new empty console</p>
<p><strong>MDSCHED :</strong> opens the Tool of the Windows Memory <strong>(For Vista only) </strong></p>
<p><strong>DXDIAG :</strong> opens the DirectX Diagnostic Tool</p>
<p><strong>ODBCAD32: </strong>Opens administrator ODBC Data Source</p>
<p><strong>REGEDIT or REGEDT32 :</strong> opens the Registry Editor <strong>(For Vista only)</strong></p>
<p><strong>Drwtsn32 : Opens </strong>Dr. Watson <strong>(For XP only) </strong></p>
<p><strong>CHECK : </strong>opens up the verification of drivers</p>
<p><strong>CLICONFG :</strong> opens the client configuration SQL</p>
<p><strong>Utilman :</strong> opens options for ergonomics <strong>(For Vista only) </strong></p>
<p><strong>COMPUTERDEFAULTS : </strong>open the tool of default programs <strong>(For Vista only) </strong></p>
<p><strong>CREDWIZ : </strong>Opens tool backup and restore passwords of users <strong>(for Vista only) </strong></p>
<p><strong>LPKSETUP :</strong> opens the wizard to install and uninstall language display <strong>(For Vista only) </strong></p>
<p><strong>MobSync : </strong>opens the center synchronization</p>
<p><strong>REKEYWIZ : </strong>Opens manager certificates encryption of files <strong>(For Vista only) </strong></p>
<p><strong>SLUI : </strong>opens assistant activation of Windows <strong>(Vista only) </strong></p>
<p><strong>MSCONFIG : </strong>opens the tool system configuration</p>
<p><strong>SYSEDIT :</strong> opens the System Configuration Editor <strong>(Caution, handle with caution) </strong></p>
<p><strong>SYSKEY : </strong>Opens Utility protection of the database Windows accounts <strong>(Caution, handle with extreme caution!)</strong></p>
<p style="text-align:left;"><span style="font-size:medium;"><strong><span style="color:darkslategray;">Windows programs and tools </span></strong></span></p>
<p><strong>EXPLORER : </strong>Opens Windows Explorer</p>
<p><strong>IEXPLORE :</strong> Opens Internet Explorer</p>
<p><strong>WAB :</strong> Opens contacts <strong>(For Vista only) </strong></p>
<p><strong>Charmap :</strong> Opens the character</p>
<p><strong>MSPAINT :</strong> Opens Paint</p>
<p><strong>WRITE or Wordpad : </strong>opens Wordpad</p>
<p><strong>NOTEPAD : </strong>Open Notebook</p>
<p><strong>SNIPPINGTOOL: </strong>Opens tool screenshot <strong>(For Vista only)</strong></p>
<p><strong>CALC :</strong> opens the calculator</p>
<p><strong>CLIPBRD :</strong> opens the clipboard <strong>(for XP only) </strong></p>
<p><strong>WINCHAT :</strong> Microsoft opens chat network <strong>(Windows XP only) </strong></p>
<p><strong>SOUNDRECORDER :</strong> opens the tape</p>
<p><strong>DVDPLAY </strong>: opens your DVD player</p>
<p><strong>WMPLAYER :</strong> Opens Windows Media Player</p>
<p><strong>MOVIEMK : </strong>Opens Windows Movie Maker</p>
<p><strong>JOURNAL : </strong>Opens a new journal <strong>(For Vista only) </strong></p>
<p><strong>STIKYNOT :</strong> opens the reminder<strong> (For Vista only) </strong></p>
<p><strong>OSK : </strong>opens the screen keyboard.</p>
<p><strong>TABTIP : </strong>opens the Tablet PC Input Panel <strong>(For Vista only) </strong></p>
<p><strong>MAGNIFY :</strong> opens the microscope</p>
<p><strong>WINCAL :</strong> Windows opens the timetable <strong>(for Vista only) </strong></p>
<p><strong>DIAL :</strong> the numerator telephone Opens Windows</p>
<p><strong>EUDCEDIT :</strong> opens the publisher of a private nature</p>
<p><strong>SNDVOL : </strong>opens the mixer volume</p>
<p><strong>RSTRUI : </strong>opens Tool System Restore <strong>(For Vista only) </strong></p>
<p><strong>% WINDIR% \ System32 \ restore \ rstrui.exe :</strong> opens the tool to restore the system <strong>(for XP only)</strong></p>
<p><strong>MSINFO32 : </strong>opens System Information</p>
<p><strong>MRT :</strong> launches utility removing malicious software <strong>(for Vista only)</strong></p>
<p><strong>Taskmgr :</strong> opens the Windows Task Manager</p>
<p><strong>CMD : </strong>opens the command prompt</p>
<p><strong>MIGWIZ :</strong> Opens tool for transferring files and settings Windows <strong>(For Vista only) </strong></p>
<p><strong>MIGWIZ.EXE : </strong>Opens tool for transferring files and settings Windows <strong>(for XP only) </strong></p>
<p><strong>Sidebar :</strong> Opens the Windows Sidebar <strong>(For Vista only) </strong></p>
<p><strong>Sigverif : </strong>Opens tool signature verification file</p>
<p><strong>Winver :</strong> opens the window for your Windows version</p>
<p><strong>FSQUIRT : </strong>Assistant Bluetooth transfer</p>
<p><strong>IExpress :</strong> opens the wizard of self-extracting archives</p>
<p><strong>MBLCTR : </strong>opens the Mobility Center Windows <strong>(For Vista only) </strong></p>
<p><strong>MSRA : </strong>Opens the Windows Remote Assistance</p>
<p><strong>Mstsc : </strong>Opens tool connection Remote Desktop</p>
<p><strong>MSDT :</strong> opens the Tool and Microsoft Support</p>
<p><strong>WERCON :</strong> opens the reporting tool and solutions to problems <strong>(for Vista only) </strong></p>
<p><strong>WINDOWSANYTIMEUPGRADE :</strong> You can upgrade from <strong>Windows Vista</strong></p>
<p><strong>WINWORD : </strong>opens Word <strong>(if it is installed) </strong></p>
<p><strong>PRINTBRMUI : </strong>opens migration wizard printer <strong>(Vista only) </strong></p>
<p style="text-align:left;"><strong><span style="color:darkslategray;"><span style="font-size:medium;">Disk Management </span></span></strong></p>
<p><strong>DISKMGMT.MSC : </strong>opens the disk manager</p>
<p><strong>Cleanmgr :</strong> opens the Disk Cleanup tool</p>
<p><strong>DFRG.MSC :</strong> Opens tool disk defragmentation</p>
<p><strong>Defrag :</strong> defragment the hard disk</p>
<p><strong>CHKDSK :</strong> Perform an analysis of the partition specified in the settings of the command (For more information, type CHKDSK /? In the command prompt CMD)</p>
<p><strong>DISKPART :</strong> opens the partitioning tool <strong>(a bit heavy to handle) </strong> <br style="clear:both;" /> <!-- google_ad_section_end --></p>
<div style="margin-top:10px;text-align:left;"><a rel="nofollow" href="http://forums.techarena.in/newreply.php?do=newreply&amp;p=4132361"><img title="Reply With Quote" src="/Documents%20and%20Settings/moco123/My%20Documents/1086524_files/quote.gif" border="0" alt="Reply With Quote" /></a><strong><span style="font-size:medium;"><span style="color:darkslategray;">Network management and Internet </span></span></strong></p>
<p><strong>IPCONFIG :</strong> displays the configurations of IP addresses on the computer (For more information, type: IPCONFIG /? In the command prompt CMD)</p>
<p><strong>CONTROL NetConnect or ncpa.cpl :</strong> opens network connections</p>
<p><strong>Inetcpl.cpl :</strong> Opens Internet properties</p>
<p><strong>Firewall.cpl :</strong> Opens the Windows Firewall<br />
<strong><br />
WF.MSC :</strong> opens the advanced features of Windows Firewall <strong>(For Vista only). </strong></p>
<p><strong>NETSETUP.CPL :</strong> opens the Network Setup Wizard (for XP only)</div>
<div style="margin-top:10px;text-align:left;"><span style="color:darkslategray;"><span style="font-size:medium;"><strong>Other Commands</strong></span></span></p>
<p><strong>Javaws:</strong> Visualize caching software JAVA <strong>(If installed) </strong></p>
<p><strong>AC3FILTER.CPL : </strong>opens properties AC3 filter <strong>(if installed) </strong></p>
<p><strong>FIREFOX :</strong> launches Mozilla Firefox<strong> (if installed) </strong></p>
<p><strong>NETPROJ :</strong> allow or not connecting to a network projector <strong>(For Vista only) </strong></p>
<p><strong>LOGOFF : </strong>closes the current session</p>
<p><strong>SHUTDOWN :</strong> Windows off</p>
<p><strong>SHUTDOWN-A : </strong>stop the shutting down Windows</p>
<p><strong>% WINDIR% or% SYSTEMROOT% :</strong> Opens the Windows installation folder</p>
<p><strong>% PROGRAMFILES% :</strong> opens the installation of other programs (Program Files)</p>
<p><strong>% USERPROFILE% :</strong> opens the profile of the user currently logged System File Checker <strong>(Requires a CD of Windows if the cache is not available)</strong></p>
<p><strong>SFC / scannow : </strong>scans immediately all system files and repair damaged files</p>
<p><strong>SFC / VERIFYONLY :</strong> scans only system files</p>
<p><strong>SFC / ScanFile = &#8220;name and file path&#8221; :</strong> scans the file specified, and repairs when damaged SFC / VERIFYFILE = &#8220;name and file path&#8221; only scans the file specified</p>
<p><strong>SFC / scanonce :</strong> scans the system files on the next restart</p>
<p><strong>SFC / REVERT :</strong> return the initial configuration (For more information, type SFC /? In the command prompt CMD. <br style="clear:both;" /> <!-- google_ad_section_end --></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=11&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/18/list-of-windows-xp-and-windows-vista-command-line-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Xp Secrets</title>
		<link>http://muchsino.wordpress.com/2009/05/18/windows-xp-secrets/</link>
		<comments>http://muchsino.wordpress.com/2009/05/18/windows-xp-secrets/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:17:14 +0000</pubDate>
		<dc:creator>muchsino</dc:creator>
				<category><![CDATA[Tips and Tweaks]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=8</guid>
		<description><![CDATA[These are the some Top windows XP hidden secret. 1. Useful key shortcuts available - Windows key + D &#8211; shows the desktop - Windows key + M &#8211; minimizes all open windows - Windows key + Shift + M &#8211; maximizes all open windows - Windows key + E &#8211; Runs Windows Explorer - [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=8&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are the some Top windows XP hidden secret.</p>
<p><strong><span style="color:red;">1. Useful key shortcuts available</span></strong></p>
<p>- Windows key + D &#8211; shows the desktop<br />
- Windows key + M &#8211; minimizes all open windows<br />
- Windows key + Shift + M &#8211; maximizes all open windows<br />
- Windows key + E &#8211; Runs Windows Explorer<br />
- Windows key + R &#8211; shows the RUN dialog<br />
- Windows key + F &#8211; shows Search window<br />
- Windows key + Break &#8211; shows System Properties box<br />
- Windows key + TAB &#8211; Go through taskbar applications<br />
- Windows key + PAUSE Display the System Properties dialog box<br />
- Windows key + U Open Utility Manager<br />
- ALT + TAB &#8211; Cycle through opened applications<br />
- Hold down CTRL while dragging an item to Copy it<br />
- CTRL + ESC Display the Start menu<br />
- ALT + ENTER View the properties for the selected item<br />
- F4 key Display the Address bar list in My Computer or<br />
- NUM LOCK + Asterisk (*) Display all of the subfolders that are under the selected folder</p>
<p><strong><span style="color:#ff0000;">2. Lock Windows to protect computer</span></strong></p>
<p>You can lock Windows to protect the computer when leaving the station easily by creating a shortcut with the path rundll32.exeuser32.dll, LockWorkStation. The Windows key + L is also a shortcut to this feature.</p>
<p><strong><span style="color:#ff0000;">3. Edit sysoc.inf to list all software</span></strong></p>
<p>To show all software that can be removed from your computer (including protected Windows services), you can manually edit (using notepad for example) the sysoc.inf file located in Windows\inf\. Just remove the word hide next to the software pack.<br />
*Note* &#8211; use this at your own risk. Removing critical components of the system will make Windows instable.</p>
<p><strong><span style="color:#ff0000;">4. Windows XP comes with IPv4 and IPv6</span></strong></p>
<p>Windows XP comes both IPv4 and IPv6 support. To enable IPv6, you can install the protocols needed with the command &#8220;ipv6 install&#8221; in the command-prompt. Then type ipv6 /? to see the options. The installation will not remove the IPv4 protocols so your current configuration will still work.</p>
<p><strong><span style="color:#ff0000;">5. Access Task Manager with shortcut</span></strong></p>
<p>To access the Task Manager easier, you can make a shortcut that points to %windir%\system32\taskmgr.exe</p>
<p><strong><span style="color:#ff0000;">6. Stop treating ZIP files like Folders</span></strong></p>
<p>If you don&#8217;t want your Windows XP to treat ZIP files like folders, you can disable this component by running regsvr32 /u zipfldr.dll at the command prompt or Run dialog. If you start missing it, you can enable it by typing regsvr32 zipfldr.dll.</p>
<p><strong><span style="color:#ff0000;">7. Run program as diffrent user</span></strong></p>
<p>You can run a program as a different user. Right click an application and select Run As command.</p>
<p><strong><span style="color:#ff0000;">8. Switch users leaving applications opened</span></strong></p>
<p>You can switch users leaving the applications opened too (*NOTE* use this only when needed since it could lead to system instability).<br />
Go to Task Manager &#8211; processes and end the process explorer.exe. This will end only your session and not all applications. Then go to Applications tab, click New task and type runas /user:domainname\username explorer.exe. A password prompt will appear to login to the desired username. The user&#8217;s session will start, with all your previously applications running.<br />
I recommend to open first a command-line prompt and type runas /? to see all the options available.</p>
<p><strong><span style="color:red;">9. Rename multiple files in Windows at once</span></strong></p>
<p>Rename multiple files in Windows at once. Select them all, right click and select Rename. Enter the desired name. They will be renamed using what you specified, with a number in brackets to distinguish them.</p>
<p><strong><span style="color:#ff0000;">10. Task kill feature in Windows</span></strong></p>
<p>Windows has a task kill feature similar to Linux. Go to a command prompt and run the command tasklist to see running processes with PID numbers. Then type tskill<br />
to end the specific task. This forces an instant closing of the task.</p>
<p><strong><span style="color:#ff0000;">11. Edit features with GPEDIT.MSC</span></strong></p>
<p>You can edit many features by running gpedit.msc. You can add log on/log off scripts here and many features.</p>
<p><strong><span style="color:#ff0000;">12. Edit accounts in the command prompt</span></strong></p>
<p>You can edit accounts by running &#8220;control userpasswords2&#8243; at the command prompt.</p>
<p><strong><span style="color:#ff0000;">13. Use systeminfo.exe to see System Information</span></strong></p>
<p>You can use the systeminfo.exe command in the command prompt to see System Information, including all Windows updates and hotfixes.</p>
<p><strong><span style="color:#ff0000;">14. Disable system services for maximum performance</span></strong></p>
<p>There are system services that you can disable to free up the system&#8217;s load. To access the interface that permits you to make changes to system&#8217;s services, type services.msc and the command prompt.<br />
This is a list of services that are *usually* useless and can be safely disabled.<br />
Alerter<br />
Application Layer Gateway Service,<br />
Application Management<br />
Automatic Updates<br />
Background Intelligent Transfer<br />
Clipbook<br />
Distributed Link Tracking Client<br />
Distributed Transaction Coordinater<br />
Error Reporting Service<br />
Fast User Switching Compatibility<br />
IMAPI CD-Burning<br />
Indexing Service<br />
IPSEC Services<br />
Messenger<br />
Net Logon<br />
Net Meeting<br />
Remote Desktop Sharing<br />
Network DDE<br />
Network DDE DSDM<br />
Portable Media Serial Number<br />
Remote Desktop Help Session Manager<br />
Remote Registry<br />
Secondary Logon<br />
Smartcard<br />
SSDP Discovery Service<br />
Uninterruptible Power Supply<br />
Universal Plug and Play Device Host<br />
Upload Manager<br />
Webclient<br />
Wireless Zero Configuration<br />
WMI Performance Adaptor</p>
<p>*<span style="color:blue;">NOTE</span>*: Make sure you don&#8217;t need them since some applications you&#8217;re using could depend on them. If you make any application to fail by disabling any of the services, go back and enable it again.</p>
<p><strong><span style="color:#ff0000;">15. Repair Windows XP by using the XP installation CD</span></strong></p>
<p>If your system failes to start due to an error related to missing HAL.DLL, invalid Boot.ini or any other critical system boot files you can repair this by using the XP installation CD. Simply boot from your XP Setup CD and enter the Recovery Console. Then run &#8220;attrib -H -R -S&#8221; on the C:\Boot.ini file and delete it. Run &#8220;Bootcfg /Rebuild&#8221; and then Fixboot.</p>
<p><strong><span style="color:#ff0000;"><span style="font-size:medium;">Conclusion:</span></span></strong><br />
Some of the tips might give you goosebumps, quite advance for average users to contemplate. If that&#8217;s the case, leave them alone because there are many simple tips that don&#8217;t need extra study. Stick with the ones you are comfortable with. I hope you find these tips useful.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/muchsino.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/muchsino.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/muchsino.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=muchsino.wordpress.com&amp;blog=2451318&amp;post=8&amp;subd=muchsino&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://muchsino.wordpress.com/2009/05/18/windows-xp-secrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d0a6a169532ee1bbba0b894a35df885?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">muchsino</media:title>
		</media:content>
	</item>
	</channel>
</rss>
