<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Basic lessons in HTML, CGI, SEO, domain registration, hosting - build an on line business!</title>
	<atom:link href="http://powertoearnmoney.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://powertoearnmoney.com</link>
	<description>Learn to write HTML, CGI, SEO tips, domain setup- to build a website or blog to earn money from home</description>
	<lastBuildDate>Mon, 07 May 2012 19:50:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JAVA Scrolling Banner Code</title>
		<link>http://powertoearnmoney.com/scripts-cgi-javascripts-php/java-scrolling-banner-code/</link>
		<comments>http://powertoearnmoney.com/scripts-cgi-javascripts-php/java-scrolling-banner-code/#comments</comments>
		<pubDate>Mon, 07 May 2012 19:49:36 +0000</pubDate>
		<dc:creator>AdminP</dc:creator>
				<category><![CDATA[Scripts - CGI, JavaScripts & PHP]]></category>
		<category><![CDATA[HTML code for scrolling banner]]></category>
		<category><![CDATA[JAVA Scrolling banner]]></category>

		<guid isPermaLink="false">http://powertoearnmoney.com/?p=3438</guid>
		<description><![CDATA[<p>In addition to using vertical and horizontal menus to build websites, thought you might find using a scrolling JAVA banner equally useful. A scrolling banner is a great way to put a lot of information into a small space. This particular banner allows you to use images, text or combination of both. But best of [...]]]></description>
			<content:encoded><![CDATA[<p>In addition to using vertical and horizontal menus to build websites, thought you might find using a scrolling JAVA banner equally useful. A scrolling banner is a great way to put a lot of information into a small space. This particular banner allows you to use images, text or combination of both. But best of all &#8211; you can make the images and text active links to other pages or websites. This is great for selling advertising space or linking to other projects. <em> (Click on the image below to see this script in action.)</em></p>
<p><a href="http://powertoearnmoney.com/VerticalScroll.html"><img class="alignnone size-full wp-image-3442" title="Click image to see Vertical Scroll Sample in action" src="http://powertoearnmoney.com/wp-content/uploads/2012/05/VerticalScroll_jpg.jpg" alt="" width="274" height="159" /></a></p>
<p>If you check out the links included in this post, you&#8217;ll see that the complete code for this JAVA banner comes in three parts &#8211; two for the JAVA script and one for the HTML.    The JAVA code is available at <a title="Get JAVA Script for scrolling banner" href="http://powertoearnmoney.com/java-script-for-scrolling-banner/" target="_blank">this link</a>  (<em>HTML code is below</em>).</p>
<h5>JAVA &#8211; Parts 1 &amp; 2</h5>
<p>The first part of the JAVA script puts a box or frame around the banner and the second part creates the action of continuous scrolling.</p>
<p>In the first section that places a &#8216;box&#8217; <em>(frame</em>) around the banner, you can change some of the <em>&#8216;sizes&#8217;</em> to get the look you want. The features you can change are:</p>
<ul>
<li>margin &#8211; 0px</li>
<li>placement &#8211; center</li>
<li>width of border &#8211; 1px</li>
<li>type of border &#8211; solid</li>
<li>color &#8211; #000 (again, using <a title="Read about triplet colors and get link to converth hex-colors to triplet" href="http://powertoearnmoney.com/html/css-vertical-menu-using-unordered-lists/" target="_blank">triplet colors</a>)</li>
</ul>
<p>If you were to leave out this portion of the code, there would be no frame around the banner.</p>
<p>The second part of the JAVA script code causes the scrolling action. There are only two (2) changes you may want to make to this code. These changes have to do with the width and height size the banner displays. Those lines are shown below:</p>
<p style="padding-left: 30px;"><strong>Sample code:</strong></p>
<p style="padding-left: 90px;"> <span style="color: #0000ff;">// width of the banner container</span></p>
<p style="padding-left: 90px;"><span style="color: #0000ff;">var contWidth = <strong>252</strong>;</span></p>
<p style="padding-left: 90px;"><span style="color: #0000ff;">// height of the banner container</span></p>
<p style="padding-left: 90px;"><span style="color: #0000ff;">var contHeight = <strong>100</strong>;</span></p>
<p>In the code above, the <strong>252</strong> references the width of the banner; the<strong> 100</strong> references the height. You would change these numbers to fit your space.</p>
<h5>HTML</h5>
<p>The HTML code contains the three &lt;div&gt; tags, the images, text and links <em>(if wanted)</em> for your banner.</p>
<p style="padding-left: 30px;"><strong>NOTE:</strong> The size you have assigned to the banner&#8217;s width in the JAVA script code <strong>MUST</strong> be the same in the HTML code for the lines where width is shown in the three &lt;div&gt; lines<em> (see below).</em> The width of 252 (pixels) in the code below corresponds to the 252 for width in our JAVA script.</p>
<p style="padding-left: 30px;"><strong>Sample HTML code:</strong></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;">&lt;div id=&#8221;slideCont&#8221; style=&#8221;position:relative;z-index:1;width:<strong>252</strong>px;overflow:hidden;text-decoration:none&#8221;&gt; </span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;">&lt;div id=&#8221;slideA&#8221; style=&#8221;position:absolute;z-index:1;top:0px;left:0px;width:<strong>252</strong>px;overflow:hidden;text-decoration:none&#8221;&gt; </span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;">&lt;div id=&#8221;slideB&#8221; style=&#8221;position:relative;z-index:1;top:0px;left:0px;width:<strong>252</strong>px;overflow:hidden;text-decoration:none&#8221;&gt;</span></p>
<p>In order for the scroll to work correctly, you<strong> must</strong> use the same HTML code, in the same order, for both &lt;div&gt; slideA and &lt;div&gt; slideB &#8211; this gives you the seamless roll.</p>
<p>You&#8217;ll note, that in our sample we&#8217;ve  made the image a link to one page with separate lines of text under the image where each line of text is linked to a different page. <em>(See Advertising image with three lines of text underneath.)</em></p>
<p>Also, we placed a line of text below the scroll after the last &lt;div&gt;. This line of text can be added, deleted or expanded, it has nothing to do with the scrolling banner working &#8211; but may be used to give instructions or offer an advertising opportunity.</p>
<p>We&#8217;ve written the HTML code for a scrolling banner and it&#8217;s available  at <a title="Get HTML code for scrolling banner" href="http://powertoearnmoney.com/java-scrolling-banner-html-code/" target="_blank">this link </a> . . .  the code is for five separate scrolling images.  You can copy and paste the HTML code from this link into your own HTML editor and then place you own information for links 1-5 in the correct spaces indicated by Link 1, Image 1, Text 1, Link 2, etc. .   If you don&#8217;t need five places, just delete the ones you don&#8217;t want- <strong>in BOTH slideA and slideB &lt;div&gt; sections.</strong></p>
<p>Just like with the CSS &#8211; you can place the JAVA code on the page or upload it to the Root directory as a .js file and then reference it in the head section of the HTML document.   If you upload the script to the Root Directory &#8211; only use the JAVA code when saving as a text document, do not include the information included in the &lt;! &#8211;     &#8211;&gt;  tags.  For more information about JAVA &#8211; <a title="Get help on troubleshooting JAVA scripts" href="http://powertoearnmoney.com/html/troubleshooting-html-graphics-cgi-java/" target="_blank">visit this link</a></p>
<p>PS &#8211; On checking for additional information for this code, we were surprised to find that the website we used to reference is no longer available. So&#8230;. in the near future, we&#8217;ll be posting some new links where you can find information relevant to our JAVA Scripts.</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fpowertoearnmoney.com%2Fscripts-cgi-javascripts-php%2Fjava-scrolling-banner-code%2F&amp;title=JAVA%20Scrolling%20Banner%20Code" id="wpa2a_2"><img src="http://powertoearnmoney.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://powertoearnmoney.com/scripts-cgi-javascripts-php/java-scrolling-banner-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Vertical Menu Using Unordered Lists</title>
		<link>http://powertoearnmoney.com/html/css-vertical-menu-using-unordered-lists/</link>
		<comments>http://powertoearnmoney.com/html/css-vertical-menu-using-unordered-lists/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 19:31:22 +0000</pubDate>
		<dc:creator>AdminP</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Easy Vertical Menu]]></category>
		<category><![CDATA[Vertoca; CSS Drop Down Menu]]></category>

		<guid isPermaLink="false">http://powertoearnmoney.com/?p=3422</guid>
		<description><![CDATA[<p>A couple of weeks back we covered CSS horizontal drop down menus, today we&#8217;ll see how to code a vertical menu using CSS where the sub-level links display to the side. As before, I&#8217;ll not go into a lengthy discussion of what each line of code means, however, the link below is for those that [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks back we covered CSS horizontal drop down menus, today we&#8217;ll see how to code a vertical menu using CSS where the sub-level links display to the side. As before, I&#8217;ll not go into a lengthy discussion of what each line of code means, however, the link below is for those that would like to read a detailed explanation of each line. This will be helpful for those wanting to make changes to display sizes, background colors, fonts, etc.</p>
<p>Vertical code explanation &#8211; <a title="CSS Vertical menu explained in detail " href="http://www.devinrolsen.com/pure-css-vertical-menu" target="_blank">http://www.devinrolsen.com/pure-css-vertical-menu</a></p>
<p>Some of the information covered is:</p>
<ul>
<li>How the HTML structure of menu / sub-menu is written</li>
<li>How to set the color of the background for menu and sub-menu</li>
<li>How to set the color of the fonts for menu and sub-menu</li>
<li>How to set font size</li>
</ul>
<p>&nbsp;</p>
<div id="attachment_3425" class="wp-caption alignnone" style="width: 392px"><a href="http://www.powertoearnmoney.com/sampleverticalmenu.html"><img class="size-full wp-image-3425" title="CSS Vertical Menu" src="http://powertoearnmoney.com/wp-content/uploads/2012/04/VerticalCSSMenu1.jpg" alt="" width="382" height="206" /></a><p class="wp-caption-text">Visit this link to see menu in action</p></div>
<p>&nbsp;</p>
<p>For convenience, we&#8217;ve included a link below to  the CSS code we used for our sample so that you can just copy/paste it to get links like ours. Of course the colors, size and number of links, and levels can be modified to accommodate your website. If you need more than one (1) sub-level of links, please visit the information link above for details on how to do this.</p>
<p style="padding-left: 30px;"><strong>Remember:</strong> When coding the CSS code to use on your own website, don&#8217;t forget that it MUST be saved in a Text Editor as a TEXT ONLY document with the extension .css after the name, i.e., mymenu.css &#8211; otherwise it will not work.</p>
<p><strong> Get CSS Code:  </strong>  <a title="Get CSS Code we used in our sample" href="http://powertoearnmoney.com/vertical-drop-down-menu-css/" target="_blank"> http://powertoearnmoney.com/vertical-drop-down-menu-css/</a></p>
<p><span style="text-decoration: underline;">NOTE</span>: The colors for backgrounds and fonts are in hex triplet colors &#8211; not hexadecimal. This is a <a title="Get triplet color code here" href="http://web.njit.edu/~kevin/rgb.txt.html" target="_blank">link</a> to a page where you can get hex triplet colors designations for use. <span style="text-decoration: underline;">Note</span>: Not all hexadecimal colors have a corresponding hex triplet color.</p>
<p>The HTML code for the sample page can be found at the link below. Again, just copy and paste, then replace the Menu, Sub-menu titles with your own names and put in your links. For the sample, there are seven (7) main menu links each one with 3 sub-levels. You can adjust these to meet your needs.   To remove a line in the sub-level menu, simply delete one of the &lt;li&gt; . . . &lt;/li&gt; lines; to increase the number of sub-level lines, add in a &lt;li&gt; &#8230; &lt;/li&gt;  for each new sub-level link needed.  Do this by using an HTML editor and saving the  page with the usual .html extension.</p>
<p>In our HTML sample code, note the &lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;<span style="color: #0000ff;">sample.css</span>&#8221; /&gt;  bit of code in the header that references the .css document.  For our Text Only .css document we named it  &#8216;sample&#8217;.   You would replace &#8216;sample&#8217; with the name you choose to call your .css document.</p>
<p><strong>Get HTML Code</strong> - <a title="Get HTML Code for or sample vertical CSS menu " href="http://powertoearnmoney.com/vertical-drop-down-menu-html-unordered-list/" target="_blank">http://powertoearnmoney.com/vertical-drop-down-menu-html-unordered-list/</a></p>
<p>The CSS code can be on the page, or uploaded to the domain&#8217;s root directory using an FTP program. If you choose to upload the CSS code, make sure you reference the stylesheet in the &lt;head&gt; section of each of the HTML document&#8217;s pages where you want the vertical menu to appear using the following string of code shown below -  where <span style="color: #0000ff;">sample.css</span> would be the name you have given to your .css page &#8211; or it will not work.</p>
<p><strong>Header Code:</strong>    &lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;<span style="color: #0000ff;">sample.css</span>&#8221; /&gt;</p>
<p>Using Cascading Style Sheets on your website for menus and various other apsects of the page can make managing your website easier, since any changes you make to the CSS code affects every page where that uniquely named style sheet code appeaers in the header.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fpowertoearnmoney.com%2Fhtml%2Fcss-vertical-menu-using-unordered-lists%2F&amp;title=CSS%20Vertical%20Menu%20Using%20Unordered%20Lists" id="wpa2a_4"><img src="http://powertoearnmoney.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://powertoearnmoney.com/html/css-vertical-menu-using-unordered-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Virus, Rootkit, Malware . . . HELP !!</title>
		<link>http://powertoearnmoney.com/general-information/computer-virus-rootkit-malware-help/</link>
		<comments>http://powertoearnmoney.com/general-information/computer-virus-rootkit-malware-help/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 21:11:49 +0000</pubDate>
		<dc:creator>AdminP</dc:creator>
				<category><![CDATA[General Information]]></category>

		<guid isPermaLink="false">http://powertoearnmoney.com/?p=3396</guid>
		<description><![CDATA[<p>Know I had promised to post on vertical drop-down menus this week, however, a very unexpected computer problem last week has caused me to rethink my plan. Thought it better that you should be aware what the AVG technician repairing my computer told me so that you might avoid some of the same virus issues [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3397" title="detourJ" src="http://powertoearnmoney.com/wp-content/uploads/2012/04/detourJ.jpg" alt="" width="100" height="110" />Know I had promised to post on vertical drop-down menus this week, however, a very unexpected computer problem last week has caused me to rethink my plan. Thought it better that you should be aware what the AVG technician repairing my computer told me so that you might avoid some of the same virus issues I had.</p>
<p><strong>Problem:</strong> My computer detected and blocked a Trojan virus that the AVG program (<em>paid version</em>) had found, however, was unable to isolate. (After all was said and done, there were several virus problems, plus a couple of rootkit issues found in my computer. In all honesty, hadn&#8217;t heard of &#8216;rootkit&#8217; before &#8211; but now know it can really cause problems. Read more about <a title="Read about rootkits on Wikipedia" href="http://en.wikipedia.org/wiki/Rootkit" target="_blank">rootkits here</a>)</p>
<p><strong>Solution:</strong> I called the AVG people and was given a list of steps to follow to fix the problem. However, I couldn&#8217;t get past the first step &#8211; <em>my computer went crazy</em>&#8230;. blinking screens that I couldn&#8217;t stop.</p>
<p>Called AVG back and went through the first on-line fix with a tech &#8211; the kind of interaction where they take control of your computer. Rather than give you all the details of the three separate fixes over the course of 24 hours, they not only used the AVG virus program but also several different spyware and malware programs <em>(links below)</em> . In addition, they gave me some solid tips on keeping my computer safe. They were. . .</p>
<ol>
<li> Virus programs should be checked for updates daily and if an update(s) is found; it should be installed.</li>
<li> Updates to virus programs should be done before you run any scans</li>
<li> Only one (1) virus program per computer; having more than one virus program causes confusion and can leave your computer at risk.</li>
<li> If you have AVG, use the AVG toolbar for searching as it provides safe sites.</li>
<li>Password protect your computer &#8211; even if you are the only one who uses it</li>
<li> Run free malware or spyware programs if you think you have a problem</li>
</ol>
<p>The list below contains the programs the AVG techs used on my computer. If the program was not free, they downloaded the trial paid version and used that. The list of spyware, malware and other programs is for informational purposes only. We are not recommending you use any one of them but rather read to see what each one offers. If your computer is in need of repair or has a virus problem, we recommend contacting a trained professional.</p>
<p>One other thought, at one point during this whole ordeal, my computer black screened.  While talking with the AVG tech on the phone and following his directions, he was able to get my computer back. However, I had to use my original OS Reinstallation disk that came with my computer to get things working again. Fortunately, that disk was in a place where I could find it. Now for the list.</p>
<p>Spyware, malware, and other programs used to repair my computer :</p>
<p><a title="Rootkit Scanner" href="http://public.avast.com/~gmerek/aswMBR.htm" target="_blank"> </a></p>
<p><a title="Rootkit Scanner" href="http://public.avast.com/~gmerek/aswMBR.htm" target="_blank">ASWMBR</a> -  Rootkit Scanner</p>
<p><a title="Free temporary file cleaner" href="http://atf-cleaner.en.softonic.com/?ab=1" target="_blank">ATF-Cleaner</a> &#8211; Free Temporary File Cleaner</p>
<p><a title="Virus scan to use when other programs show no virus" href="http://hitman-pro.en.softonic.com/?ab=1" target="_blank">HitmanPro35</a> &#8211; Virus scan to use when other programs show no virus</p>
<p><a title="Repair broken winsocks" href="http://download.cnet.com/LSPFix/3000-2085_4-10417026.html" target="_blank">LSPFix</a> &#8211; Repair broken winsocks</p>
<p><a title="Anti-malware program." href="http://download.cnet.com/Malwarebytes-Anti-Malware/3000-8022_4-10804572.html" target="_blank">mbam</a> -  Anti malware program</p>
<p><a title="Anti-adware program" href="http://kaspersky-tdsskiller.en.softonic.com/?ab=1" target="_blank">TDSSKiller</a> &#8211; Anti adware program</p>
<p><a title="Uninstaller program" href="http://www.revouninstaller.com/revo_uninstaller_free_download.html" target="_blank">REVOSETUP</a> &#8211; Program uninstaller program</p>
<p><a title="Rootkit detector" href="http://sites.google.com/site/rootrepeal/" target="_blank">RootRepeal</a> &#8211; Rootkit detector</p>
<p><a title="Anti-spyware program" href="http://www.superantispyware.com/" target="_blank">SuperANTISpywarePro </a>- Anti-spyware program</p>
<p><a title="Trojan remover" href="http://torrentz.eu/trjs/trjsetup682.exe-10905616" target="_blank">TRJsetup682</a> -Trojan remover</p>
<p><a title="Anti-virus software" href="http://www.lavasoft.com/products/ad_aware_free.php" target="_blank">LavaSoft</a> &#8211; Antivirus software</p>
<p>I was told that new viruses come in daily and a good maintenance regime should be followed to keep your computer safe. I now check daily for AVG updates.</p>
<p>And if that isn&#8217;t enough, to top it all off, here are some scary stats for those who don&#8217;t backup their files:</p>
<ul>
<li>All hard drives will crash during their lifetime</li>
<li>More than 1 in 10 laptops will be stolen in their lifetime</li>
<li>A laptop is stolen every 53 seconds</li>
<li>Every year 46% of computer users lose their music, photos, and documents</li>
<li>50% of all hard drives will crash within 5 years</li>
<li>89.1% of PC users don’t perform regular backups</li>
<li>A recent study from Gartner, Inc., found that 90 percent of companies that experience data loss go out of business within two years.</li>
<li>70 percent of companies go out of business after a major data loss</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fpowertoearnmoney.com%2Fgeneral-information%2Fcomputer-virus-rootkit-malware-help%2F&amp;title=Computer%20Virus%2C%20Rootkit%2C%20Malware%20.%20.%20.%20HELP%20%21%21" id="wpa2a_6"><img src="http://powertoearnmoney.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://powertoearnmoney.com/general-information/computer-virus-rootkit-malware-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horizontal Drop-Down Menu Using CSS</title>
		<link>http://powertoearnmoney.com/html/horizontal-drop-down-menu-using-css/</link>
		<comments>http://powertoearnmoney.com/html/horizontal-drop-down-menu-using-css/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 15:46:22 +0000</pubDate>
		<dc:creator>AdminP</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[horizontal drop-down menu using css]]></category>

		<guid isPermaLink="false">http://powertoearnmoney.com/?p=3384</guid>
		<description><![CDATA[<p>Using a drop-down menu to display sub-menus can make your page look more professional. But, if you&#8217;re like me, rather than use JAVA or jQuery, you&#8217;ll look for the easiest way to do this. And, as far as I&#8217;m concerned, those nice drop-down menus can easily be had using basic HTML to write an unordered list, and then [...]]]></description>
			<content:encoded><![CDATA[<p>Using a drop-down menu to display sub-menus can make your page look more professional. But, if you&#8217;re like me, rather than use JAVA or jQuery, you&#8217;ll look for the easiest way to do this. And, as far as I&#8217;m concerned, those nice drop-down menus can easily be had using basic HTML to write an unordered list, and then configuring the display in a CSS (Cascading Style Sheet) bit of code.</p>
<p>I&#8217;m not one to re-invent the wheel, so I&#8217;m giving you the link where all of this is explained in detail. <a title="Get complete explanation of CSS code here" href="http://www.devinrolsen.com/pure-css-horizontal-menu/" target="_blank">Get details here</a>.  However, to make things easier so you don&#8217;t have to create the documents as you read, I have placed the complete CSS code on a page <em>(link below)</em> where all you have to do is copy and paste it into a Text Editor. Once this is done, you MUST save the CSS code as a Text Only document giving it a name with the extension .css, i.e,<em> mymenu.css</em>, or it will not work.</p>
<p>&nbsp;</p>
<div id="attachment_3387" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.powertoearnmoney.com/PTEMCSS.html"><img class="size-full wp-image-3387" title="CSS_menu" src="http://powertoearnmoney.com/wp-content/uploads/2012/03/CSS_menu1.jpg" alt="" width="500" height="132" /></a><p class="wp-caption-text">Visit this link to see the menu in action</p></div>
<p>&nbsp;</p>
<p>Depending on your website, you can customize the HTML code for the number of Menu Headings and Sub-menu headings that you need. You can also make any changes to the CSS text document if you want to change the background or font colors to blend with your website. Otherwise leave as is. Before starting any of this, take a few minutes to read through the information at the other link to understand how the CSS works and how the code is structured.</p>
<p>The information covered there includes:</p>
<ul>
<li> How the HTML structure of menu / sub-menu is written</li>
<li>How the menu displays &#8211; left or right justification</li>
<li>How to determine the color of the background for menu and sub-menu</li>
<li>How to determine the color of the fonts for menu and sub-menu</li>
<li>How to set font size</li>
</ul>
<p><strong>NOTE:</strong> The colors for backgrounds and fonts are in hex triplet colors &#8211; not hexadecimal. This is a <a title="Visit this page for hex triplet color code" href="http://web.njit.edu/~kevin/rgb.txt.html" target="_blank">link to a page </a>where you can get hex triplet colors designations for use.  Not all hexadecimal colors have a corresponding hex triplet color.</p>
<p>The HTML code for the sample page can be found <a title="HTML code for drop-down menu using unordered list" href="http://powertoearnmoney.com/horizontal-drop-down-menu-html-unordered-list/" target="_blank">here</a>. Again, just copy and paste, then replace the Menu, Sub-menu titles with your own names and put in the links. For the sample, there are seven (7) main menu links with six (6) of them having three (3) sub-menus each. You can adjust these to meet your needs. Place into an HTML document and save.</p>
<p>The CSS code can be on the page<em> (placed in the &lt;head&gt; section),</em> or uploaded to the domain&#8217;s root directory using an FTP program. If you upload the CSS code, make sure you reference the stylesheet in the HTML document&#8217;s &lt;head&gt; section using the following string of code, where ptem.css would be replaced with the name you have given to your .css page.   Get the CSS code <a title="Get CSS code for drop down menu" href="http://powertoearnmoney.com/horizontal-drop-down-menu-css-code/" target="_blank">here.</a></p>
<p style="padding-left: 30px;"> &lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;ptem.css&#8221; /&gt;</p>
<p> Want to use a vertical menu, where the sub-menus display to the side? Check back next time where we&#8217;ll cover how to do this.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fpowertoearnmoney.com%2Fhtml%2Fhorizontal-drop-down-menu-using-css%2F&amp;title=Horizontal%20Drop-Down%20Menu%20Using%20CSS" id="wpa2a_8"><img src="http://powertoearnmoney.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://powertoearnmoney.com/html/horizontal-drop-down-menu-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Convert an Old C Drive to External Hard Drive</title>
		<link>http://powertoearnmoney.com/general-information/how-to-convert-an-old-c-drive-to-external-hard-drive/</link>
		<comments>http://powertoearnmoney.com/general-information/how-to-convert-an-old-c-drive-to-external-hard-drive/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 19:40:35 +0000</pubDate>
		<dc:creator>AdminP</dc:creator>
				<category><![CDATA[General Information]]></category>
		<category><![CDATA[How to convert a c drive to external drive]]></category>

		<guid isPermaLink="false">http://powertoearnmoney.com/?p=3370</guid>
		<description><![CDATA[<p>No one likes getting rid of a computer, whether it&#8217;s due to upgrading or due to high repair costs. And, we especially don&#8217;t like it if this means we end up loosing all the information on the hard disk drive (C Drive).   So, what do you do if you need those files and your old [...]]]></description>
			<content:encoded><![CDATA[<p>No one likes getting rid of a computer, whether it&#8217;s due to upgrading or due to high repair costs. And, we especially don&#8217;t like it if this means we end up loosing all the information on the hard disk drive <em>(C Drive).</em>   So, what do you do if you need those files and your old computer has gone<em> kaput</em>?  Answer:  You make it an external drive!</p>
<p>We recently had a computer go down<em> (bad motherboard),</em> so instead of putting money into a 4+ year old computer, thought it better to apply that money towards a new computer. Since our problem wasn&#8217;t disk related, we opted to remove the old C Drive and install in an external hard case. While we can&#8217;t use the programs stored there, we can open any of the document, image, etc. files that we might need.</p>
<p>This is a pretty simple process that almost anyone can do.  The information below will help you determine which external drive to buy to encase the old C drive.</p>
<p style="padding-left: 30px;"><strong>1.  </strong> Measure width and height of the C drive once you have removed it from the original computer tower. You should also know the maximum capacity of the disk.</p>
<p style="padding-left: 30px;"><strong>2. </strong>  Determine type of drive you have. This refers to the type of power used when starting up<em> (spin-up).</em> I found the type of C drive I had by actually using the information off the drive after I removed it from the tower and then searching online. The search results gave me the name/type for that drive so I could proceed with purchasing the correct case. There are two typical drives you will most likely encounter.</p>
<p style="padding-left: 60px;"><strong>SATA II (Serial Advanced Technology Attachment)</strong> &#8211; supports staggered spin-up allowing the computer to spin up the drives in sequence top reduce load on the power supply when booting.</p>
<p style="padding-left: 60px;"><strong>PATA (Parallel Advanced Technology Attachment) (and some SATA) &#8211; </strong>support power-up in standby. Each drive does not spin up until the controller (system BIOS) issues a specific command to do so&#8230; allowing the system to be set up to stagger disk start-up and limit maximum power demand at switch-on.</p>
<p style="padding-left: 30px;"><strong> 3.</strong>   Go online, i.e, <a href="http://www.amazon.com/gp/search?ie=UTF8&amp;keywords=usb%20external%20case&amp;tag=texantmal-20&amp;index=aps&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" target="_blank">Amazon</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=texantmal-20&amp;l=ur2&amp;o=1" alt="" width="1" height="1" border="0" /> and search for the type of drive you need based on the size and type.<em> (Check to make sure it comes with a USB cable and make note of what type of power it uses.)</em> Most of these external cases will fit the C drives that come with the newer computers.  However, if you have an older computer, you may need to do some more research with regard to case size and drive type.<em> (see link below for more information.)</em></p>
<p style="padding-left: 30px;"><strong>4.</strong>  Once you have the external drive case in hand, follow the instructions that come with the unit. In my case, I only had to remove two screws, place my old C drive inside, and replace the cover and screws.</p>
<p>After doing this, I simply plugged the unit into my new computer&#8217;s USB port where I could view all the files on my old C Drive and use them &#8211; all for under $15.00.</p>
<p>If you want to read more about hard disk drives, visit <a href="http://wn.wikipedia.org/widi/Hard_disk_drive">http://wn.wikipedia.org/widi/Hard_disk_drive</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fpowertoearnmoney.com%2Fgeneral-information%2Fhow-to-convert-an-old-c-drive-to-external-hard-drive%2F&amp;title=How%20to%20Convert%20an%20Old%20C%20Drive%20to%20External%20Hard%20Drive" id="wpa2a_10"><img src="http://powertoearnmoney.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://powertoearnmoney.com/general-information/how-to-convert-an-old-c-drive-to-external-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

