<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-36829094</atom:id><lastBuildDate>Sun, 01 Jan 2012 06:18:45 +0000</lastBuildDate><category>PHP</category><category>Web Design</category><category>SEO</category><category>dreamweaver</category><category>CSS</category><category>Phoshop</category><category>Thumbnails</category><category>Javascript</category><category>Mysql</category><category>Others</category><category>Tips and Tricks</category><category>Photoshop</category><category>Web Hosting</category><title>Web Development, Designing, Graphics</title><description>web designer, chennai</description><link>http://beermohamed.blogspot.com/</link><managingEditor>noreply@blogger.com (Beermohamed .S)</managingEditor><generator>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/blogspot/BlAh" /><feedburner:info uri="blogspot/blah" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><itunes:explicit>no</itunes:explicit><itunes:subtitle>web designer, chennai</itunes:subtitle><feedburner:browserFriendly></feedburner:browserFriendly><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-7776911446445941697</guid><pubDate>Thu, 20 Jan 2011 07:02:00 +0000</pubDate><atom:updated>2011-01-20T02:03:40.564-05:00</atom:updated><title>Apply a custom font to your website, Works on all Browsers</title><description>&lt;p&gt; For web developers and web designers who want to add their FONT to websites without using Standard Web Fonts and without making text as images. &lt;/p&gt; &lt;p&gt; Google has create a &lt;a href="http://code.google.com/webfonts" target="_blank" rel="nofollow"&gt;Google Font API&lt;/a&gt; for public use to give web developers and web designers the ability to use extra fonts on the web, not only the standard web fonts. &lt;/p&gt; &lt;a id="more53" name="more53"&gt;&lt;/a&gt;&lt;p class="bMore"&gt;Follow up:&lt;/p&gt; &lt;p&gt;Because of this, i was trying to apply a custom font, to use it in my website. I mean by saying a custom font: upload font to my website to let visitors see this font. This custom font could be any font face, or font family. &lt;/p&gt; &lt;p&gt; CSS 2 and CSS 3 gave browsers the ability to download and use &lt;b&gt;TTF&lt;/b&gt; file formats.&lt;br /&gt;But as we all know Internet Explorer "IE" don't accept that. &lt;/p&gt; &lt;p&gt; The CSS code used to apply the custom font as following:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;style type="text/css"&gt;&lt;br /&gt;@font-face {&lt;br /&gt;font-family: CustomFont;&lt;br /&gt;src: local('CustomFont'), url('myFont.ttf') format('truetype');&lt;br /&gt;}&lt;br /&gt;&lt;/style&gt;&lt;br /&gt;&lt;/code&gt; &lt;/p&gt; &lt;p&gt; The above code won't work on any version of Internet Explorer. Why is that?&lt;br /&gt;And how to use this custom font on the buggy Internet Explorer? &lt;/p&gt; &lt;p&gt; 1) After searching how to use custom fonts on IEs, I found that Internet Explorer does not accept &lt;b&gt;TTF&lt;/b&gt; file types. IEs only accept &lt;b&gt;EOT&lt;/b&gt; file types.&lt;br /&gt;&lt;br /&gt;2) IE 6 and IE 7 also don't understand what "CLEARTYPE" means.&lt;br /&gt;What to do then? &lt;/p&gt; &lt;p&gt; Internet Explorers (IE6, IE7 and IE8) accept EOT file types so, i wrote this code:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;style type="text/css"&gt;&lt;br /&gt;@font-face {&lt;br /&gt;  font-family: 'Custom Font';&lt;br /&gt;  src: url("myFont.eot"); /* FOR IEs */&lt;br /&gt;  src: local('Custom Font'), url('myFont.ttf') format('truetype'); /* for other web browsers */&lt;br /&gt;}&lt;br /&gt;&lt;/style&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;This code works.. It was tested on IE6, IE7, IE8, FireFox 3.6, Safari 4.&lt;br /&gt;Now you can use it with CSS in FONT, FONT-FAMILY like this:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;style&gt;&lt;br /&gt;.myStyle{&lt;br /&gt;font-family: 'Custom Font';&lt;br /&gt;font-size:14px;&lt;br /&gt;}&lt;br /&gt;&lt;/style&gt;&lt;br /&gt;&lt;/code&gt; &lt;/p&gt; &lt;p&gt; To see a live demo for this CSS code, please visit: &lt;a href="http://www.freelancer-id.com/font.html" target="_blank"&gt;Custom Font&lt;/a&gt; &lt;/p&gt; &lt;p&gt; To covert TTF fonts to EOT fonts please visit: &lt;a href="http://www.kirsle.net/wizards/ttf2eot.cgi" target="_blank" rel="nofollow"&gt;http://www.kirsle.net/wizards/ttf2eot.cgi&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;strong&gt;NOTE:&lt;/strong&gt;&lt;br /&gt;This feature only works on the following&lt;br /&gt;&lt;b&gt;IE 6, IE 7, IE 8, FireFox 3.6+, Safari 4+, Chrome 5+, Opera 10+&lt;/b&gt; &lt;/p&gt;  Don't forget to check that your web host gives the ability to send TTF file types.&lt;br /&gt;&lt;br /&gt;Source: http://blog.freelancer-id.com&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-7776911446445941697?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2011/01/apply-custom-font-to-your-website-works.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-8619419369324583939</guid><pubDate>Mon, 25 Oct 2010 04:59:00 +0000</pubDate><atom:updated>2010-10-25T01:00:59.869-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><category domain="http://www.blogger.com/atom/ns#">dreamweaver</category><title>Dreamweaver Error:Translator load error - ICERegions.htm &amp; Server Model SSI.htm</title><description>error code when DW CS4 is opened.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.zimbio.com/go/ANhM2Vf43xF/http://1.bp.blogspot.com/_597Km39HXAk/TH34Kpe3D9I/AAAAAAAAH2A/SgJOd0WHmeo/s1600/dreamweaver_error.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_597Km39HXAk/TH34Kpe3D9I/AAAAAAAAH2A/SgJOd0WHmeo/s400/dreamweaver_error.jpg" alt="" id="BLOGGER_PHOTO_ID_5511834380789026770" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Removing the WinFileCache-7A9586CB.dat does not seem to eliminate the error.&lt;br /&gt;&lt;br /&gt;This is the folder it is supposed to be in with Adobe Dreamweaver CS4 on a Windows XP machime:&lt;br /&gt;&lt;br /&gt;C:\Documents and Settings\Username\Application Data\Adobe\Dreamweaver CS4\en_US\Configuration\SiteCache\&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-8619419369324583939?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2010/10/dreamweaver-errortranslator-load-error.html</link><author>noreply@blogger.com (Beermohamed .S)</author><media:thumbnail url="http://1.bp.blogspot.com/_597Km39HXAk/TH34Kpe3D9I/AAAAAAAAH2A/SgJOd0WHmeo/s72-c/dreamweaver_error.jpg" height="72" width="72" /></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6581405371603905424</guid><pubDate>Mon, 21 Sep 2009 11:01:00 +0000</pubDate><atom:updated>2009-09-21T07:18:40.211-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><category domain="http://www.blogger.com/atom/ns#">Others</category><title>How to hide / disable Windows Security Center</title><description>&lt;pre  style="font-family:trebuchet ms;"&gt;&lt;span style="font-weight: bold;"&gt;Follow these steps to hide / disable Windows XP Security Center:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1. &lt;span style="color: rgb(204, 0, 0);"&gt;Start &lt;/span&gt;-&gt; &lt;span style="color: rgb(204, 0, 0);"&gt;Settings &lt;/span&gt;-&gt; &lt;span style="color: rgb(204, 0, 0);"&gt;Control Pannel &lt;/span&gt;-&gt; &lt;span style="color: rgb(204, 0, 0);"&gt;Administrative Tools&lt;/span&gt; -&gt; &lt;span style="color: rgb(255, 0, 0);"&gt;Services&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. Locate "&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Security Center&lt;/span&gt;", double click on it and choose "&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;Disabled&lt;/span&gt;" in "&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Startup type&lt;/span&gt;"&lt;br /&gt;dropdown box&lt;br /&gt;&lt;br /&gt;3. Click on "&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;Apply&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;That's it, next time you reboot your PC security center will not come up in the task bar.&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6581405371603905424?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2009/09/how-to-hide-disable-windows-security.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-7766506986977304761</guid><pubDate>Sun, 26 Apr 2009 07:28:00 +0000</pubDate><atom:updated>2009-09-21T07:05:47.009-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Web Hosting</category><category domain="http://www.blogger.com/atom/ns#">Others</category><category domain="http://www.blogger.com/atom/ns#">CSS</category><title>Bharathtemplates.com</title><description>&lt;p&gt;I was browsing for some good looking templates for my future project and I stumbled on Bharathtemplates.com website. I usually do my own designs, but the situation called for a template (client demanded it). I would say no to this project, since I don’t have time to figure template’s structure and code but I changed my mind when I saw these templates.&lt;/p&gt; &lt;h3&gt;Beautiful templates&lt;/h3&gt; &lt;p&gt;I know many websites that offer great templates but Bharathtemplates.com got me with some original &lt;a href="http://www.bharathtemplates.com/" title="custom web design" target="_blank"&gt;custom web designs&lt;/a&gt;&lt;a href="http://www.bharathtemplates.com/"&gt;.&lt;/a&gt; I purchased one of them and quickly set it up. It was just to easy  Well, to be fair I have to say I had a little problem with the template but their online support managed to solved it pretty quickly.&lt;/p&gt; &lt;h3&gt;Template features&lt;/h3&gt; &lt;p&gt;So what kind of templates are they offering? You can find templates features on their website, but here are just some of them:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Five page templates (homepage and five internal pages)&lt;/li&gt;&lt;li&gt;Affordable Prices&lt;/li&gt;&lt;li&gt;Flash and Joomla templates&lt;/li&gt;&lt;li&gt;Great for web designers&lt;/li&gt;&lt;li&gt;Live chat support 24 hours&lt;/li&gt;&lt;li&gt;Other services that we offer&lt;/li&gt;&lt;li&gt;Complete customization of template (design customization and content insertion)&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.bharathtemplates.com/" title="custom web design" target="_blank"&gt;Custom web design&lt;/a&gt; service&lt;/li&gt;&lt;li&gt;Adding functionalities for ecommerce site (Adding forms, Adding databases, adding shopping carts etc.)&lt;/li&gt;&lt;li&gt;Free Web Hosting&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;As you can see, Bharathtemplates.com offers more than just templates. They try to provide the whole package. Anyhow, visit their website and check the gallery of interesting templates. You’ll surly find one for your needs.&lt;/p&gt;&lt;p&gt;Site URL: www.bharathtemplates.com&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-7766506986977304761?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2009/04/bharathtemplatescom.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-5379630655206457003</guid><pubDate>Fri, 19 Dec 2008 04:39:00 +0000</pubDate><atom:updated>2008-12-18T23:40:35.396-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Others</category><title>Serious security flaw found in IE</title><description>&lt;p&gt;                        &lt;b&gt; Users of Microsoft's Internet Explorer are being urged by experts to switch to a rival until a serious security flaw has been fixed. &lt;/b&gt;                        &lt;/p&gt;&lt;p&gt; The flaw in Microsoft's Internet Explorer could allow criminals to take control of people's computers and steal their passwords, internet experts say. &lt;/p&gt;&lt;p&gt;                        Microsoft urged people to be vigilant while it investigated and prepared an emergency patch to resolve it.                         &lt;/p&gt;&lt;p&gt;                        Internet Explorer is used by the vast majority of the world's computer users.                                              &lt;/p&gt;&lt;div class="bo"&gt;                    &lt;p&gt;                    &lt;/p&gt;&lt;/div&gt;                                           &lt;div class="bo"&gt;                    &lt;p&gt; "Microsoft is continuing its investigation of public reports of attacks against a new vulnerability in Internet Explorer," said the firm in a security advisory alert about the flaw. &lt;/p&gt;&lt;p&gt; Microsoft says it has detected attacks against IE 7.0 but said the "underlying vulnerability" was present in all versions of the browser. &lt;/p&gt;&lt;p&gt;                        Other browsers, such as Firefox, Opera, Chrome, Safari, are not vulnerable to the flaw Microsoft has identified.                         &lt;/p&gt;&lt;p&gt;                        &lt;b&gt;                        Browser bait                        &lt;/b&gt;                        &lt;/p&gt;&lt;p&gt; "In this case, hackers found the hole before Microsoft did," said Rick Ferguson, senior security advisor at Trend Micro. "This is never a good thing." &lt;/p&gt;&lt;p&gt;                        As many as 10,000 websites have been compromised since the vulnerability was discovered, he said.                         &lt;/p&gt;&lt;p&gt; "What we've seen from the exploit so far is it stealing game passwords, but it's inevitable that it will be adapted by criminals," he said. "It's just a question of modifying the payload the trojan installs." &lt;/p&gt;&lt;p&gt;                    &lt;/p&gt;&lt;/div&gt;                                     &lt;div class="bo"&gt;                    &lt;p&gt;                        Said Mr Ferguson: "If users can find an alternative browser, then that's good mitigation against the threat."                         &lt;/p&gt;&lt;p&gt;                        But Microsoft counselled against taking such action.                         &lt;/p&gt;&lt;p&gt;                        "I cannot recommend people switch due to this one flaw," said John Curran, head of Microsoft UK's Windows group.                         &lt;/p&gt;&lt;p&gt;                        He added: "We're trying to get this resolved as soon as possible.                         &lt;/p&gt;&lt;p&gt; "At present, this exploit only seems to affect 0.02% of internet sites," said Mr Curran. "In terms of vulnerability, it only seems to be affecting IE7 users at the moment, but could well encompass other versions in time." &lt;/p&gt;&lt;p&gt; Richard Cox, chief information officer of anti-spam body The Spamhaus Project and an expert on privacy and cyber security, echoed Trend Micro's warning. &lt;/p&gt;&lt;p&gt; "It won't be long before someone reverse engineers this exploit for more fraudulent purposes. Trend Mico's advice [of switching to an alternative web browser] is very sensible," he said. &lt;/p&gt;&lt;p&gt;                    &lt;/p&gt;&lt;/div&gt;                                           &lt;div class="bo"&gt;                    &lt;p&gt; PC Pro magazine's security editor, Darien Graham-Smith, said that there was a virtual arms race going on, with hackers always on the look out for new vulnerabilities. &lt;/p&gt;&lt;p&gt; "The message needs to get out that this malicious code can be planted on any web site, so simple careful browsing isn't enough." &lt;/p&gt;&lt;p&gt; "It's a shame Microsoft have not been able to fix this more quickly, but letting people know about this flaw was the right thing to do. If you keep flaws like this quiet, people are put at risk without knowing it." &lt;/p&gt;&lt;p&gt; "Every browser is susceptible to vulnerabilities from time to time. It's fine to say 'don't use Internet Explorer' for now, but other browsers may well find themselves in a similar situation," he added. &lt;/p&gt;&lt;/div&gt;                  Story from BBC NEWS:&lt;br /&gt;http://news.bbc.co.uk/go/pr/fr/-/2/hi/technology/7784908.stm&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-5379630655206457003?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/12/serious-security-flaw-found-in-ie.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-3922158876508027285</guid><pubDate>Thu, 18 Dec 2008 08:40:00 +0000</pubDate><atom:updated>2008-12-18T03:45:52.670-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Google Talk: Run Multiple Instances or Login as Multiple Users</title><description>&lt;h4&gt;If you have several google talk accounts, you may want to run multiple instances of google talk at once.  Here’s how to do it.&lt;/h4&gt; &lt;p&gt;&lt;span id="more-975"&gt;&lt;/span&gt;&lt;br /&gt;Many users, including myself, like to have several different personalities on IM–Work, play, etc. By default google talk with only allow you to run instance of the program at a time. Here’s how to get around that…&lt;/p&gt; &lt;p&gt;Run google talk with the following switch:  &lt;strong&gt;/nomutex&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;If you installed google talk to the default location, you can easily create a shortcut to this setting.&lt;/p&gt; &lt;ul&gt;1. Right-click on the desktop&lt;br /&gt;2. Select &lt;strong&gt;New&lt;/strong&gt;&lt;br /&gt;3. Select &lt;strong&gt;Shortcut&lt;/strong&gt;&lt;br /&gt;4. Paste this into the text box:&lt;br /&gt;&lt;code&gt;"c:\program files\google\google talk\googletalk.exe" /nomutex&lt;/code&gt;&lt;p&gt;5. Click &lt;strong&gt;Next&lt;/strong&gt;6. Name it whatever: Google Talk Multiple, etc.&lt;br /&gt;7. Click &lt;strong&gt;OK&lt;/strong&gt; until you are done.&lt;/p&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-3922158876508027285?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/12/google-talk-run-multiple-instances-or.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-3883955695701280148</guid><pubDate>Fri, 21 Nov 2008 12:15:00 +0000</pubDate><atom:updated>2008-11-21T07:19:32.227-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>What does `lorem ipsum dolor' mean?</title><description>&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;font-family:georgia;" &gt;What does `lorem ipsum dolor' mean?&lt;/span&gt;  &lt;span style="font-family:georgia;"&gt;&lt;br /&gt;`Lorem ipsum dolor' is the first part of a nonsense paragraph sometimes used to demonstrate a font. It has been well established that if you write anything as a sample, people will spend more time reading the copy than looking at the font. The ``gibberish'' below is sufficiently like ordinary text to demonstrate a font but doesn't distract the reader.&lt;br /&gt;&lt;br /&gt; Hopefully.&lt;/span&gt;  &lt;span style="font-family:georgia;"&gt;Rick Pali submits the following from Before and After Magazine, Volume 4 Number 2.:&lt;/span&gt;  &lt;span style="font-family:georgia;"&gt;&lt;br /&gt;[quote]&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family:georgia;"&gt;After telling everyone that Lorem ipsum, the nonsensical text that comes with PageMaker, only looks like Latin but actually says nothing, I heard from Richard McClintock, publication director at the Hampden-Sydney College in Virginia, who had enlightening news:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-family:georgia;"&gt;"Lorem ipsum is latin, slightly jumbled, the remnants of a passage from Cicero's _de Finibus_ 1.10.32, which begins 'Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...' [There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain.]. [de Finibus Bonorum et Malorum, written in 45 BC, is a treatise on the theory of ethics very popular in the Renaisance.]&lt;/span&gt;  &lt;span style="font-family:georgia;"&gt;&lt;br /&gt;&lt;br /&gt;"What I find remarkable is that this text has been the industry's standard dummy text ever since some printed in the 1500s took a galley of type and scambled it to make a type specemin book; it has survived not only four centuries of letter-by-letter resetting but even the leap into electronic typesetting, essentially unchanged except for an occational 'ing' or 'y' thrown in. It's ironic that when the then-understood Latin was scrambled, it became as incomprehensible as Greek; the phrase 'it's Greek to me' and 'greeking' have common semantic roots!"&lt;/span&gt;  &lt;span style="font-family:georgia;"&gt;&lt;br /&gt;[unquote]&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;&lt;a href="http://www.bharathtemplates.com/"&gt;&lt;span style="font-weight: bold;font-family:georgia;" &gt;One Example of Lorem Ipsum Dolor&lt;/span&gt;&lt;/a&gt;  &lt;span style="font-family:georgia;"&gt;Lorem ipsum dolor sit amet, consectetaur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda. Et tam neque pecun modut est neque nonor et imper ned libidig met, consectetur adipiscing elit, sed ut labore et dolore magna aliquam makes one wonder who would ever read this stuff? Bis nostrud exercitation ullam mmodo consequet. Duis aute in voluptate velit esse cillum dolore eu fugiat nulla pariatur. At vver eos et accusam dignissum qui blandit est praesent luptatum delenit aigue excepteur sint occae. Et harumd dereud facilis est er expedit distinct. Nam libe soluta nobis eligent optio est congue nihil impedit doming id Lorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et labore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in reprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse molestaie cillum. Tia non ob ea soluad incommod quae egen ium improb fugiend. Officia deserunt mollit anim id est laborum Et harumd dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda et tam. Neque pecun modut est neque nonor et imper ned libidig met, consectetur adipiscing elit, sed ut labore et dolore magna aliquam is nostrud exercitation ullam mmodo consequet. Duis aute in voluptate velit esse cillum dolore eu fugiat nulla pariatur. At vver eos et accusam dignissum qui blandit est praesent. Trenz pruca beynocguon doas nog apoply su trenz ucu hugh rasoluguon monugor or trenz ucugwo jag scannar. Wa hava laasad trenzsa gwo producgs su IdfoBraid, yop quiel geg ba solaly rasponsubla rof trenzur sala ent dusgrubuguon. Offoctivo immoriatoly, hawrgasi pwicos asi sirucor.Thas sirutciun applios tyu thuso itoms ghuso pwicos gosi sirucor in mixent gosi sirucor ic mixent ples cak ontisi sowios uf Zerm hawr rwivos. Unte af phen neige pheings atoot Prexs eis phat eit sakem eit vory gast te Plok peish ba useing phen roxas. Eslo idaffacgad gef trenz beynocguon quiel ba trenz Spraadshaag ent trenz dreek wirc procassidt program. Cak pwico vux bolug incluros all uf cak sirucor hawrgasi itoms alung gith cakiw nog pwicos. Plloaso mako nuto uf cakso dodtos anr koop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu InfuBwain, ghu gill nug bo suloly sispunsiblo fuw cakiw salo anr ristwibutiun. Hei muk neme eis loppe. Treas em wankeing ont sime ploked peish rof phen sumbloat syug si phat phey gavet peish ta paat ein pheeir sumbloats. Aslu unaffoctor gef cak siructiun gill bo cak spiarshoot anet cak GurGanglo gur pwucossing pwutwam. Ghat dodtos, ig pany, gill bo maro tyu ucakw suftgasi pwuructs hod yot tyubo rotowminor. Plloaso mako nuto uf cakso dodtos anr koop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-family:georgia;"&gt;[This version was found on CompuServe. It differs from other versions I have seen in print, increasingly so as you go along. It almost looks computer-generated, doesn't it?]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-3883955695701280148?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/11/what-does-lorem-ipsum-dolor-mean.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6668046111988860920</guid><pubDate>Fri, 21 Nov 2008 08:50:00 +0000</pubDate><atom:updated>2008-11-21T03:54:41.975-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Web Hosting</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Shopping carts &amp;  ecommerce software solutions guide</title><description>&lt;span style="font-weight: bold;"&gt;Shopping carts &amp;amp;  ecommerce software solutions guide&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Choosing the best shopping cart solution for your launch into ecommerce is critical to the success of your online business. If you're wanting to learn more about this sometimes confusing world, this guide will explain the points you should consider before purchasing a cart.&lt;br /&gt;&lt;br /&gt;If you're currently in the market for software or services and would like our recommendations, read our shopping cart software and services review.&lt;br /&gt;&lt;br /&gt;&lt;h2 align="left"&gt;    What is a shopping cart?     &lt;/h2&gt;        &lt;p align="left"&gt; In a basic definition, it's a series of scripts that keep track of items a visitor picks to buy from your site until they proceed to the "checkout".  &lt;/p&gt;        &lt;p align="left"&gt; A popular misconception is that shopping carts handle the whole financial transaction, but they only really act as a front end which passes information via a secure connection (another service) to a payment gateway - a separate service altogether.  &lt;/p&gt;        &lt;p align="left"&gt; The payment gateway service then channels the requests and transfers throughout relevant financial networks, including the Internet merchant account with your bank. It then sends back confirmation or denial back to the shopping cart software. For further information on the "back-end" aspects of ecommerce; read our guide to &lt;a href="http://www.tamingthebeast.net/articles2/back-end-ecommerce.htm"&gt;payment gateways    and merchant accounts&lt;/a&gt;.    &lt;/p&gt;        &lt;p align="left"&gt; The good news is that there are literally hundreds of shopping cart packages available. The bad news is the same as the good. Sometimes, too many choices make it very difficult to make a decision - especially when all companies claim to have the superior product. After having worked with or examined over a hundred different shopping cart applications over the years, I hope this article may make your life just a little bit easier! &lt;/p&gt;&lt;br /&gt;&lt;h2 align="left"&gt;Free or premium shopping carts?    &lt;/h2&gt;        &lt;p align="left"&gt;It's very important before you begin reviewing software and services to be to be very specific in what you actually want the cart to be able to do. It may be that you really don't require all the bells and buzzers offered by high end packages - if this is the case, then a good package will cost around the $US250 - $300 mark; with some excellent, and in my opinion, crucial features included at the high end of that range. Some companies offer free shopping carts, but bear in mind that nothing in this world is truly free - read the fine print.  &lt;/p&gt;        &lt;p align="left"&gt;Be careful not to limit yourself either - you may only want    limited features initially, but what about in the future? Give yourself room to    grow as having to change software mid-stream to a totally different package    can be a real time-sucker.    &lt;/p&gt;        &lt;h2 align="left"&gt;Free ecommerce solutions    &lt;/h2&gt;         &lt;p align="left"&gt;One of the best free ecommerce solutions around is &lt;a href="https://www.paypal.com/mrb/pal=3S8YHS5QVLLTS" target="_blank"&gt;Paypal&lt;/a&gt;, which integrates     basic shopping cart functions with a payment gateway and merchant account - funds are     paid to you via check or through direct deposit. &lt;a href="https://www.paypal.com/mrb/pal=3S8YHS5QVLLTS"&gt;Paypal&lt;/a&gt; is an excellent way to begin in     ecommerce and is very widely accepted around the world.     &lt;/p&gt;         &lt;p align="left"&gt; You only pay a small percentage of each sale and there are no monthly fees or setup     costs, plus you receive free fraud protection - no chargeback fees to worry     about. &lt;a href="https://www.paypal.com/mrb/pal=3S8YHS5QVLLTS" target="_blank"&gt; Paypal&lt;/a&gt;      also offers web developers a wide variety of easy to use tools to assist     with rapid implementation.    &lt;/p&gt;        &lt;h2 align="left"&gt;What other features do shopping carts have?    &lt;/h2&gt;        &lt;p align="left"&gt;Shopping cart software has come a long way in recent years, and many packages are so advanced that they are in effect entire store fronts and can actually be your entire web site. Some integrated elements of benefit to your online business you may wish to consider include: &lt;/p&gt;        &lt;h2 align="left"&gt;Suggest sell/cross selling functions    &lt;/h2&gt;        &lt;p align="left"&gt;Just as in the physical world, impulse buying via the Internet is quite common. Some shopping carts will suggest another product to complement a customers current selection. If offered at a discount rate, this strategy proves quite successful. &lt;/p&gt;        &lt;h2 align="left"&gt;Quantity discounts/coupons    &lt;/h2&gt;        &lt;p align="left"&gt;Many shopping carts now allow for the calculation of discount rates based on the number of units a customer wishes to purchase. Coupon functions allow you to issue special offers as part of your marketing campaigns. Usually, prospective clients are given special codes that are matched against a particular item or overall discount rate. I strongly recommend using a shopping cart that supports coupons; it's such a powerful sales strategy. &lt;/p&gt;         &lt;h2 align="left"&gt;Autoresponder and newsletter functions    &lt;/h2&gt;        &lt;p align="left"&gt;If you follow up all your clients with regular email offers, you may want to consider shopping cart software that has integrated autoresponder and newsletter capabilities - this will streamline your operations and can be used for maintaining other contact lists as well. Why buy two pieces of software when you can get them rolled into one? &lt;/p&gt;        &lt;h2 align="left"&gt;Affiliate modules     &lt;/h2&gt;        &lt;p align="left"&gt;One of the most effective, low cost ways to advertise your product is through an affiliate program. Your outlay is minimal if you only pay on performance; i.e. sales generated. An affiliate module can handle the signup process, provide statistics, streamline communications and keep track of payments to be made to affiliates.&lt;br /&gt;  &lt;br /&gt;   Other features commonly incorporated into carts include inventory tracking, sales tax calculation, stationery    creation/management, reviews and wish lists.&lt;br /&gt;  &lt;br /&gt;   There's a number of questions you'll want to ask yourself when compiling a shopping cart wish list:    &lt;/p&gt;        &lt;h2 align="left"&gt; What kind of shopping cart does my hosting service support?    &lt;/h2&gt;        &lt;p align="left"&gt;Shopping cart scripts are written in many different coding formats - PERL, PHP, ASP just to name a few. Be sure to check with your host before purchasing a program. If you opt for a remotely hosted service (explained in more detail below), then it won't matter what programming language the cart software is written in. &lt;/p&gt;        &lt;h2 align="left"&gt; What is my budget?    &lt;/h2&gt;        &lt;p align="left"&gt;It's easy to blow your budget on a turbo-charged shopping cart only to find that there were a number of other critical items you didn't factor in - like a payment gateway, or the fact that the cart software may be so complex that you need to hire somebody else to assist in implementation! &lt;/p&gt;        &lt;h2 align="left"&gt; What kind of delivery mechanisms will I require?    &lt;/h2&gt;        &lt;p align="left"&gt;If you are selling hard goods that need shipping, choice of cart is a little easier as this is a standard function. Many carts also offer customers the ability to calculate different shipping options and to get live quotes back from shipping companies.  &lt;/p&gt;        &lt;p align="left"&gt; If you are trading in soft goods such as software and want to make delivery available online immediately, you'll need to carefully compare carts.&lt;br /&gt;  &lt;br /&gt;As an example, some shopping carts that are capable of delivering goods online redirect customers to a static download page after a successful transaction. This isn't a good idea as the customer (and his/her friends) are able to return to the page to download again and again. A better equipped shopping cart will only provide customers with a temporary URL, that will be unique to that customer and may only be available for a few hours after purchase before it is deleted.&lt;br /&gt;  &lt;br /&gt;Another strategy employed by some carts for soft goods online delivery is to use a static URL for downloading, but scripting is implemented to ensure the visitor to the page has come via the shopping cart after a successful transaction has occurred.&lt;br /&gt;  &lt;br /&gt;Yet another soft goods delivery means used by carts is that the software is attached to an email sent to the customer after a successful transaction. This may be suitable for very small files, but I don't think many ISP's would appreciate you sending 20 megabyte attachments to a customers inbox - in fact, it would not be possible in many instances. &lt;/p&gt;        &lt;h2 align="left"&gt; Where will my business be in 6 months time?    &lt;/h2&gt;        &lt;p align="left"&gt;Does the package allow for scalability? While you may not require bells and buzzers now, as your business grows you may find that your needs change. The better shopping carts are in a modular format which allow for scalability with minimum downtime. Be sure to check the prices of modules you may need in the future. It isn't uncommon for companies is to offer the base model for next to nothing and then to charge like wounded bulls for any upgrades. &lt;/p&gt;        &lt;h2 align="left"&gt; Is the cart software compatible with my payment gateway?    &lt;/h2&gt;        &lt;p align="left"&gt;There are dozens of different payment gateways which plug into various shopping cart packages - but perhaps not yours! Before purchasing your cart, also review gateway services supported by the software (and also make sure that the payment gateway is compatible with the Internet merchant account you have with your bank). It can be a bit of a challenge getting the cart you want to talk to the gateway service you want and also to your bank! Read our guide to &lt;a href="http://www.tamingthebeast.net/articles2/back-end-ecommerce.htm"&gt;payment gateways    and merchant accounts&lt;/a&gt;.    &lt;/p&gt;        &lt;h2 align="left"&gt; What kind of payments are supported by the cart?    &lt;/h2&gt;        &lt;p align="left"&gt;Credit card transactions are now a normal part of our online world. If your shopping cart software does not support credit card transactions or if you have not enabled credit card processing, you're in trouble - you may as well just close up shop!&lt;br /&gt;  &lt;br /&gt;There are still some customers who will refuse to use a credit card over the Internet, so you will need to be able to offer other forms of payment - e.g. money orders, echecks etc. &lt;/p&gt;        &lt;h2 align="left"&gt; What about disaster planning?    &lt;/h2&gt;        &lt;p align="left"&gt;A good shopping cart application will have excellent support for backing up files and allowing for export into a variety of formats. Flexible exporting functions will also be of value in the future should you need to change carts and wish to import existing data into a new application. &lt;/p&gt;        &lt;h2 align="left"&gt; What level of support will I need and receive?    &lt;/h2&gt;        &lt;p align="left"&gt;All shopping cart providers will tell you that their software is simple to install and configure. Few will be actually correct in making that statement. If you don't have the technical expertise to configure your shopping cart, get quotes from the company or a third party contractor to undertake this work for you.&lt;br /&gt;  &lt;br /&gt;Test out the support system by sending a query to the sales department - if they don't respond quickly this is usually a good indicator that after sales support will be even worse!&lt;br /&gt;  &lt;br /&gt;Also, read the fine print before parting with your hard earned cash - you may find that technical support will be charged out per incident.&lt;br /&gt;  &lt;br /&gt;Some shopping cart software companies also offer user forums as part of their service. This is an excellent bonus. If you are having problems with setting up your scripts, no doubt someone else has experienced the same issues and may be willing to help you out.&lt;br /&gt;  &lt;br /&gt;Be sure to review the company's "bug" policy; i.e. if a error in the software is fixed and an updated version is released, will you be entitled to recieve that upgrade or patch at no cost.&lt;br /&gt;  &lt;br /&gt;While I am all for supporting the solo programmers, a shopping cart is so crucial that it may not be wise to purchase a product from a one-man operation as customer support may not be efficient.&lt;br /&gt;&lt;/p&gt;&lt;h2 align="left"&gt; Remotely or locally hosted shopping cart?    &lt;/h2&gt;        &lt;p align="left"&gt;Some shopping cart programs can be purchased as stand alone programs or as pay per month services hosted on another companies' server. Remotely hosted options usually allow for extensive customization of pages to fit in with your sites look and feel.  &lt;/p&gt;        &lt;p align="left"&gt;&lt;b&gt;&lt;i&gt;Remote hosting advantages &lt;/i&gt;&lt;/b&gt;&lt;br /&gt;  &lt;br /&gt;Fast implementation, secure connection supplied, monitoring of service and usually many other features are offered as part of the service. Because the cart is actually hosted on another server, you can also save on bandwidth charges - especially if your products are soft goods and delivered online.&lt;br /&gt;  &lt;br /&gt;Some remotely hosted shopping carts are in effect total marketing solutions, containing options to run affiliate programs and the ability to send sequential pre-defined messages to clients and leads. Some of these services are excellent for people 'testing the water' as they also include gateway services and even an Internet merchant account!  &lt;/p&gt;        &lt;p align="left"&gt; If you are looking for features without needing to spending thousands of dollars up front, remotely hosted may be the way to go. Plan on spending at least US$60 per month for these kinds of services. Compare prices carefully - I have seen one company charge US$200 a month for the same service provided by another for $US59 per month. Remember, this added recurring expense will need to be taken into account when establishing a price level for your products and services.&lt;br /&gt;  &lt;br /&gt;   &lt;b&gt;&lt;i&gt;Remote hosting disadvantages &lt;/i&gt;&lt;/b&gt;&lt;br /&gt;  &lt;br /&gt;What happens if the company goes belly up overnight? Remote hosting also tends to give you less control over how cart pages display. If you are going to use a remotely hosted service, check the company history carefully. Some operators have also been known to 'harvest' your client databases for spamming purposes. &lt;/p&gt;        &lt;p align="left"&gt; View some reviews of &lt;a href="http://www.tamingthebeast.net/tools/best-shopping-carts.htm"&gt;remotely    hosted shopping carts&lt;/a&gt;.&lt;br /&gt;  &lt;br /&gt;   &lt;b&gt;&lt;i&gt;Local hosting advantages&lt;/i&gt;&lt;br /&gt;   &lt;br /&gt; &lt;/b&gt; Total control over the software, no ongoing fees.&lt;br /&gt;  &lt;br /&gt;   &lt;b&gt;&lt;i&gt;Local hosting disadvantages&lt;/i&gt;&lt;/b&gt;    &lt;/p&gt;        &lt;p align="left"&gt; Time spent in installation, configuration and maintenance, greater initial outlay, requires SSL (Secure Sockets Layer) to be enabled on your site which usually incurs an extra charge per month. &lt;/p&gt;         View some reviews of &lt;a href="http://www.tamingthebeast.net/tools/best-shopping-carts.htm"&gt;locally    hosted shopping carts&lt;/a&gt;&lt;br /&gt;  &lt;br /&gt;As you can see, there is a lot to consider before purchasing shopping cart software or services. It is very important to remember that the shopping cart is only one part of your ecommerce arsenal. Without an effective payment gateway and Internet merchant account (sometimes these are combined), the cart is useless.&lt;br /&gt;  &lt;br /&gt;   Don't rush your decision to purchase based on marketing hype - the future of your business is at stake!&lt;br /&gt;&lt;br /&gt;Source: http://www.tamingthebeast.net&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6668046111988860920?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/11/shopping-carts-ecommerce-software.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-7182668140355696445</guid><pubDate>Wed, 05 Nov 2008 09:27:00 +0000</pubDate><atom:updated>2008-11-05T04:28:07.685-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Which Font Should I Use for My Web Page? Tips on Choosing Fonts for Your Website</title><description>It's true that preferences for visual appearance vary from person to person, so that one man's meat is another man's poison. However, where web pages are concerned, the range of fonts that webmasters can select for their pages are not as wide as you may think. Even if you were to have a million fonts installed on your computer, you are mostly limited by what your website users have installed on their computers. This article briefly discusses some of the things you should consider when selecting a font face for your website.&lt;br /&gt;Why You May Not Be Able to Use Your Favourite Font&lt;br /&gt;&lt;br /&gt;When you create a web page and specify a particular typeface (loosely called "font" here) for that page, the font is not embedded in your web page. All your web editor does is to put a reference to the font into the page. For example, if you create a web page that uses the Comic Sans font, then a modern web editor like Dreamweaver might insert the following line into the style sheet of your web page:&lt;br /&gt;font-family: "Comic Sans" ;&lt;br /&gt;&lt;br /&gt;The Comic Sans font itself is not embedded in the web page. If your visitor does not have that particular font, his/her browser will use some other font, even if it does not suit the content and design of your page.&lt;br /&gt;&lt;br /&gt;This is the reason why most webmasters choose commonly available typefaces and avoid esoteric ones that only few people have.&lt;br /&gt;Importance of Using Lists of Fonts&lt;br /&gt;&lt;br /&gt;When you specify a font for your web page, it is important that you do not just specify a single font, even if it is a font that you think that most people have, like the ubiquitous "Arial" font. If your visitor uses a different type of computer, such as a non-Windows computer, even fonts like Arial may not be available. Cascading Style Sheets, which is the underlying technology used by a web page to control its appearance, allow for web designers to specify a list of fonts to be used on a particular page. If the first font in that list is not available, the browser will try to use the next font specified, and so on.&lt;br /&gt;&lt;br /&gt;For example, the fonts used in all of thesitewizard.com's articles, including the one you are reading, are specified as follows:&lt;br /&gt;font-family: Arial, Helvetica, sans-serif ;&lt;br /&gt;&lt;br /&gt;This means that if a computer has the Arial font installed, a browser is to use that font to render the pages on the site. Otherwise, it will try to use the Helvetica font. If the latter is also not available, then it should just use any sans serif font it can find.&lt;br /&gt;&lt;br /&gt;(For those not familiar with the terminology, "serif" fonts are those that have little hook-like lines at the ends of the main strokes of each character. For example, the Times New Roman font, found in Windows system, is a serif font. "Sans serif" fonts are those without the small hook-like strokes. Well known sans serif typefaces include Arial and Helvetica.)&lt;br /&gt;&lt;br /&gt;I chose these three items to place in my list of fonts to use for thesitewizard.com's pages because they are somewhat similar to each other. Or rather, Arial, which is a sort of poor man's version of Helvetica, looks almost the same as Helvetica. This way, I can be sure that if a particular computer only has Helvetica and not Arial, my page will still look more or less the way I intended, and things that I carefully aligned will not go out of alignment which may happen if a fatter or thinner typeface is used.&lt;br /&gt;&lt;br /&gt;However, if the user does not have either of these fonts, then all bets are off. The browser can use any other sans serif font it finds on the system. This probably means that on such a system, the appearance of my web page will differ somewhat from my intended design.&lt;br /&gt;Most Commonly-Used Lists of Fonts&lt;br /&gt;&lt;br /&gt;In general, if you want to create a web page that looks mostly the same no matter what sort of computer your visitors use, it's best to think of three groups of fonts.&lt;br /&gt;&lt;br /&gt;   1.&lt;br /&gt;      Sans Serif Fonts&lt;br /&gt;&lt;br /&gt;      Many websites tend to use one of the following series of fonts mainly because most people find the sans serif fonts easier to read on a computer monitor.&lt;br /&gt;          *&lt;br /&gt;            Arial, Helvetica, sans-serif&lt;br /&gt;&lt;br /&gt;            As mentioned earlier, this is the combination I use in most of my sites, including thesitewizard.com, thefreecountry.com and howtohaven.com. Arial and Helvetica look very similar to each other, and to the average casual reader, may even be indistinguishable. Between the systems that have the Arial font and those with the Helvetica font, I think this combination basically covers most, if not all, commercially sold operating systems.&lt;br /&gt;&lt;br /&gt;            Some people prefer the combination "Helvetica, Arial, sans-serif", so that if the Helvetica typeface is available, it will be used in preference to Arial. These people probably have Helvetica installed on their systems and find it preferable to Arial.&lt;br /&gt;          *&lt;br /&gt;            Verdana, Arial, Helvetica, sans-serif&lt;br /&gt;&lt;br /&gt;            Verdana looks somewhat like Arial, but is larger, wider and spaces the characters further apart from each other. In theory, this is supposed to improve legibility, but in practice, some people find that it decreases the speed at which they can read a block of text since the bigger spaces between words make it harder for them to visually scan the text.&lt;br /&gt;&lt;br /&gt;            Verdana is installed by default only on Windows systems, so if a person uses another system that does not have Verdana installed, the next font in the list will probably be used.&lt;br /&gt;   2.&lt;br /&gt;      Serif Fonts&lt;br /&gt;&lt;br /&gt;      Although not many sites use serif fonts, since they seem to be harder to read on a computer screen, if such fonts are used, the combination most commonly listed is:&lt;br /&gt;      font-family: "Times New Roman", Times, serif ;&lt;br /&gt;&lt;br /&gt;   3.&lt;br /&gt;      Monospace Fonts&lt;br /&gt;&lt;br /&gt;      Monospace fonts, where the width of every single character is the same regardless of whether the character is a wide one like "w" or a thin one like "i", are commonly used on the web for source code listings. For example, most of the code listings on thesitewizard.com employ the following list:&lt;br /&gt;      font-family: "Courier New", Courier, monospace;&lt;br /&gt;&lt;br /&gt;      In fact, if you look carefully at the list in the box above, you will see that it is rendered using that very series. If you are reading this on Windows, and have not removed the Courier New font, it will be displayed in that typeface.&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-7182668140355696445?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/11/which-font-should-i-use-for-my-web-page.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-4336565350485826285</guid><pubDate>Mon, 03 Nov 2008 12:47:00 +0000</pubDate><atom:updated>2008-11-05T04:26:53.777-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><category domain="http://www.blogger.com/atom/ns#">SEO</category><title>Introduction to "robots.txt"</title><description>Introduction to "robots.txt"&lt;br /&gt;&lt;br /&gt;There is a hidden, relentless force that permeates the web and its billions of web pages and files, unbeknownst to the majority of us sentient beings. I'm talking about search engine crawlers and robots here. Every day hundreds of them go out and scour the web, whether it's Google trying to index the entire web, or a spam bot collecting any email address it could find for less than honorable intentions. As site owners, what little control we have over what robots are allowed to do when they visit our sites exist in a magical little file called "robots.txt."&lt;br /&gt;&lt;br /&gt;"Robots.txt" is a regular text file that through its name, has special meaning to the majority of "honorable" robots on the web. By defining a few rules in this text file, you can instruct robots to not crawl and index certain files, directories within your site, or at all. For example, you may not want Google to crawl the /images directory of your site, as it's both meaningless to you and a waste of your site's bandwidth. "Robots.txt" lets you tell Google just that.&lt;br /&gt;&lt;br /&gt;Creating your "robots.txt" file&lt;br /&gt;&lt;br /&gt;So lets get moving. Create a regular text file called "robots.txt", and make sure it's named exactly that. This file must be uploaded to the root accessible directory of your site, not a subdirectory (ie: http://www.mysite.com but NOT http://www.mysite.com/stuff/). It is only by following the above two rules will search engines interpret the instructions contained in the file. Deviate from this, and "robots.txt" becomes nothing more than a regular text file, like Cinderella after midnight.&lt;br /&gt;&lt;br /&gt;Now that you know what to name your text file and where to upload it, you need to learn what to actually put in it to send commands off to search engines that follow this protocol (formally the "Robots Exclusion Protocol"). The format is simple enough for most intents and purposes: a USERAGENT line to identify the crawler in question followed by one or more DISALLOW: lines to disallow it from crawling certain parts of your site.&lt;br /&gt;&lt;br /&gt;1) Here's a basic "robots.txt":&lt;br /&gt;&lt;br /&gt;User-agent: *&lt;br /&gt;Disallow: /&lt;br /&gt;&lt;br /&gt;With the above declared, all robots (indicated by "*") are instructed to not index any of your pages (indicated by "/"). Most likely not what you want, but you get the idea.&lt;br /&gt;&lt;br /&gt;2) Lets get a little more discriminatory now. While every webmaster loves Google, you may not want Google's Image bot crawling your site's images and making them searchable online, if just to save bandwidth. The below declaration will do the trick:&lt;br /&gt;&lt;br /&gt;User-agent: Googlebot-Image&lt;br /&gt;Disallow: /&lt;br /&gt;&lt;br /&gt;3) The following disallows all search engines and robots from crawling select directories and pages:&lt;br /&gt;&lt;br /&gt;User-agent: *&lt;br /&gt;Disallow: /cgi-bin/&lt;br /&gt;Disallow: /privatedir/&lt;br /&gt;Disallow: /tutorials/blank.htm&lt;br /&gt;&lt;br /&gt;4) You can conditionally target multiple robots in "robots.txt." Take a look at the below:&lt;br /&gt;&lt;br /&gt;User-agent: *&lt;br /&gt;Disallow: /&lt;br /&gt;User-agent: Googlebot&lt;br /&gt;Disallow: /cgi-bin/&lt;br /&gt;Disallow: /privatedir/&lt;br /&gt;&lt;br /&gt;This is interesting- here we declare that crawlers in general should not crawl any parts of our site, EXCEPT for Google, which is allowed to crawl the entire site apart from /cgi-bin/ and /privatedir/. So the rules of specificity apply, not inheritance.&lt;br /&gt;&lt;br /&gt;5) There is a way to use Disallow: to essentially turn it into "Allow all", and that is by not entering a value after the semicolon(:):&lt;br /&gt;&lt;br /&gt;User-agent: *&lt;br /&gt;Disallow: /&lt;br /&gt;User-agent: ia_archiver&lt;br /&gt;Disallow:&lt;br /&gt;&lt;br /&gt;Here I'm saying all crawlers should be prohibited from crawling our site, except for Alexa, which is allowed.&lt;br /&gt;&lt;br /&gt;6) Finally, some crawlers now support an additional field called "Allow:", most notably, Google. As its name implies, "Allow:" lets you explicitly dictate what files/folders can be crawled. However, this field is currently not part of the "robots.txt" protocol, so my recommendation is to use it only if absolutely needed, as it might confuse some less intelligent crawlers.&lt;br /&gt;&lt;br /&gt;Per Google's FAQs for webmasters, the below is the preferred way to disallow all crawlers from your site EXCEPT Google:&lt;br /&gt;&lt;br /&gt;User-agent: *&lt;br /&gt;Disallow: /&lt;br /&gt;User-agent: Googlebot&lt;br /&gt;Allow: /&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-4336565350485826285?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/11/introduction-to-robotstxt.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-4922444118385719282</guid><pubDate>Fri, 26 Sep 2008 05:45:00 +0000</pubDate><atom:updated>2008-09-26T01:57:25.239-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Web Hosting</category><category domain="http://www.blogger.com/atom/ns#">Mysql</category><title /><description>&lt;h1  style="font-family:lucida grande;"&gt;&lt;span style="font-size:100%;"&gt;How to Install and Configure PHP 5 to Run with Apache on Windows&lt;/span&gt;&lt;/h1&gt;&lt;span style="font-family: lucida grande;font-size:85%;" &gt;Many web developers want to run Apache and PHP on their own computer since it allows them to easily test their scripts and programs before they put them "live" on the Internet. This article gives a step by step guide on how you can install and configure PHP5 to work together with the Apache HTTP Server on Windows. &lt;/span&gt;  &lt;p style="font-family: lucida grande;"&gt; If you have not already installed Apache on your machine, check out one of the guides listed below. This "How To" guide assumes that you have already completed installing Apache. &lt;/p&gt;  &lt;ul style="font-family: lucida grande;"&gt;&lt;li&gt;&lt;p&gt; If you are using Apache 1.3.x, see the guide &lt;a href="http://www.thesitewizard.com/archive/apache.shtml" target="_top"&gt;How to Install the Apache Web Server 1.x on Windows&lt;/a&gt;. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt; If you plan to use one of the Apache 2 web servers, see the tutorial &lt;a href="http://www.thesitewizard.com/apache/install-apache-2-windows.shtml" target="_top"&gt;How to Install and Configure Apache 2 on Windows&lt;/a&gt; instead. &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-family: lucida grande;"&gt; Note: those planning to install PHP 4 on Apache 1.x should read my article &lt;a href="http://www.thesitewizard.com/archive/php4install.shtml" target="_top"&gt;How to Install and Configure PHP4 to Run with Apache on Windows&lt;/a&gt; instead. &lt;/p&gt;  &lt;h2 style="font-family: lucida grande;"&gt;Steps to Setting Up PHP 5&lt;/h2&gt;  &lt;ol style="font-family: lucida grande;"&gt;&lt;li&gt;&lt;h3&gt;Download PHP 5&lt;/h3&gt; &lt;p&gt; Before you begin, get a copy of PHP 5 from &lt;a href="http://www.php.net/downloads.php"&gt;the PHP download page&lt;/a&gt;. In particular, download the zip package from the "Windows Binaries" section - that is, don't get the installer. For example, select the package labelled "PHP 5.2.5 zip package" if 5.2.5 is the current version. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Install PHP 5&lt;/h3&gt; &lt;p&gt;Create a folder on your hard disk for PHP. I suggest "c:\php" although you can use other names if you wish. Personally though, I prefer to avoid names with spaces in it, like "c:\Program Files\php" to avoid potential problems with programs that cannot handle such things. I will assume that you used c:\php in this tutorial. &lt;/p&gt; &lt;p&gt; Extract all the files from the zip package into that folder. To do that simply double-click the zip file to open it, and drag all the files and folders to c:\php. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Upgraders: Remove the Old PHP.INI File from Your Windows Directory&lt;/h3&gt; &lt;p&gt;If you are upgrading to PHP 5 from an older version, go to your windows directory, typically c:\windows, and delete any php.ini file that you have previously placed there. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Configuring PHP&lt;/h3&gt; &lt;p&gt;Go to the c:\php folder and make a copy of the file "php.ini-recommended". Name the new file "php.ini". That is, you should now have a file "c:\php\php.ini", identical in contents with "c:\php\php.ini-recommended". &lt;/p&gt; &lt;p&gt;Note: if you are using Apache 1, you should either move the php.ini file to your windows directory, "C:\Windows" on most systems, or configure your PATH environment variable to include "c:\php". If you don't know how to do the latter, just move the php.ini file to the "c:\windows" folder. You do not have to do this if you are using Apache 2, since we will include a directive later in the Apache 2 configuration file to specify the location of the php.ini file. &lt;/p&gt; &lt;p&gt; Use an &lt;a href="http://www.thefreecountry.com/programming/editors.shtml" target="_top"&gt;ASCII text editor&lt;/a&gt; (such as Notepad, which can be found in the Accessories folder of your Start menu) to open "php.ini". You may need to make the following changes to the file, depending on your requirements: &lt;/p&gt;  &lt;ol class="content2"&gt;&lt;li&gt;&lt;h3&gt;Enable Short Open Tags&lt;/h3&gt; &lt;p&gt; Search for the line that reads: &lt;/p&gt; &lt;div class="codeblock"&gt; short_open_tag = Off &lt;/div&gt; &lt;p&gt;If short_open_tag is set to "off", tags like "commercial web hosts that support PHP have no issues with your scripts using " &lt;/p&gt;&lt;div class="codeblock"&gt; short_open_tag = On &lt;/div&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Magic Quotes&lt;/h3&gt; &lt;p&gt;By default, input data is not escaped with backslashes. That is, if your visitors enter an inverted comma (single quote) into your web form, the script will receive that unadorned inverted comma (single quote). This is for the most part desirable unless you special requirements. If you want your input data to have the backslash ("\") prefix, such as, for example, to mimic your web host's settings, search for the following: &lt;/p&gt; &lt;div class="codeblock"&gt; magic_quotes_gpc = Off &lt;/div&gt; &lt;p&gt; and replace it with: &lt;/p&gt; &lt;div class="codeblock"&gt; magic_quotes_gpc = On &lt;/div&gt; &lt;p&gt; Do not do this unless your web host has this setting as well. Even with the setting of "Off", you can still use the addslashes() function in PHP to add the slashes for the specific pieces of data that need them. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Register Globals&lt;/h3&gt; &lt;p&gt; A number of older scripts assume that all data sent by a form will automatically have a PHP variable of the same name. For example, if your form has an input field with a name of "something", older PHP scripts assume that the PHP processor will automatically create a variable called $something that contains the value set in that field. &lt;/p&gt; &lt;p&gt; If you are running such scripts, you will need to look for the following field: &lt;/p&gt; &lt;div class="codeblock"&gt; register_globals = Off &lt;/div&gt; &lt;p&gt; and change it to the following: &lt;/p&gt; &lt;div class="codeblock"&gt; register_globals = On &lt;/div&gt; &lt;p&gt; WARNING: Do NOT do this unless you have third party scripts that need it. When writing new scripts, it's best to always code with the assumption that the register_globals item is set to "Off". &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Display Errors&lt;/h3&gt; &lt;p&gt;On a "live" website, you typically want errors in your script to be silently logged to a PHP error file. On your own local machine, however, while you are testing and debugging a PHP script, it is probably more convenient to have error messages sent to the browser window when they appear. This way, you won't miss errors if you forget to check the error log file. &lt;/p&gt; &lt;p&gt; If you want PHP to display error messages in your browser window, look for the following: &lt;/p&gt; &lt;div class="codeblock"&gt; display_errors = Off &lt;/div&gt; &lt;p&gt; And change it to: &lt;/p&gt; &lt;div class="codeblock"&gt; display_errors = On &lt;/div&gt; &lt;p&gt; This value should always be set to "Off" for a "live" website. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;SMTP Server&lt;/h3&gt; &lt;p&gt; If your script uses the mail() function, and you want the function to successfully send mail on your local machine, look for the following section: &lt;/p&gt; &lt;div class="codeblock"&gt; [mail function]&lt;br /&gt;; For Win32 only.&lt;br /&gt;SMTP = localhost&lt;br /&gt;smtp_port = 25&lt;br /&gt;&lt;br /&gt;; For Win32 only.&lt;br /&gt;;sendmail_from = me@example.com&lt;br /&gt;&lt;/div&gt; &lt;p&gt; Change it to point to your SMTP server and email account. For example, if your SMTP server is "mail.example.com" and your email address is "youremail@example.com", change the code to: &lt;/p&gt; &lt;div class="codeblock"&gt; [mail function]&lt;br /&gt;SMTP = mail.example.com&lt;br /&gt;smtp_port = 25&lt;br /&gt;sendmail_from = youremail@example.com &lt;/div&gt; &lt;p&gt; Note that after you do this, when your script tries to use the mail() function, you will need to be connected to your ISP for the function to succeed. If you do not modify the above lines and attempt to use mail() in your script, the function will return a fail code, and display (or log) the error (depending on how you configure php.ini to handle errors). &lt;/p&gt; &lt;p&gt; (Note that in Apache 1.x, the smtp_port line may not be present. If so, don't include it.) &lt;/p&gt; &lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;/ol&gt;  &lt;h2 style="font-family: lucida grande;"&gt;How to Configure Apache for PHP 5&lt;/h2&gt;  &lt;p style="font-family: lucida grande;"&gt;There are two ways to setup Apache to use PHP: the first is to configure it to load the PHP interpreter as an Apache module. The second is to configure it to run the interpreter as a CGI binary. I will supply information for how you can accomplish both, but you should only implement one of these methods. Choose the module method if your web host also installed PHP as an Apache module, and use the CGI method if they have implemented it to run as a CGI binary. &lt;/p&gt;  &lt;ol style="font-family: lucida grande;" class="content2"&gt;&lt;li&gt;&lt;h3&gt;Running PHP 5 as an Apache Module&lt;/h3&gt; &lt;p&gt;To configure Apache to load PHP as a module to parse your PHP scripts, use an ASCII text editor to open the Apache configuration file, "httpd.conf". If you use Apache 1.x, the file is found in "c:\Program Files\Apache Group\Apache\conf\". Apache 2.0.x users can find it in "C:\Program Files\Apache Group\Apache2\conf\" while Apache 2.2.x users can find it in "C:\Program Files\Apache Software Foundation\Apache2.2\conf\". Basically, it's in the "conf" folder of wherever you installed Apache. &lt;/p&gt; &lt;p&gt; Search for the section of the file that has a series of "LoadModule" statements. Statements prefixed by the hash "#" sign are regarded as having been commented out. &lt;/p&gt; &lt;p&gt; If you are using Apache 1.x, add the following line after all the LoadModule statements: &lt;/p&gt; &lt;div class="codeblock"&gt; LoadModule php5_module "c:/php/php5apache.dll" &lt;/div&gt; &lt;p&gt; If you are using Apache 2.0.x, add the following line after all the LoadModule statements: &lt;/p&gt; &lt;div class="codeblock"&gt; LoadModule php5_module "c:/php/php5apache2.dll" &lt;/div&gt; &lt;p&gt; If you are using Apache 2.2.x, add the following line instead: &lt;/p&gt; &lt;div class="codeblock"&gt; LoadModule php5_module "c:/php/php5apache2_2.dll" &lt;/div&gt; &lt;p&gt;Note carefully the use of the forward slash character ("/") instead of the traditional Windows backslash ("\"). This is not a typographical error. &lt;/p&gt; &lt;p&gt;If you are using Apache 1.x, search for the series of "AddModule" statements, and add the following line after all of them. You do not have to do this in any of the Apache 2 series of web servers. &lt;/p&gt; &lt;div class="codeblock"&gt; AddModule mod_php5.c &lt;/div&gt; &lt;p&gt;Next, search for "AddType" in the file, and add the following line after the last "AddType" statement. Do this whichever version of Apache you are using. For Apache 2.2.x, you can find the "AddType" lines in the &lt;ifmodule&gt; section. Add the line just before the closing &lt;/ifmodule&gt; for that section. &lt;/p&gt; &lt;div class="codeblock"&gt; AddType application/x-httpd-php .php &lt;/div&gt; &lt;p&gt; If you need to support other file types, like ".phtml", simply add them to the list, like this: &lt;/p&gt; &lt;div class="codeblock"&gt; AddType application/x-httpd-php .phtml &lt;/div&gt; &lt;p&gt;Finally, for those using one of the Apache 2 versions, you will need to indicate the location of your PHP ini file. Add the following line to the end of your httpd.conf file. &lt;/p&gt; &lt;div class="codeblock"&gt; PHPIniDir "c:/php" &lt;/div&gt; &lt;p&gt;Of course if you used a different directory for your PHP installation, you will need to change "c:/php" to that path. Remember to use the forward slash ("/") here again. &lt;/p&gt; &lt;p&gt;If you are using Apache 1, you will have already placed your php.ini file in either the Windows directory or somewhere in your PATH, so PHP should be able to find it by itself. You can of course do the same if you are using Apache 2, but I find modifying the Apache configuration file a better solution than cluttering your c:\windows directory or your PATH variable. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Running PHP 5 as a CGI Binary&lt;/h3&gt; &lt;p&gt;If you have configured PHP 5 to run as an Apache module, skip forward to the next section. This section is for those who want to configure PHP to run as a CGI binary. &lt;/p&gt; &lt;p&gt; The procedure is the same whether you are using the Apache 1.x series or one of the 2.x series. &lt;/p&gt; &lt;p&gt;Search for the portion of your Apache configuration file which has the ScriptAlias section. Add the line from the box below immediately after the ScriptAlias line for "cgi-bin". If you use Apache 2.2.x, make sure that the line goes before the closing  for that &lt;ifmodule&gt; section. &lt;/ifmodule&gt;&lt;/p&gt; &lt;p&gt; Note that if you installed PHP elsewhere, such as "c:\Program Files\php\", you should substitute the appropriate path in place of "c:/php/" (for example, "c:/Program Files/php/"). &lt;/p&gt; &lt;div class="codeblock"&gt; ScriptAlias /php/ "c:/php/" &lt;/div&gt; &lt;p&gt;Apache needs to be configured for the PHP MIME type. Search for the "AddType" comment block explaining its use, and add the AddType line in the box below after it. For Apache 2.2.x, you can find the AddType lines in the &lt;ifmodule&gt; section. Add the following line just before the closing &lt;/ifmodule&gt; for that section. &lt;/p&gt; &lt;div class="codeblock"&gt; AddType application/x-httpd-php .php &lt;/div&gt; &lt;p&gt; As in the case of running PHP as an Apache module, you can add whatever extensions you want Apache to recognise as PHP scripts, such as: &lt;/p&gt; &lt;div class="codeblock"&gt; AddType application/x-httpd-php .phtml &lt;/div&gt; &lt;p&gt;Next, you will need to tell the server to execute the PHP executable each time it encounters a PHP script. Add the following somewhere in the file, such as after the comment block explaining "Action". If you use Apache 2.2.x, you can simply add it immediately after your "AddType" statement above; there's no "Action" comment block in Apache 2.2.x. &lt;/p&gt; &lt;div class="codeblock"&gt; Action application/x-httpd-php "/php/php-cgi.exe" &lt;/div&gt; &lt;p&gt; Note: the "/php/" portion will be recognised as a ScriptAlias, a sort of macro which will be expanded to "c:/php/" (or "c:/Program Files/php/" if you installed PHP there) by Apache. In other words, don't put "c:/php/php.exe" or "c:/Program Files/php/php.exe" in that directive, put "/php/php-cgi.exe". &lt;/p&gt; &lt;p&gt; If you are using Apache 2.2.x, look for the following section in the httpd.conf file: &lt;/p&gt; &lt;div class="codeblock"&gt; &lt;directory&gt;&lt;br /&gt;   AllowOverride None&lt;br /&gt;   Options None&lt;br /&gt;   Order allow,deny&lt;br /&gt;   Allow from all&lt;br /&gt;&lt;/directory&gt; &lt;/div&gt; &lt;p&gt; Add the following lines immediately after the section you just found. &lt;/p&gt; &lt;div class="codeblock"&gt; &lt;directory&gt;&lt;br /&gt;   AllowOverride None&lt;br /&gt;   Options None&lt;br /&gt;   Order allow,deny&lt;br /&gt;   Allow from all&lt;br /&gt;&lt;/directory&gt; &lt;/div&gt; &lt;/li&gt;&lt;li&gt;&lt;h3&gt;Configuring the Default Index Page&lt;/h3&gt; &lt;p&gt; This section applies to all users, whether you are using PHP as a module or as a CGI binary. &lt;/p&gt; &lt;p&gt;If you create a file index.php, and want Apache to load it as the directory index page for your website, you will have to add another line to the "httpd.conf" file. To do this, look for the line in the file that begins with "DirectoryIndex" and add "index.php" to the list of files on that line. For example, if the line used to be: &lt;/p&gt; &lt;div class="codeblock"&gt; DirectoryIndex index.html &lt;/div&gt; &lt;p&gt; change it to: &lt;/p&gt; &lt;div class="codeblock"&gt; DirectoryIndex index.php index.html &lt;/div&gt; &lt;p&gt;The next time you access your web server with just a directory name, like "localhost" or "localhost/directory/", Apache will send whatever your index.php script outputs, or if index.php is not available, the contents of index.html. &lt;/p&gt; &lt;/li&gt;&lt;/ol&gt;  &lt;h2 style="font-family: lucida grande;"&gt;Restart the Apache Web Server&lt;/h2&gt;  &lt;p style="font-family: lucida grande;"&gt;Restart your Apache server. This is needed because Apache needs to read the new configuration directives for PHP that you have placed into the httpd.conf file. The command to do this for the Apache 2.x series can be found in the Start menu: Start -&gt; Programs -&gt; Apache HTTP Server -&gt; Control Apache Server -&gt; Restart. &lt;/p&gt;  &lt;h2 style="font-family: lucida grande;"&gt;Testing Your PHP Installation&lt;/h2&gt;  &lt;p style="font-family: lucida grande;"&gt; Create a PHP file with the following line: &lt;/p&gt; &lt;div style="font-family: lucida grande;" class="codeblock"&gt;  &lt;/div&gt;  &lt;p style="font-family: lucida grande;"&gt;Save the file as "test.php" or any other name that you fancy, but with the ".php" extension, into your Apache htdocs directory. If you are using Notepad, remember to save as "test.php" &lt;strong&gt;with the quotes&lt;/strong&gt;, or the software will add a ".txt" extension behind your back. &lt;/p&gt;  &lt;p style="font-family: lucida grande;"&gt; Open your browser and access the file by typing "localhost/test.php" into your browser's address bar. Do not open the file directly on the hard disk - you'll only see the words you typed in earlier. You need to use the above URL so that the browser will try to access your Apache web server, which in turn runs PHP to interpret your script. &lt;/p&gt;  &lt;p style="font-family: lucida grande;"&gt;If all goes well, you should see a pageful of information about your PHP setup. Congratulations - you have successfully installed PHP and configured Apache to work with it. You can upload this same file, test.php, to your web host and run it there to see how your web host has set up his PHP, so that you can mimic it on your own machine. &lt;/p&gt;  &lt;p style="font-family: lucida grande;"&gt;If for some reason it does not work, check to see whether your PHP setup or your Apache setup is causing the problem. To do this, open a Command Prompt window (found in the "Accessories" folder of your "Start" menu) and run php-cgi.exe on test.php with a command line like "&lt;kbd&gt;c:\php\php-cgi test.php&lt;/kbd&gt;" (without the quotes). &lt;/p&gt;  &lt;p style="font-family: lucida grande;"&gt; If invoking PHP from the command line causes a large HTML file with all the PHP configuration information to be displayed, then your PHP set up is fine. The problem probably lies with your Apache configuration. Make sure that you have restarted the Apache server after making configuration changes. Verify that you have configured Apache correctly by looking over, again, the instructions on this page and the steps given in &lt;a href="http://www.thesitewizard.com/archive/apache.shtml" target="_top"&gt;How to Install and Configure Apache 1.x for Windows&lt;/a&gt; (for Apache 1.x users) or &lt;a href="http://www.thesitewizard.com/apache/install-apache-2-windows.shtml" target="_top"&gt;How to Install and Configure Apache 2 on Windows&lt;/a&gt; (for Apache 2.x users).&lt;br /&gt;&lt;/p&gt;&lt;p style="font-family: lucida grande;"&gt;Source : &lt;a style="font-family: lucida grande;" href="http://www.thesitewizard.com/" target="_top"&gt;thesitewizard.com&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-4922444118385719282?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/how-to-install-and-configure-php-5-to.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-4890737362229014821</guid><pubDate>Thu, 25 Sep 2008 10:23:00 +0000</pubDate><atom:updated>2008-09-25T06:28:19.789-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Web Hosting</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title /><description>&lt;span style="font-size:130%;"&gt;&lt;a style="font-weight: bold;" href="http://bharathtemplates.com/"&gt;How to Choose a Domain Name&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;In the internet business, the domain name could be the beginning or the end of your business. Choosing your domain name wisely is essential to be ahead in the market. There are 2 types of domain names.&lt;br /&gt;1. Keyword rich Product related domains For example, webdesignuk.com, smallbusinessreview.com etc. These domains clearly give you an idea of what the website is all about from the domain name itself. They are keyword rich and often rank well for the keywords in the domain if the site is optimized well. These websites usually fare well with most search engines.&lt;br /&gt;2. Brand named Domain names Yahoo for instance or Google is a brand name. The Name Google itself will not tell you what it is. But who doesn’t know Google and yahoo. Brand name domains are good once you are into brand marketing. It’s often a bad idea if you are a start up Website Company to invest into a brand name domain. It usually costs a lot for brand marketing and its altogether a different ball game.&lt;br /&gt;When choosing a domain name, make it as keyword rich as possible and also as short as possible. A domain name like makemoneyontheinternet.com is a great domain name but considering its length, it could just be bad. Limit your domain name length to as little as 10 to 12 characters. This would make your domain look good with the search engines. Also take enough time to choose your domain extension. If your domain is a .com it will have more chances to be found. .com domains are more preferred and will benefit you on the long run.&lt;br /&gt;&lt;br /&gt;Article Source: http://EzineArticles.com/?expert=Rajiv_Sahadevan&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-4890737362229014821?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/how-to-choose-domain-name-in-internet.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-7395447577786257448</guid><pubDate>Thu, 25 Sep 2008 10:13:00 +0000</pubDate><atom:updated>2008-11-11T01:50:38.344-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Web Hosting</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Payment Gateway Reviews in India</title><description>&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Cbeer%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C04%5Cclip_filelist.xml"&gt;&lt;link rel="Edit-Time-Data" href="file:///C:%5CDOCUME%7E1%5Cbeer%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C04%5Cclip_editdata.mso"&gt;&lt;!--[if !mso]&gt; &lt;style&gt; v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} &lt;/style&gt; &lt;![endif]--&gt;&lt;o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="country-region"&gt;&lt;/o:smarttagtype&gt;&lt;o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="place"&gt;&lt;/o:smarttagtype&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" latentstylecount="156"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if !mso]&gt;&lt;object classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id="ieooui"&gt;&lt;/object&gt; &lt;style&gt; st1\:*{behavior:url(#ieooui) } &lt;/style&gt; &lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} h2 	{mso-margin-top-alt:auto; 	margin-right:0in; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	mso-outline-level:2; 	font-size:18.0pt; 	font-family:"Times New Roman"; 	font-weight:bold;} a:link, span.MsoHyperlink 	{color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{color:purple; 	text-decoration:underline; 	text-underline:single;} p 	{mso-margin-top-alt:auto; 	margin-right:0in; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1581452153; 	mso-list-template-ids:-1613577538;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	mso-ansi-font-size:10.0pt; 	font-family:Symbol;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;h2&gt;&lt;a href="http://bharathtemplates.com/" title="Permanent Link to Payment Gateway Reviews in India"&gt;Payment Gateway Reviews in India&lt;/a&gt;&lt;/h2&gt; There are now many payment gateway options are available in &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;India&lt;/st1:place&gt;&lt;/st1:country-region&gt;. Some of these:  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;CCAvenue&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Payseal from ICICI Bank&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;EBS from UTI Bank&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;HDFC Bank&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;According my opinion CCAvenue is good payment gateway in &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;India&lt;/st1:place&gt;&lt;/st1:country-region&gt;. Hence their interface is very slow due to jsp page. But in this time they have lots of option for making payment.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;CCAvenue Accepts following Credit cards:&lt;/strong&gt;
&lt;br /&gt;VISA, AMERICAN EXPRESS, DINERS CLUB, CITIBANK E-CARDS and JCB CARDS&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;CCAvenue Accepts following Netbankings:&lt;/strong&gt;
&lt;br /&gt;CCAvenue has been approved as a Super/Master Merchant by Citibank, ICICI Bank, American Express, UTI Bank, IDBI Bank, Centurion Bank, Punjab National Bank, Oriental Bank of Commerce, Kotak Mahindra Bank, The Federal Bank, Bank of Rajasthan, IndusInd Bank and HDFC Bank.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;ICICI Bank (Payseal)&lt;/strong&gt; also good but they have stopped mastercard option for number of customer without any intimation. Also they have no ETA to start again. They accept Master &amp;amp; Visa Cards Only.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;EBS&lt;/strong&gt; also just started the payment gateway. They accept Master &amp;amp; Visa Credit cards. But i have checked on some reference websites which they have given, thier processing is very slow, but they have assured me to resolve asap.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;HDFC Bank&lt;/strong&gt; also offering payment gateway, but its just biginning… Let’s see.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; ZNet &lt;st1:country-region st="on"&gt;India&lt;/st1:country-region&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-7395447577786257448?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/v-behaviorurldefaultvml-o.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-2844510181319360960</guid><pubDate>Thu, 25 Sep 2008 10:10:00 +0000</pubDate><atom:updated>2008-09-25T06:13:20.684-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title /><description>&lt;span style="font-weight: bold;"&gt;Basic website design tips&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Website building has become a common and essential knowledge to many people. Businesses, organisations and individuals have created websites either for commercial, or for personal recreational purposes.&lt;br /&gt;When it comes to website building, one should pay extra attention to the fine details. This is to make sure that it performs optimally. Here are some important tips to observe to make sure your website serves its function properly.&lt;br /&gt;1. Display simple and clear navigational menu&lt;br /&gt;Provide a simple and easy to understand navigation menu so that even someone who is not internet savvy will know how to use it. It is best to stay away from complicated multi-tiered dropdown menus. If your visitors don’t know how to navigate the site confidently, they will eventually leave it.&lt;br /&gt;2. Avoid using flash&lt;br /&gt;Where appropriate, avoid using flash, especially for the first introduction page. People have to download the Flash player beforehand before they can view Flash movies. Because of this, the number of visitors will decrease considerably because not everyone will be willing to download the Flash player just to view your website.&lt;br /&gt;3. Avoid using large graphic images Large graphic files take a long time to download and display.&lt;br /&gt;Usually, visitors do not have the patience to wait for more than several seconds for the site to display itself. For this reason, keep the graphic files as small as possible. It is a good practice to optimise images before uploading them onto the server. I use GIMP, the free image editor for reduction of image file size.&lt;br /&gt;4. Avoid using audio on your site&lt;br /&gt;Audio is subjective and therefore not all will like the kind of music that is playing on a website. However, if you insist on adding audio, make sure the visitor can control the volume, stop or pause the music.&lt;br /&gt;Well, these are some tips. They are by no means exhaustive, though. The key is to make the trip to your site as easy and as pleasant to the visitor as possible.&lt;br /&gt;&lt;br /&gt;Article Source: http://EzineArticles.com/?expert=Shen_Gerald&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-2844510181319360960?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/basic-website-design-tips-website.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-7333117220042409225</guid><pubDate>Thu, 25 Sep 2008 05:43:00 +0000</pubDate><atom:updated>2008-09-25T01:49:26.703-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Phoshop</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><category domain="http://www.blogger.com/atom/ns#">Thumbnails</category><title /><description>&lt;h2 style="color: rgb(204, 0, 0);"&gt;&lt;a href="http://www.bharathtemplates.com" rel="bookmark" title="Permanent Link to Enable Thumbnails For PSD Files"&gt;Enable Thumbnails For PSD Files&lt;/a&gt;&lt;/h2&gt;&lt;br /&gt;&lt;p&gt;Recently, I really got frustrated when I needed a quick preview of a PSD file, and the folder where it was saved was full of PSD files. I needed the file urgently. Then, I ended up opening each file manually to see what it was. Later, after I got through my work. I Googled some ways to overcome this problem in the future.&lt;/p&gt; &lt;p&gt;Adobe Bridge is good, and can be used to view what’s in the PSD file, but it eats half of my RAM, so I usually ignore it. After Googling for about an hour, I was finally able to have thumbnails instead of those blue feathers.&lt;/p&gt; &lt;p&gt;&lt;span id="more-776"&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;How To Enable Thumbnails For PSD Files&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;If you think this is going to be a long procedure, then you are wrong. It won’t even take 5 minutes to set up your PSD files to show the preview thumbnails. Simple follow the steps below.&lt;/p&gt;&lt;p&gt;First, make a &lt;em&gt;quick backup&lt;/em&gt; of your system using &lt;em&gt;System Restore&lt;/em&gt;. And &lt;a href="http://www.sizzledcore.com/2007/08/09/2-methods-to-backup-your-registry/" target="_blank"&gt;backup your registry&lt;/a&gt; too!&lt;/p&gt; &lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; Download &lt;strong&gt;psicon.dll&lt;/strong&gt; from &lt;a href="http://www.sizzledcore.com/wp-content/uploads/files/psicon.dll_for_PS.zip" target="_blank"&gt;here&lt;/a&gt; (it’s a zip file)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Unzip it anywhere in your PC (You should have 3 files. &lt;em&gt;psicon.dll, psicon.dll.reg&lt;/em&gt; and &lt;em&gt;read me.txt&lt;/em&gt;)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; Copy the psicon.dll to the following path:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;&lt;span class="postbody"&gt; &lt;pr&gt;C:\Program Files\Common Files\Adobe\Shell\&lt;/pr&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Remember, you might need to create the &lt;em&gt;Shell&lt;/em&gt; folder, in &lt;em&gt;Adobe&lt;/em&gt; directory.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt; After copying, execute the &lt;em&gt;psicon.dll.reg&lt;/em&gt; file.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;5.&lt;/strong&gt; Click OK, for the info window that pops up to tell us that the registry key has been copied.&lt;/p&gt; &lt;p&gt;Done. See, no more than 5 minutes! ;)&lt;/p&gt; &lt;p&gt;Go to any folder containing PSD files, and choose &lt;em&gt;Thumbnails&lt;/em&gt; from the &lt;em&gt;View&lt;/em&gt; menu. You should now be able to view the thumbnails for PSD files, just as you see thumbnails of images.&lt;/p&gt; &lt;p&gt;I hope you enjoyed this trick and it has been helpful to you. I’d love to see you again on my blog.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-7333117220042409225?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/enable-thumbnails-for-psd-files.html</link><author>noreply@blogger.com (Beermohamed .S)</author><enclosure url="http://www.sizzledcore.com/wp-content/uploads/files/psicon.dll_for_PS.zip" length="63061" type="application/zip" /><media:content url="http://www.sizzledcore.com/wp-content/uploads/files/psicon.dll_for_PS.zip" fileSize="63061" type="application/zip" /><itunes:subtitle>Enable Thumbnails For PSD Files Recently, I really got frustrated when I needed a quick preview of a PSD file, and the folder where it was saved was full of PSD files. I needed the file urgently. Then, I ended up opening each file manually to see what it </itunes:subtitle><itunes:author>noreply@blogger.com (Beermohamed .S)</itunes:author><itunes:summary>Enable Thumbnails For PSD Files Recently, I really got frustrated when I needed a quick preview of a PSD file, and the folder where it was saved was full of PSD files. I needed the file urgently. Then, I ended up opening each file manually to see what it was. Later, after I got through my work. I Googled some ways to overcome this problem in the future. Adobe Bridge is good, and can be used to view what’s in the PSD file, but it eats half of my RAM, so I usually ignore it. After Googling for about an hour, I was finally able to have thumbnails instead of those blue feathers. How To Enable Thumbnails For PSD Files If you think this is going to be a long procedure, then you are wrong. It won’t even take 5 minutes to set up your PSD files to show the preview thumbnails. Simple follow the steps below. First, make a quick backup of your system using System Restore. And backup your registry too! 1. Download psicon.dll from here (it’s a zip file) 2. Unzip it anywhere in your PC (You should have 3 files. psicon.dll, psicon.dll.reg and read me.txt) 3. Copy the psicon.dll to the following path: C:\Program Files\Common Files\Adobe\Shell\ Remember, you might need to create the Shell folder, in Adobe directory. 4. After copying, execute the psicon.dll.reg file. 5. Click OK, for the info window that pops up to tell us that the registry key has been copied. Done. See, no more than 5 minutes! ;) Go to any folder containing PSD files, and choose Thumbnails from the View menu. You should now be able to view the thumbnails for PSD files, just as you see thumbnails of images. I hope you enjoyed this trick and it has been helpful to you. I’d love to see you again on my blog.Hi Visit my Web Developers Page to know more http://www.sbeermohamed.co.nr http://beermohamed.blogspot.com</itunes:summary><itunes:keywords>Phoshop, Tips and Tricks, Thumbnails</itunes:keywords></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6584911292162365499</guid><pubDate>Wed, 24 Sep 2008 10:02:00 +0000</pubDate><atom:updated>2008-09-26T06:15:46.133-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Javascript</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><title /><description>&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;HTML and JavaScript inside blogger posts using custom display boxes&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt;It is very difficult for anyone using blogger blogs to show HTML codes and JavaScript inside the blog posts . You might have seen people showing the scripts in small display boxes of fixed length and width. Now after applying this blogger trick you will be able to show HTML and JavaScript inside blogger posts with custom display boxes .&lt;br /&gt;&lt;br /&gt;Click on layout of the blog in which  want show HTML or JAVA script  and now select edit HTML&lt;br /&gt;Before you apply any blogger trick ,remember to download and save your full template.&lt;br /&gt;Now tick the expand widget templates and move onto the selection shown below&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_pTUoyJDw9fM/SMfgwIXcAjI/AAAAAAAAAPQ/ykHq_YYJXB0/s1600-h/Display+boxes+and+HTML+codes+in+blogger+posts.JPG" rel="nofollow"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_pTUoyJDw9fM/SMfgwIXcAjI/AAAAAAAAAPQ/ykHq_YYJXB0/s400/Display+boxes+and+HTML+codes+in+blogger+posts.JPG" rel="nofollow" alt="" id="BLOGGER_PHOTO_ID_5244407408580362802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Otherwise you can press Cntrl+F and paste ]]&gt; on appearing search box then enter&lt;br /&gt;Paste the following code above the text appearing green and save the template&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;box&lt;br /&gt;{&lt;br /&gt;background:#efefef;&lt;br /&gt;border:1px solid #A6B0BF;&lt;br /&gt;font-size:120%;&lt;br /&gt;line-height:100%;&lt;br /&gt;overflow:auto;&lt;br /&gt;padding:10px;&lt;br /&gt;color:#000000 }&lt;br /&gt;pre:hover {&lt;br /&gt;border:1px solid #efefef;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;code {&lt;br /&gt;font-size:120%;&lt;br /&gt;text-align:left;&lt;br /&gt;margin:0;padding:0;&lt;br /&gt;color: #000000;}&lt;br /&gt;.clear { clear:both;&lt;br /&gt;overflow:hidden;&lt;br /&gt;}&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The above code is for drawing a display box inside the blogger post to show HTML and java scripts.You can change the length ,width ,size and color of the box by editing the code .After adding this code you can call the display box anytime into your post by following next step.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_6WWiiz9y2mM/SNol1WaVvBI/AAAAAAAAAD4/xqGqMdFR6vY/s1600-h/untitled.JPG"&gt;&lt;img style="cursor: pointer; width: 564px; height: 90px;" src="http://3.bp.blogspot.com/_6WWiiz9y2mM/SNol1WaVvBI/AAAAAAAAAD4/xqGqMdFR6vY/s320/untitled.JPG" alt="" id="BLOGGER_PHOTO_ID_5249549914133085202" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Before you  add "your HTML or JAVA script "  make it post friendly by following this&lt;a href="http://sbeermohamed.co.nr/" rel="nofollow"&gt;&lt;span style="font-weight: bold;"&gt; &lt;span style="color: rgb(255, 102, 0);"&gt;link&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Inside the box provided paste the script and click make it friendly&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Making the script postable is the only requirement if you plan to show the HTML or JAVA script alone  without a box.&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6584911292162365499?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/09/html-and-javascript-inside-blogger.html</link><author>noreply@blogger.com (Beermohamed .S)</author><media:thumbnail url="http://2.bp.blogspot.com/_pTUoyJDw9fM/SMfgwIXcAjI/AAAAAAAAAPQ/ykHq_YYJXB0/s72-c/Display+boxes+and+HTML+codes+in+blogger+posts.JPG" height="72" width="72" /></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-9104941794482195848</guid><pubDate>Thu, 07 Aug 2008 04:55:00 +0000</pubDate><atom:updated>2008-09-22T01:02:21.580-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Javascript</category><title /><description>&lt;h1&gt;Javascript Magnification on your Website.&lt;/h1&gt;&lt;br /&gt;Note that: Microsoft's release of internet Explorer v7 in November 2006 has a built in zoom magnifier so in the long run the zoom magnifier will be of use to fewer and fewer visitors.&lt;br /&gt;&lt;br /&gt;This page gives some simple instructions on how to set-up a Javascript zoom magnification function on a web site. So if you have a web site and a basic knowledge of html web pages read on.&lt;h2&gt;&lt;a name="action"&gt;Javascript Zoom Magnifier in Action.&lt;/a&gt;&lt;/h2&gt; Like to see the zoom magnify function in action, click the +10% or -10% button in the top left of the page. Can't see them? That means your not running Internet Explorer or have Javascript turned off. &lt;p&gt; For anyone with a web site this is a useful utility to allow most visitors to easily change the text and graphic size in a single click. &lt;/p&gt;&lt;h2&gt;&lt;a name="freeware"&gt;The Zoom Magnifier i&lt;/a&gt;&lt;a name="freeware"&gt;s Freeware.&lt;/a&gt;&lt;/h2&gt; The Javascript code on the 'zoom.js' link and its 3 variants is free for any use.  &lt;h2&gt;&lt;a name="limit"&gt;Magnifying Limitations.&lt;/a&gt;&lt;/h2&gt; To use the magnifier, there are th ree main limitations:-  &lt;ul&gt;&lt;li&gt;Javascript must be switc hed on.&lt;/li&gt;&lt;li&gt;It only works for the Internet Explorer Browser version 5,6 or 7 must be used.&lt;/li&gt;&lt;li&gt;If Cookies are blocked, the zoom factor is not remembered and page magnification has to be set for each page viewed.&lt;/li&gt;&lt;/ul&gt; It degrades gracefully,  so simply  no buttons appear if Javascript is switched off or a non Microsoft browser is used.     &lt;p&gt; Opera is an exception as the Opera browser has an option to 'pretend' to bea Microsoft browser. With Opera if this option is used the buttons will be visible but will not work, full marks to Opera!?      &lt;/p&gt; &lt;h2&gt;&lt;a name="size"&gt;Overhead and Size of Script.&lt;/a&gt;&lt;/h2&gt;   On slow PC's using cookies to remember magnification you may notice a 're-size' effect, as the text expands after the page loads. Not a problem on newer PC's but a minor irritation on very large pages viewed by slow  PC's. &lt;p&gt; Script size shouldn't be a problem even on dial-up. One script file of about 2k is needed in an external javascript file 'zoom.js' file, with two lines on each page using the zoom utility.&lt;br /&gt;&lt;/p&gt;  &lt;h2&gt;&lt;a name="setup"&gt;How to Set the Magnifier Up.&lt;/a&gt;&lt;/h2&gt;  &lt;ol&gt;&lt;li&gt;Set-up an extern al Javascript file 'zoom.js'.   Start by opening a text editor like notepad.   Click below to see the file :-&lt;p&gt;   &lt;a href="http://www.brist.plus.com/js/zoom.txt" target="_blank"&gt;zoom.js&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;   Then high light all the text an&lt;/p&gt; &lt;p&gt;d copy and paste&lt;/p&gt; &lt;p&gt; into notepad.    Use File-&gt; Save As zoom.js and save in the same directory where you hold your htm or html pages.    Saving as a text file.&lt;/p&gt;&lt;p&gt;   N.B. My file statistics still sh&lt;/p&gt; &lt;p&gt;ow some of you save these files directly.    If it works fine but I recommend the cut and paste approach into a blank notepad file,   then use save as 'zoom.js'.&lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;/li&gt;&lt;li&gt;              &lt;!-- &lt;p&gt;This should be between the &lt;head&gt; &amp;amp; &lt;/head&gt; tags--&gt;Add the line of code be low to any  page you wish to have the zoom function on.                     &lt;/li&gt;&lt;/ol&gt;&lt;script language="JavaScript" src="zoom.js" type="text/javascript"&gt;&lt;/script&gt;&lt;br /&gt;&lt;h2&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_6WWiiz9y2mM/SNck7WCwaBI/AAAAAAAAADo/WGd7edqrUuk/s1600-h/joom.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 610px; height: 150px;" src="http://3.bp.blogspot.com/_6WWiiz9y2mM/SNck7WCwaBI/AAAAAAAAADo/WGd7edqrUuk/s320/joom.JPG" alt="" id="BLOGGER_PHOTO_ID_5248704492671625234" border="0" /&gt;&lt;/a&gt;&lt;/h2&gt; 3.Also change the  tag to&lt;br /&gt;&lt;h2&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_6WWiiz9y2mM/SNcl-0JI0YI/AAAAAAAAADw/ezjtw8HvvlQ/s1600-h/joom2.JPG"&gt;&lt;img style="cursor: pointer; width: 617px; height: 62px;" src="http://1.bp.blogspot.com/_6WWiiz9y2mM/SNcl-0JI0YI/AAAAAAAAADw/ezjtw8HvvlQ/s320/joom2.JPG" alt="" id="BLOGGER_PHOTO_ID_5248705651802689922" border="0" /&gt;&lt;/a&gt;&lt;/h2&gt;&lt;br /&gt;Note the buttons 'float' to the top left and right of the screen which may not suit the design of your site! If you have knowledge of javascript and html the code is fairly easy to change. &lt;p&gt; Or here are three minor variations:- &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.brist.plus.com/js/zooml.txt" target="_blank"&gt;zoom.js with left hand side buttons only.&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.brist.plus.com/js/zoomr.txt" target="_blank"&gt;zoom.js with right hand side buttons only.&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.brist.plus.com/js/zoomn.txt" target="_blank"&gt;zoom.js with no buttons&lt;/a&gt; and &lt;a href="http://www.brist.plus.com/js/zoomhtml.txt" target="_blank"&gt;html code&lt;/a&gt;  to include buttons manually wherever you want - see the &lt;a href="http://www.brist.plus.com/accessibility-magnify.htm#graphic"&gt;zoom effect on graphics&lt;/a&gt; on this page for an example.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-9104941794482195848?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/08/javascript-magnification-on-your.html</link><author>noreply@blogger.com (Beermohamed .S)</author><media:thumbnail url="http://3.bp.blogspot.com/_6WWiiz9y2mM/SNck7WCwaBI/AAAAAAAAADo/WGd7edqrUuk/s72-c/joom.JPG" height="72" width="72" /></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6822188938657697715</guid><pubDate>Thu, 20 Mar 2008 05:54:00 +0000</pubDate><atom:updated>2008-08-07T01:04:35.193-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">SEO</category><title /><description>&lt;h2&gt;&lt;a href="http://sbeermohamed.co.nr" rel="bookmark" title="Permanent Link: For Automated Sites - PHP and MySQL are A Perfect Match"&gt;For Automated Sites - PHP and MySQL are A Perfect Match&lt;/a&gt;&lt;/h2&gt;&lt;br /&gt;&lt;p&gt;A bit of programming is going to be necessary if you want to automate a site. There are many types of programs that can be used to automate a web JavaScript, PHP, Perl, ASP, Java and more. So, which do you use? For many, it is a personal choice.&lt;/p&gt; &lt;p&gt;I prefer PHP for programming. PHP is a particularly useful programming language because it allows for advanced programming and is easy to integrate with web pages. Another plus of PHP is that the language interfaces very well with MySQL, a popular type of online database.&lt;/p&gt; &lt;p&gt;Yet another plus of PHP is that it is Open Source Code. The actual code that is PHP is available to the public for free, while the source code for products such as ASP are not. Because PHP is open source, there is a large community of PHP programmers that help each other with code. This means PHP programmers can rely on each other by using reusable pieces of code called functions and classes rather than constantly reinventing the wheel. This can dramatically cut down on production time.&lt;/p&gt; &lt;p&gt;Overall, PHP is flexible, cheaper than many alternatives, and built around a community. PHP and MySQL are excellent choice for webmasters looking to automate their web sites.&lt;/p&gt; &lt;p&gt;What Can PHP and MySQL do for me? Just about anything you can think of. That is the beauty of custom programming. A few ideas of what you can do with a PHP and MySQL driven site include:&lt;/p&gt;&lt;p&gt;1. E-commerce&lt;br /&gt;2. User Polls&lt;br /&gt;3. Keyword Tracking&lt;br /&gt;4. Set User Preferences&lt;br /&gt;5. Manage Password Protected Member’s Areas&lt;br /&gt;6. Lead Follow Up&lt;br /&gt;7. Customer Relations&lt;br /&gt;8. Content Management&lt;br /&gt;9. Email Newsletters&lt;br /&gt;10. Accounting&lt;br /&gt;11. Invoicing&lt;br /&gt;12. Scheduled Updates&lt;/p&gt;&lt;p&gt;The list is limited only by your imagination. Once you have decided to go with a PHP and MySQL site, you can either get a custom program created, use a prepackaged version or a combination of both. Many PHP and MySQL programs that come prepackaged are easy to customize and can save you a lot of time and money over starting from the ground up.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6822188938657697715?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/03/for-automated-sites-php-and-mysql-are.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6671525711009986368</guid><pubDate>Wed, 16 Jan 2008 04:24:00 +0000</pubDate><atom:updated>2008-09-26T06:17:03.999-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SEO</category><title>How To: Optimize Your Images for Search</title><description>&lt;p&gt;Have you every gone to Google &lt;a href="http://images.google.com/images?svnum=10&amp;amp;hl=en&amp;amp;amp;amp;gbv=2&amp;amp;q=wine-marketer&amp;amp;btnG=Search%2BImages"&gt;image  search&lt;/a&gt; looking for a quick photo, image or wine label? Image search is an area often overlooked when first dipping your toes into the world of search engine marketing.&lt;/p&gt; &lt;p&gt;Remember, search engine bots are a series of algorithms and routines that determine ranking and image search engines are no different. But, you can't expect a bot to be as perceptive as a human and identify what your keywords your wine images should relate to.&lt;/p&gt; &lt;p&gt;So, give them a hand. Effectively labeling your wine (or any) images and alt tags is a great start. But, do so within reason. A few months ago we posted about the abuse of search engines by black hat developers who used 'keyword stuffing' on their meta tags to lessen the relevance of certain determination factors such as meta tags - and it too has been done in image tagging. This shouldn't thwart you from using images as an effective means of SEO however - but do so within reason and without keyword spamming.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Properties to understand about images.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Naming: &lt;/strong&gt;When saving or selecting a filename for your image, be sure to use something which is relevant not only to the image description, but the overall keyword theme for your specific site or page.&lt;/p&gt; &lt;blockquote style="color: rgb(51, 51, 255);"&gt; &lt;p&gt;&lt;strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;Do's: Separate words with hyphens. Search engines cannot decipher where one word begins and another ends without an identifiable delimiter such as a hyphen (-).&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;Example: wine-marketer-logo.jpg &lt;em&gt;not  &lt;/em&gt;winemarketerlogo.jpg.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;Don't:  Separate words with spaces or underscores when a hyphen will  do.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;Example: wine marketer.jpg will conver to  wine%20marketer.jpg.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;&lt;strong&gt;Alt Tags: &lt;/strong&gt;Alt tags allow you to provide a description of your image to visitors and search engines for multiple purposes. First, the alt tag will show prior to an image being displayed should it take a few seconds to load and will give visitors a description of what is loading (or even maybe pointing to a bad link). Second, they provide a hover over effect on the image, allowing visitors to see a description of images they place their cursor on. Third, they display an image description for browsers or users who are unable to load your site images including those visually impaired. Lastly, and most importantly for this article, they provide a description to search engines of what this image is about. Pairing this with the selective keywords on your site and image filename, it is another opportunity to reinforce your search engine worthiness!&lt;/p&gt; &lt;blockquote&gt; &lt;p style="color: rgb(0, 102, 0);"&gt;&lt;strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;Here  is an example of SEO friendly image naming and alt tag in HTML  format:&lt;/span&gt;&lt;/strong&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(0, 102, 0);font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt; &lt;/span&gt;&lt;strong style="color: rgb(0, 102, 0);"&gt;&lt;span style=";font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;HTML format:&lt;/span&gt;&lt;/strong&gt;&lt;span style="color: rgb(102, 0, 51);font-family:Arial,Helvetica,sans-serif;font-size:85%;"  &gt;&lt;span style="color: rgb(0, 102, 0);"&gt; &lt; src="specify image path here" width=" " height=" " alt=" write text that you want to show if an image is not appearing "&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Remember to use alt tags whenever possible as another form of traffic allocation through image search and in helping boost your organic search results by providing even more keyword relevancy for your site.&lt;/p&gt; Suprisingly Wine.com adheres to alt tag standards however does not relate this into the their image filenames. All the little things make a difference in SEO!&lt;br /&gt;&lt;br /&gt;For More details Visit My Site : www.sbeermohamed.co.nr&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6671525711009986368?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/01/how-to-optimize-your-images-for-search.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-4176021225890297402</guid><pubDate>Tue, 08 Jan 2008 05:12:00 +0000</pubDate><atom:updated>2008-03-20T01:54:32.420-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">CSS</category><title /><description>&lt;h1&gt;Preload Images with CSS&lt;/h1&gt;  &lt;div class="postinfo"&gt;   Posted in &lt;a rev="section" href="http://www.ilovejackdaniels.com/css/"&gt;CSS&lt;/a&gt;, December 23, 2004   &lt;/div&gt;&lt;br /&gt;                  &lt;!-- google_ad_section_start --&gt; As support for CSS improves, pseudo-selectors like :hover, :active and :focus will become more widely used. Already :hover is in use on many sites to provide rollover states to buttons, as on this site (the menu bar). The other pseudo selectors will, in time, give far more opportunities for the use of rollover images.&lt;br /&gt;&lt;br /&gt;One potential problem with image rollovers, though, is that in order for an image to be displayed, it must be downloaded. Consequently, for rollovers to work smoothly and quickly, all the necessary images must be already available on the user's PC. Otherwise, the rollovers will behave badly, like in this &lt;a href="http://www.ilovejackdaniels.com/css_preload/"&gt;example using large images&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Until recently, rollover effects were achieved through use of JavaScript, and as a result, a plethora of solutions to the preloading image problem in JavaScript are available. However, using JavaScript to preload images, though not a bad idea when using JavaScript to control rollovers, becomes less bright when it is CSS that's controlling them. A user could very easily (and this is becoming more common) have a CSS-capable browser without JavaScript support or with JavaScript turned off.&lt;br /&gt;&lt;br /&gt;So there's a clear need for a way to use CSS to preload images or find another way to avoid the problem. Which gives us two relatively simple solutions to our problem.&lt;br /&gt;&lt;br /&gt;The first solution is to create a single background image for your element that actually contains both the rollover and non-rollover images, and then position is using the background-position CSS property. Instead of changing the image when the mouse moves over the element, you can simply change the background-position to reveal the previously hidden rollover image. There's a more detailed &lt;a href="http://wellstyled.com/css-nopreload-rollovers.html"&gt;explanation of this technique&lt;/a&gt; over at WellStyled.com.&lt;br /&gt;&lt;br /&gt;The other option available to you is to trick the browser into downloading the image before it is required for the rollover. This can be done by applying the image as a background to an element, and then hiding it using the background-position property. The image will then be downloaded but will not be displayed. Then, when the rollover is activated, it will operate smoothly and instantly.&lt;br /&gt;&lt;br /&gt;First, you need to select an element that doesn't currently have a background image. If so select an element that does have a background image, you will either end up not preloading the image you are after, or you will prevent the element's normal background displaying. Neither is ideal.&lt;br /&gt;&lt;br /&gt;Once you have picked an element to use for this purpose, you need to add the background image. The following CSS can be applied to the element and will place the background image outside the viewable area of the image:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;background-image: url("rollover_image.png");&lt;br /&gt;background-repeat: no-repeat;&lt;br /&gt;background-position: -1000px -1000px;&lt;/code&gt;&lt;br /&gt;&lt;!-- google_ad_section_end --&gt;Your rollover image will then be loaded when the page itself is initially loaded, along with the other images. When a rollover is then activated, the image will already be available to the browser and the effect will be instant.   &lt;br /&gt;&lt;br /&gt;For any questions please visit my site : www.sbeermohamed.co.nr&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-4176021225890297402?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2008/01/preload-images-with-css-posted-in-css.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-3448220888321647082</guid><pubDate>Mon, 17 Dec 2007 05:02:00 +0000</pubDate><atom:updated>2008-03-20T01:54:10.799-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><title /><description>&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;How to display your web site logo on the address bar and in the favorites list&lt;br /&gt;See Also&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;  * Why use the same old icons when you can use thumbnails?&lt;br /&gt;  * Place your own bitmap on Internet Explorer's toolbar&lt;br /&gt;  * Forget the association&lt;br /&gt;  * Windows programs heaven&lt;br /&gt;  * Adjust the size and spacing of your icons&lt;br /&gt;  * How to change folder icons&lt;br /&gt;&lt;br /&gt;Want to make your web site standout in crowded favorites lists in browsers and address bars? How about displaying your logo next to links to your site.&lt;br /&gt;&lt;br /&gt;First, you have to create a logo for your site; a very tiny logo to be specific. The size of the logo should be 16x16 pixels and it should be saved as a Windows icon file (logo.ico for example). If your image editor doesn't support saving files in Windows icon format, you can use the following online tool or download an icon editor from a shareware site.&lt;br /&gt;&lt;br /&gt;Once you have an icon file with your logo, you're ready to take the final step. Following methods will work in Explorer 5.x and higher without having any negative effects on other browsers. &lt;div&gt; &lt;/div&gt; &lt;strong&gt;Method 1&lt;/strong&gt; &lt;dl&gt;&lt;dd&gt;This is the easiest method to implement and it will work regardless of the particular page on your site users choose to add to their favorites list. Don't worry if you don't have access to your web site root; take a look at the next method. &lt;div&gt; &lt;/div&gt;If you have access to the root of your web site, simply save your icon file as "favicon.ico" there. For example, if your web site is "www.chami.com", your icon file should be available at "www.chami.com/favicon.ico". The web browser will look for favicon.ico whenever your site is added to the favorites list and if it is found at the root of your web site, the icon will appear next to the link to your site. &lt;/dd&gt;&lt;/dl&gt;  &lt;div&gt; &lt;/div&gt; &lt;strong&gt;Method 2&lt;/strong&gt; &lt;dl&gt;&lt;dd&gt;If you don't have access to the root of your web site, you have to add the following tag to your web page so that the browser will know where to look for your icon. Unlike before, this time you can save the icon under any name ending with ".ico" We'll use the name "logo.ico" and assume that your web site is under the directory "~your_directory". &lt;div&gt; &lt;/div&gt; &lt;div class="hk19"&gt;&lt;div class="code"&gt;&lt;!-- &lt;link rel="SHORTCUT ICON" href="/~your_directory/logo.ico"&gt; ---&gt;&lt;/div&gt;&lt;div class="desc"&gt;&lt;strong&gt;Listing #1&lt;/strong&gt; : HTML code. Download &lt;a href="http://www.html-kit.com/dl/tips/tips_110599I_1_logo.zip" class="t" title=" Download size: 0.2 KB "&gt;logo.htm&lt;/a&gt; &lt;small&gt;(0.2 KB)&lt;/small&gt;. &lt;/div&gt;&lt;/div&gt;   &lt;div&gt; &lt;/div&gt; &lt;table summary="Note" border="0" cellpadding="2" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;   &lt;br /&gt;&lt;/td&gt;&lt;td class="hk20" valign="top"&gt;NOTE:&lt;/td&gt;&lt;td class="hk21"&gt;Above tag should be inserted in-between the &lt;span class="hk22"&gt;&lt;/span&gt; and &lt;span class="hk22"&gt;&lt;/span&gt; tags.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;  &lt;/dd&gt;&lt;/dl&gt;   &lt;div&gt; &lt;/div&gt;By the way, you can specify multiple logos for multiple pages using the second method. Simply save your icons using unique names, such as logo1.ico, logo2.ico, logo3.ico for example, and replace "logo.ico" in the above HTML code with the name of the icon you want to use for any particular page.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0); font-weight: bold;"&gt;visit www.sbeermohamed.co.nr for more details&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-3448220888321647082?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><enclosure type="text/html" url="http://www.chami.com/tips/Internet/110599I.html" length="0" /><link>http://beermohamed.blogspot.com/2007/12/how-to-display-your-web-site-logo-on.html</link><author>noreply@blogger.com (Beermohamed .S)</author><media:content url="http://www.chami.com/tips/Internet/110599I.html" type="text/html" /><itunes:subtitle>How to display your web site logo on the address bar and in the favorites list See Also * Why use the same old icons when you can use thumbnails? * Place your own bitmap on Internet Explorer's toolbar * Forget the association * Windows programs heaven * A</itunes:subtitle><itunes:author>noreply@blogger.com (Beermohamed .S)</itunes:author><itunes:summary>How to display your web site logo on the address bar and in the favorites list See Also * Why use the same old icons when you can use thumbnails? * Place your own bitmap on Internet Explorer's toolbar * Forget the association * Windows programs heaven * Adjust the size and spacing of your icons * How to change folder icons Want to make your web site standout in crowded favorites lists in browsers and address bars? How about displaying your logo next to links to your site. First, you have to create a logo for your site; a very tiny logo to be specific. The size of the logo should be 16x16 pixels and it should be saved as a Windows icon file (logo.ico for example). If your image editor doesn't support saving files in Windows icon format, you can use the following online tool or download an icon editor from a shareware site. Once you have an icon file with your logo, you're ready to take the final step. Following methods will work in Explorer 5.x and higher without having any negative effects on other browsers. Method 1 This is the easiest method to implement and it will work regardless of the particular page on your site users choose to add to their favorites list. Don't worry if you don't have access to your web site root; take a look at the next method. If you have access to the root of your web site, simply save your icon file as "favicon.ico" there. For example, if your web site is "www.chami.com", your icon file should be available at "www.chami.com/favicon.ico". The web browser will look for favicon.ico whenever your site is added to the favorites list and if it is found at the root of your web site, the icon will appear next to the link to your site. Method 2 If you don't have access to the root of your web site, you have to add the following tag to your web page so that the browser will know where to look for your icon. Unlike before, this time you can save the icon under any name ending with ".ico" We'll use the name "logo.ico" and assume that your web site is under the directory "~your_directory". ---Listing #1 : HTML code. Download logo.htm (0.2 KB). NOTE:Above tag should be inserted in-between the and tags. By the way, you can specify multiple logos for multiple pages using the second method. Simply save your icons using unique names, such as logo1.ico, logo2.ico, logo3.ico for example, and replace "logo.ico" in the above HTML code with the name of the icon you want to use for any particular page. visit www.sbeermohamed.co.nr for more detailsHi Visit my Web Developers Page to know more http://www.sbeermohamed.co.nr http://beermohamed.blogspot.com</itunes:summary><itunes:keywords>PHP, Photoshop, Web Design</itunes:keywords></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-415282416874417054</guid><pubDate>Mon, 17 Dec 2007 04:34:00 +0000</pubDate><atom:updated>2008-09-26T06:35:24.537-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>How to display your web site logo on the address bar and in the favorites list</title><description>&lt;span style="font-family:lucida grande;"&gt;Want to make your web site standout in crowded favorites lists in browsers and address bars? How about displaying your logo next to links to your site. &lt;/span&gt;&lt;div  style="font-family:lucida grande;"&gt; &lt;/div&gt;&lt;span style="font-family:lucida grande;"&gt;First, you have to create a logo for your site; a very tiny logo to be specific. The size of the logo should be 16x16 pixels and it should be saved as a Windows icon file (logo.ico for example). If your image editor doesn't support saving files in Windows icon format, you can use the following online tool or download an icon editor from a &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://www.chami.com/tips/windows/012897W.html" title="Still looking for that special Windows program? Here's a list of software archives to get started with your search."&gt;shareware site&lt;/a&gt;&lt;span style="font-family:lucida grande;"&gt;.  &lt;/span&gt;&lt;div&gt; &lt;/div&gt; &lt;form action="http://www.html-kit.com/favicon/" method="post" enctype="multipart/form-data" target="_self"&gt;&lt;table summary="" border="0" cellpadding="2" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="iaf1455x1457"&gt;&lt;table style="width: 469px; height: 92px;" summary="" border="0" cellpadding="2" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: lucida grande;" class="nf" align="right" valign="bottom"&gt;&lt;div class="iaf1455x1456"&gt;&lt;label for="fn"&gt;Source Image :&lt;/label&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="nf"&gt;&lt;input name="fn" size="17" value="" type="file"&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;
&lt;br /&gt;&lt;/td&gt;&lt;td width="100%"&gt;
&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="nf" align="right" valign="bottom"&gt;
&lt;br /&gt;&lt;/td&gt;&lt;td class="nf"&gt;&lt;input name="GFSubmit" size="20" maxlength="20" value="  Generate FavIcon.ico  " type="submit"&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;
&lt;br /&gt;&lt;/td&gt;&lt;td width="100%"&gt;
&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;input name="go" value="1" type="hidden"&gt;&lt;input name="r" value="" type="hidden"&gt;&lt;/form&gt; &lt;div class="hk9"&gt;Preview:&lt;/div&gt;&lt;div&gt;&lt;div class="hk10"&gt; &lt;div class="hk11"&gt;&lt;div class="hk12"&gt;&lt;!-- img: null --&gt;&lt;img src="http://www.chami.com/i/g/cached/tmp10_dup_9e73aacdd7ecd1a0dd0e265913796cb2.gif" alt=" FavIcon Preview " border="0" height="7" width="170" /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="hk13"&gt;&lt;!-- img: null --&gt;&lt;img src="http://www.chami.com/i/g/cached/tmp10_dup_ab079fc5c0a10ba84bbbe44ef311b2e1.gif" alt=" FavIcon Preview " border="0" height="17" width="48" /&gt;&lt;/div&gt;&lt;div class="hk14"&gt;&lt;!-- img: null --&gt;&lt;img src="http://www.chami.com/i/g/cached/tmp10_dup_ae12c82e6096bbdce7e8b1fa024f19e0.gif" alt=" FavIcon Preview " border="0" height="16" width="16" /&gt;&lt;/div&gt;&lt;div class="hk15"&gt;&lt;!-- img: null --&gt;&lt;img src="http://www.chami.com/i/g/cached/tmp10_dup_c06f9a7cf64a9108b9a6ca871cccc996.gif" alt=" FavIcon Preview " border="0" height="17" width="102" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="hk16"&gt;&lt;!-- img: null --&gt;&lt;img src="http://www.chami.com/i/g/cached/tmp10_dup_1319caa90fa916165c4dfc3afdfa6510.gif" alt=" FavIcon Preview " border="0" height="8" width="170" /&gt;&lt;/div&gt;&lt;div class="hk17"&gt;&lt;!-- --&gt;&lt;/div&gt;&lt;/div&gt; &lt;/div&gt;&lt;div class="hk18"&gt;&lt;!-- --&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="hk17"&gt;&lt;!-- --&gt;&lt;/div&gt;  &lt;div&gt; &lt;/div&gt; &lt;span style=";font-family:lucida grande;font-size:100%;"  &gt;Once you have an icon file with your logo, you're ready to take the final step. Following methods will work in Explorer 5.x and higher without having any negative effects on other browsers. &lt;/span&gt;&lt;div&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt; &lt;span style=";font-family:lucida grande;font-size:100%;"  &gt;&lt;strong&gt;Method 1&lt;/strong&gt;&lt;/span&gt; &lt;dl  style="font-family:lucida grande;"&gt;&lt;dd&gt;&lt;span style="font-size:100%;"&gt;This is the easiest method to implement and it will work regardless of the particular page on your site users choose to add to their favorites list. Don't worry if you don't have access to your web site root; take a look at the next method. &lt;/span&gt;&lt;div&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;span style="font-size:100%;"&gt;If you have access to the root of your web site, simply save your icon file as "favicon.ico" there. For example, if your web site is "www.chami.com", your icon file should be available at "www.chami.com/favicon.ico". The web browser will look for favicon.ico whenever your site is added to the favorites list and if it is found at the root of your web site, the icon will appear next to the link to your site. &lt;/span&gt;&lt;/dd&gt;&lt;/dl&gt;  &lt;div  style="font-family:lucida grande;"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt; &lt;span style=";font-family:lucida grande;font-size:100%;"  &gt;&lt;strong&gt;Method 2&lt;/strong&gt;&lt;/span&gt; &lt;dl&gt;&lt;dd&gt;&lt;span style=";font-family:lucida grande;font-size:100%;"  &gt;If you don't have access to the root of your web site, you have to add the following tag to your web page so that the browser will know where to look for your icon. Unlike before, this time you can save the icon under any name ending with ".ico" We'll use the name "logo.ico" and assume that your web site is under the directory "~your_directory". &lt;/span&gt;&lt;div  style="font-family:lucida grande;"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt; &lt;div class="hk19"  style="font-family:lucida grande;"&gt;&lt;div class="code"&gt;&lt;span style="font-size:100%;"&gt;&lt;blockquote&gt;&lt;link rel="SHORTCUT ICON" href="/%7Eyour_directory/logo.ico"&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div class="desc"  style="font-family:lucida grande;"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Listing #1&lt;/strong&gt; : HTML code. Download &lt;a href="http://www.html-kit.com/dl/tips/tips_110599I_1_logo.zip" class="t" title=" Download size: 0.2 KB "&gt;logo.htm&lt;/a&gt; (0.2 KB). &lt;/span&gt;&lt;/div&gt;&lt;/div&gt;   &lt;div face="lucida grande"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt; &lt;table summary="Note"  border="0" cellpadding="2" cellspacing="0" style="font-family:lucida grande;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style="font-size:100%;"&gt;    &lt;/span&gt;
&lt;br /&gt;&lt;/td&gt;&lt;td class="hk20" valign="top"&gt;&lt;span style="font-size:100%;"&gt;NOTE:&lt;/span&gt;&lt;/td&gt;&lt;td class="hk21"&gt;&lt;span style="font-size:100%;"&gt;Above tag should be inserted in-between the &lt;span class="hk22"&gt;&lt;/span&gt; and &lt;span class="hk22"&gt;&lt;/span&gt; tags.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;  &lt;/dd&gt;&lt;/dl&gt;   &lt;div style="font-family: lucida grande;"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:lucida grande;"&gt;By the way, you can specify multiple logos for multiple pages using the second method. Simply save your icons using unique names, such as logo1.ico, logo2.ico, logo3.ico for example, and replace "logo.ico" in the above HTML code with the name of the icon you want to use for any particular page.&lt;/span&gt;
&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-415282416874417054?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><enclosure type="text/html" url="http://www.chami.com/tips/Internet/110599I.html" length="0" /><link>http://beermohamed.blogspot.com/2007/12/how-to-display-your-web-site-logo-on_16.html</link><author>noreply@blogger.com (Beermohamed .S)</author><media:content url="http://www.chami.com/tips/Internet/110599I.html" type="text/html" /><itunes:subtitle>Want to make your web site standout in crowded favorites lists in browsers and address bars? How about displaying your logo next to links to your site. First, you have to create a logo for your site; a very tiny logo to be specific. The size of the logo s</itunes:subtitle><itunes:author>noreply@blogger.com (Beermohamed .S)</itunes:author><itunes:summary>Want to make your web site standout in crowded favorites lists in browsers and address bars? How about displaying your logo next to links to your site. First, you have to create a logo for your site; a very tiny logo to be specific. The size of the logo should be 16x16 pixels and it should be saved as a Windows icon file (logo.ico for example). If your image editor doesn't support saving files in Windows icon format, you can use the following online tool or download an icon editor from a shareware site. Source Image : Preview: Once you have an icon file with your logo, you're ready to take the final step. Following methods will work in Explorer 5.x and higher without having any negative effects on other browsers. Method 1 This is the easiest method to implement and it will work regardless of the particular page on your site users choose to add to their favorites list. Don't worry if you don't have access to your web site root; take a look at the next method. If you have access to the root of your web site, simply save your icon file as "favicon.ico" there. For example, if your web site is "www.chami.com", your icon file should be available at "www.chami.com/favicon.ico". The web browser will look for favicon.ico whenever your site is added to the favorites list and if it is found at the root of your web site, the icon will appear next to the link to your site. Method 2 If you don't have access to the root of your web site, you have to add the following tag to your web page so that the browser will know where to look for your icon. Unlike before, this time you can save the icon under any name ending with ".ico" We'll use the name "logo.ico" and assume that your web site is under the directory "~your_directory". Listing #1 : HTML code. Download logo.htm (0.2 KB). NOTE:Above tag should be inserted in-between the and tags. By the way, you can specify multiple logos for multiple pages using the second method. Simply save your icons using unique names, such as logo1.ico, logo2.ico, logo3.ico for example, and replace "logo.ico" in the above HTML code with the name of the icon you want to use for any particular page. Hi Visit my Web Developers Page to know more http://www.sbeermohamed.co.nr http://beermohamed.blogspot.com</itunes:summary><itunes:keywords>Web Design, Tips and Tricks</itunes:keywords></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-5891546981788433707</guid><pubDate>Fri, 14 Dec 2007 05:08:00 +0000</pubDate><atom:updated>2008-03-20T01:54:10.800-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><title /><description>&lt;h1 class="title"&gt;Photo listing by effect&lt;/h1&gt;  &lt;span class="date"&gt;13.11.2007, 15:7&lt;/span&gt;&lt;br /&gt;Submited in: &lt;b&gt;&lt;a href="http://www.toxiclab.org/default.asp?ID=2"&gt;Flash&lt;/a&gt;&lt;/b&gt; | Total Views: 9780&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;See this tutorial and learn how to create photo listing using some special flash effects and tricks. You don't have to use action script code to make this tutorial. You can use this tutorail for every photo presentation, listing, &lt;a id="KonaLink0" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="border-bottom: 1px solid rgb(0, 0, 0); color: rgb(0, 0, 0) ! important; font-weight: 400; position: static; padding-bottom: 1px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;color:#0000e0;"   &gt;animation&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;, photo banner...&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;table border="0" cellpadding="0" cellspacing="0" width="480"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="padding: 12px 12px 0px;" class="Lbox"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 0px 8px 0px 9px;" class="Lbox"&gt;&lt;embed pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.toxiclab.org/img/200711135_PhotoListingByEffect.swf" type="application/x-shockwave-flash" quality="high" height="350" width="300"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 1&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;First of all, &lt;strong&gt;&lt;a href="http://www.toxiclab.org/img/200711139_photos.rar"&gt;download&lt;/a&gt;&lt;/strong&gt; my photos that we will use for this lesson. After you have downloaded my photos, unzip the &lt;a id="KonaLink1" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;zip &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;file&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; and place that photos on some folder.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 2&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the width of your document to 300 pixels and the height to 350 pixels. Select any color as background color.Set your &lt;a id="KonaLink2" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="border-bottom: 1px solid rgb(0, 0, 0); color: rgb(0, 0, 0) ! important; font-weight: 400; position: static; padding-bottom: 1px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;color:#0000e0;"   &gt;Flash &lt;/span&gt;&lt;span class="kLink" style="border-bottom: 1px solid rgb(0, 0, 0); color: rgb(0, 0, 0) ! important; font-weight: 400; position: static; padding-bottom: 1px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;color:#0000e0;"   &gt;movie's&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; frame rate to 28 and click ok. See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111355_img1.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 3&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;After that, choose File &gt; Import &gt; Import to Library. In the file &lt;a id="KonaLink3" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="border-bottom: 1px solid rgb(0, 0, 0); color: rgb(0, 0, 0) ! important; font-weight: 400; position: static; padding-bottom: 1px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;color:#0000e0;"   &gt;explorer &lt;/span&gt;&lt;span class="kLink" style="border-bottom: 1px solid rgb(0, 0, 0); color: rgb(0, 0, 0) ! important; font-weight: 400; position: static; padding-bottom: 1px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;color:#0000e0;"   &gt;window&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; that appears, find a four photos (photo1, photo2, photo3...) and Shift-click to select them all.Then click open. If you now open your flash library (Ctrl+L key) you will see a four photos that you just imported. See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111355_img2.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 4&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Take the &lt;a id="KonaLink4" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Selection &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Tool&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; (V), and using the "drag and drop" technique, move the first photo from the library on the stage.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 5&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;While the photo is still selected, go to the Align Panel (Ctrl+K) and do the following:&lt;br /&gt;&lt;br /&gt;1. Make sure that the Align/Distribute to Stage button is turned on,&lt;br /&gt;2. Click on the Align horizontal center button and&lt;br /&gt;3. Click the Align vertical center button.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111356_img3.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 6&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;After that, while the photo is still selected, press F8 key (Convert to Symbol) to convert this photo into a &lt;a id="KonaLink5" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Movie &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Clip&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; Symbol. See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111356_img4.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 7&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Double click on layer 1 to rename its name in photo. After that, click on frame 60 and press F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 8&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Create a new layer above the layer photo1 and name it effect.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 9&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Select the effect layer and take the Rectangle Tool (R). In the Colors portion of the Tool panel, block the Stroke color by clicking on the little &lt;a id="KonaLink6" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;pencil&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; icon and then on the small square with the red diagonal line. For Fill color choose any color and draw a “rectangle” over the photo about 300x350px. See the picture belows.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111357_img5.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 10&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;While the rectangle is still selected, go to the Color &lt;a id="KonaLink7" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Mixer&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; Panel (Shoetcut key: Shift+F9) and choose the following options:&lt;br /&gt;&lt;br /&gt;1. Click on the paint bucket icon to select the Fill color.&lt;br /&gt;2. Choose Radial as Type.&lt;br /&gt;3. Click on the small color rectangle that is on the left side and set its color to #ECC013. &lt;a id="KonaLink8" target="_new" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.toxiclab.org/tutorial.asp?ID=195#"&gt;&lt;span style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;&lt;span class="kLink" style="color: rgb(0, 0, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11;"  &gt;Alpha&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; property set to100 %&lt;br /&gt;4. For the rectangle from the right side, for color choose #D29B1C. Alpha property set to100 %.&lt;br /&gt;5. Create a new color rectangle and place it on the middle. Then, set its color to #F8E8A9. Alpha property set to100 %.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111357_img6.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;Now, you have this:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111357_img7.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 11&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;While the new designed rectangle is still selected, press again F8 key (Convert to Symbol) to convert this rectangle into a Movie Clip Symbol.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111358_img8.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 12&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;After that, click on frame 15, 50 and 65 of layer effect and press F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 13&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Then, click on frame 15, take the Selection Tool (V) and click once on the photo to select it.Then, go to the to the Properties Panel below the stage. On the right, you will see the Color menu. Select Alpha in it and put it down to 0%.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111358_img9.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Do this also for frame 50.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 14&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Choose right-click anywhere on the gray area between the frame 1 and 15 and frame 50 and 65 on the timeline and choose Create Motion Tween from the menu that appears.See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111359_img10.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 15&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Select layer photo and click also on frame 15, 50 and 65 and press F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 16&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;After that, select the first frame of layer photo1, take again the Selection Tool (V) and click once om the photo to select it. Then, go again to the Properties Panel. On the right, you will see the Color menu. Select Advanced in it, click on Settings button and make the adjustments as follows:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/2007111359_img11.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;Do this also for frame 65.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 17&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Choose right-click anywhere on the gray area between the frame 1 and 15 and frame 50 and 65 on the timeline and choose Create Motion Tween from the menu that appears.See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/200711130_img12.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 18&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;It's time for another (second) photo, so create a new layer above the layer effect and name it photo 2. Then, click on frame 65 of layer photo 2 and press F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 19&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Then, while you're still on frame 65, take the Selection Tool (V), and using the "drag and drop" technique, move the second photo from the library on the stage.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 20&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;While the photo is still selected, repeat 5 to aligned this photo also with the background.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 21&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Then, while the photo is still selected, press F8 key (Convert to Symbol) to convert this photo (photo 2) into a Movie Clip Symbol.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/200711130_img13.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 22&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;After that, click on frame 80, 115 and 130 and press F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 23&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Go back on frame 65 and repeat step 16. Do that also for frame 130.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 24&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Choose right-click anywhere on the gray area between the frame 65 and 80 and frame 115 and 130 on the timeline and choose Create Motion Tween from the menu that appears.See the picture below.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.toxiclab.org/img/200711131_img14.gif" align="absmiddle" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 25&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Go back on the first frame of layer effect. Then. press Ctrl+C key (Copy). After that, create a new layer above the layer photo and name it also effect1. After that, click on frame 65 of layer effect 1 and press F6 key. Then, press Ctrl+Shift+V key (Paste in place).&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 26&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Click after that on frame 80, 115 and 130 and press again F6 key.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 27&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Go back on frame 80 and repeat step 13. Do this also for frame 115.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 28&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Choose right-click again anywhere on the gray area between the frame 65 and 80 and frame 115 and 130on the timeline and choose Create Motion Tween from the menu that appears.&lt;br /&gt;&lt;br /&gt;We're done!&lt;br /&gt;&lt;br /&gt;Test your movie and enjoy!&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;a href="http://www.toxiclab.org/img/2007111354_PhotoListingByEffect.fla"&gt;Download example&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-5891546981788433707?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2007/12/photo-listing-by-effect-13.html</link><author>noreply@blogger.com (Beermohamed .S)</author><enclosure url="http://www.toxiclab.org/img/200711139_photos.rar" length="394275" type="application/octet-stream" /><media:content url="http://www.toxiclab.org/img/200711139_photos.rar" fileSize="394275" type="application/octet-stream" /><itunes:subtitle>Photo listing by effect 13.11.2007, 15:7 Submited in: Flash | Total Views: 9780 See this tutorial and learn how to create photo listing using some special flash effects and tricks. You don't have to use action script code to make this tutorial. You can us</itunes:subtitle><itunes:author>noreply@blogger.com (Beermohamed .S)</itunes:author><itunes:summary>Photo listing by effect 13.11.2007, 15:7 Submited in: Flash | Total Views: 9780 See this tutorial and learn how to create photo listing using some special flash effects and tricks. You don't have to use action script code to make this tutorial. You can use this tutorail for every photo presentation, listing, animation, photo banner... Step 1 First of all, download my photos that we will use for this lesson. After you have downloaded my photos, unzip the zip file and place that photos on some folder. Step 2 Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the width of your document to 300 pixels and the height to 350 pixels. Select any color as background color.Set your Flash movie's frame rate to 28 and click ok. See the picture below. Step 3 After that, choose File Import Import to Library. In the file explorer window that appears, find a four photos (photo1, photo2, photo3...) and Shift-click to select them all.Then click open. If you now open your flash library (Ctrl+L key) you will see a four photos that you just imported. See the picture below. Step 4 Take the Selection Tool (V), and using the "drag and drop" technique, move the first photo from the library on the stage. Step 5 While the photo is still selected, go to the Align Panel (Ctrl+K) and do the following: 1. Make sure that the Align/Distribute to Stage button is turned on, 2. Click on the Align horizontal center button and 3. Click the Align vertical center button. Step 6 After that, while the photo is still selected, press F8 key (Convert to Symbol) to convert this photo into a Movie Clip Symbol. See the picture below. Step 7 Double click on layer 1 to rename its name in photo. After that, click on frame 60 and press F6 key. Step 8 Create a new layer above the layer photo1 and name it effect. Step 9 Select the effect layer and take the Rectangle Tool (R). In the Colors portion of the Tool panel, block the Stroke color by clicking on the little pencil icon and then on the small square with the red diagonal line. For Fill color choose any color and draw a “rectangle” over the photo about 300x350px. See the picture belows. Step 10 While the rectangle is still selected, go to the Color Mixer Panel (Shoetcut key: Shift+F9) and choose the following options: 1. Click on the paint bucket icon to select the Fill color. 2. Choose Radial as Type. 3. Click on the small color rectangle that is on the left side and set its color to #ECC013. Alpha property set to100 % 4. For the rectangle from the right side, for color choose #D29B1C. Alpha property set to100 %. 5. Create a new color rectangle and place it on the middle. Then, set its color to #F8E8A9. Alpha property set to100 %. Now, you have this: Step 11 While the new designed rectangle is still selected, press again F8 key (Convert to Symbol) to convert this rectangle into a Movie Clip Symbol. Step 12 After that, click on frame 15, 50 and 65 of layer effect and press F6 key. Step 13 Then, click on frame 15, take the Selection Tool (V) and click once on the photo to select it.Then, go to the to the Properties Panel below the stage. On the right, you will see the Color menu. Select Alpha in it and put it down to 0%. Do this also for frame 50. Step 14 Choose right-click anywhere on the gray area between the frame 1 and 15 and frame 50 and 65 on the timeline and choose Create Motion Tween from the menu that appears.See the picture below. Step 15 Select layer photo and click also on frame 15, 50 and 65 and press F6 key. Step 16 After that, select the first frame of layer photo1, take again the Selection Tool (V) and click once om the photo to select it. Then, go again to the Properties Panel. On the right, you will see the Color menu. Select Advanced in it, click on Settings button and make the adjustments as follows: Do this also for frame 65. Step 17 Choose right-click anywhere on the gray area between the frame 1 and 15 and frame 50 and 65 on the timeline and choose Create Motion Tw</itunes:summary><itunes:keywords>PHP, Photoshop, Web Design</itunes:keywords></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-6274073068551472753</guid><pubDate>Fri, 14 Dec 2007 04:58:00 +0000</pubDate><atom:updated>2008-03-20T01:54:32.421-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Javascript</category><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">CSS</category><title /><description>&lt;p align="left"&gt;&lt;span style=";font-family:Arial;font-size:180%;"  &gt;JavaScript email director&lt;/span&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Directions:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size:100%;"&gt; Simply insert this in the :&lt;/span&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;&lt;script&gt;&lt;/script&gt;&lt;br /&gt;// Copyright 1996 Jon Eyrick&lt;br /&gt;&lt;br /&gt;var mailsys="Netscape mail";&lt;br /&gt;&lt;br /&gt;var author="Jon Eyrick";&lt;br /&gt;&lt;br /&gt;if (author == "Jon Eyrick"){&lt;br /&gt;&lt;br /&gt;   phrompt=prompt;&lt;br /&gt;&lt;br /&gt;   snarkconf=confirm;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function mailsome1(){&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   who=phrompt("Enter a friend's email address: ","benny3@chelsea.ios.com");&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   what=phrompt("Enter the subject: ","[no subject]");&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   if (snarkconf("Are you sure you want to mail "+who+" with the subject of "+what+"?")==true){&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;       parent.location.href='mailto:'+who+'?subject='+what+'';&lt;br /&gt;&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-6274073068551472753?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2007/12/javascript-email-director-directions.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-36829094.post-207862258147618730</guid><pubDate>Tue, 04 Dec 2007 09:57:00 +0000</pubDate><atom:updated>2008-03-20T01:54:32.422-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><category domain="http://www.blogger.com/atom/ns#">Photoshop</category><category domain="http://www.blogger.com/atom/ns#">Web Design</category><category domain="http://www.blogger.com/atom/ns#">CSS</category><title /><description>&lt;strong&gt;&lt;span style="color:#330099;"&gt;How to Create a Fast Car in Adobe Photoshop using Motion Blur&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.emmettlollis.com/tutorials/photoshop/images/Speed_03.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 265px; CURSOR: hand" height="148" alt="" src="http://www.emmettlollis.com/tutorials/photoshop/images/Speed_03.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="color:#660000;"&gt;&lt;strong&gt;Overview - Fast Cars in Photoshop&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;This Photoshop tutorial is designed to show you how to add an ultra fast Photoshop motion effect that you can use to turn an ordinary parked car into the super charged car of your dreams. In this tutorial you will learn how to create an effective motion blur and radial blur along with smoke particles venting from the wheels.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;strong&gt;&lt;span style="color:#cc0000;"&gt;Step 1 - Creating the Motion Blur Effect&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;In Photoshop: Open you're favorite car image. I chose a picture of my 2000 Toyota Celica GTS for this example. To make things easier and keep the photoshop settings in line with this tutorial we will size the image down to 1000 pixels wide. You may also want to boost the saturation a bit to make the car stand out. Duplicate the background layer and name it motion. Now we need to create a selection that we will use a few times in this tutorial. Grab the polygonal lasso tool (feather radius 1 or 0) and select the entire outline of the entire car including wheels. Go to [Select -&gt; Save Selection] and name it car. Now you can de-select the selection. On the motion layer go to [Filter -&gt; Blur -&gt; Motion Blur] with angle 0 and distance of 250 pixels. Create a layer mask on the motion layer and load the car selection [Select -&gt; Load Selection], fill the selection with black to get the car back into the picture. You may want to take a small brush to the mask to catch any details you may have missed. You may also want to paint back some blur where you see reflections in the metal surface Using a low opacity brush. What we have now should look like the bottom image on the right. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;Step 2 - Spinning and Smoking&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;Our fast moving car wouldn't be very realistic with the wheels just standing there would it? It's time to add some Photoshop spin! First we need to copy them into a new image so we can work with them. First, drag the rectangular marquee tool until you have the entire wheel selected. Go to [Edit -&gt; Copy Merged] then create a new image and paste the selection into it. Select [Filter -&gt; Blur -&gt; Radial Blur] with amount set to 50, method set to spin and best quality. Now copy and paste the image back in to the main car image on a new layer on top, you may have to lower the opacity to align the images together. Repeat this technique for the other one and merge them together into a layer. Now add a layer mask and blend the images together. You should now have something similar to this image.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;Step 3 - Adding Smoke and Finishing Touches &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;No speeding car would be complete without smoke particles coming off the tires. Lets get to it! Add a new layer on top, fill it with black and set the layer blending mode to pin light. With black and white as your foreground / background colors, go to Filter -&gt; [Render -&gt; Clouds] until you see some nice puffs of smoke around the wheels. Now add a layer mask and paint out all the excess smoke. With the smoke layer selected use [Filter -&gt; Blur -&gt; Motion Blur] with a distance of about 20 pixels. Finally we want to make the image a little more like a car ad so lets adjust the background a bit. Select the motion layer. Now load in the car selection we saved earlier with inverse checked so we have a nice selection of the background. Add a Photoshop Hue / Saturation adjustment layer and check the colorize box. Move the sliders around until the background complements the car. There you have it, your very own fast car with the help of Adobe Photoshop. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Hi Visit my Web Developers Page to know more

http://www.sbeermohamed.co.nr
http://beermohamed.blogspot.com&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36829094-207862258147618730?l=beermohamed.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://beermohamed.blogspot.com/2007/12/how-to-create-fast-car-in-adobe.html</link><author>noreply@blogger.com (Beermohamed .S)</author></item><language>en-us</language><media:rating>nonadult</media:rating></channel></rss>

