<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-3764812906899522206</atom:id><lastBuildDate>Fri, 08 Nov 2024 15:42:50 +0000</lastBuildDate><category>jQuery</category><category>CSS</category><category>Menu</category><category>JavaScript</category><category>Tips</category><category>Downloads</category><category>HTML</category><category>MooTools</category><category>Tabs</category><category>Slider</category><category>Accordion</category><category>Database</category><category>Forms</category><category>Icons</category><category>Adobe Flex 3</category><category>Tooltip</category><category>Configuration</category><category>Microsoft</category><category>PC</category><category>Prototype</category><category>Wampserver</category><category>Ajax</category><category>Dropdown</category><category>FaceBook</category><category>Gallery</category><category>Joomla</category><category>LightBox</category><category>Moo.Fx</category><category>Password</category><category>Scriptaculous</category><category>Scrollable</category><category>Table</category><category>windows</category><category>Browser</category><category>Content</category><category>Countrylist</category><category>Editor</category><category>Flash Builder 4</category><category>Fonts</category><category>Installation</category><category>JAVA</category><category>MySQL</category><category>OS</category><category>PHP</category><category>Search</category><category>Validation</category><category>VideoPlayer</category><category>Web 2.0</category><category>Wordpress</category><category>YouTube</category><category>phpMyAdmin</category><title>iGPS Technical Blog</title><description>[ Resources for Web Dev &amp;amp; Designers  ]</description><link>http://igpstechblog.blogspot.com/</link><managingEditor>noreply@blogger.com (Blog Admin)</managingEditor><generator>Blogger</generator><openSearch:totalResults>152</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-8765716931755241857</guid><pubDate>Mon, 25 Sep 2017 07:07:00 +0000</pubDate><atom:updated>2017-09-25T12:37:20.677+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Installation</category><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>How to Install JAVA 8 on CentOS/RHEL 7/6 and Fedora 26/25</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijNTX6aeWNaejPCPewURlZNK5U1xu4XBzU3ShIS7DJIzdCr4QFoG4t7lnxq6Mf_XUZOfTorX0kPNw_E3k8fPpo38XUoHzm-B1CjOMwb1gVDQWSGLUNN9PiTv8DfPySUiEC0diVRv7mGcnl/s1600/java8_logo.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;427&quot; data-original-width=&quot;400&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijNTX6aeWNaejPCPewURlZNK5U1xu4XBzU3ShIS7DJIzdCr4QFoG4t7lnxq6Mf_XUZOfTorX0kPNw_E3k8fPpo38XUoHzm-B1CjOMwb1gVDQWSGLUNN9PiTv8DfPySUiEC0diVRv7mGcnl/s320/java8_logo.png&quot; width=&quot;299&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
This article will help you to Install JAVA 8 (JDK/JRE 8u144) or update on your system. Read the instruction carefully before downloading Java from Linux command line.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Step 1 – Download Latest Java Archive&lt;/h3&gt;
&lt;br /&gt;
Download latest Java SE Development Kit 8 release from its &lt;a href=&quot;http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;official download page&lt;/a&gt; or use following commands to download from shell.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;# cd /opt/

# wget --no-cookies --no-check-certificate --header &quot;Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie&quot; &quot;http://download.oracle.com/otn-pub/java/jdk/8u144-b01/090f390dda5b47b9b721c7dfaa008135/jdk-8u144-linux-x64.tar.gz&quot;

# tar xzf jdk-8u144-linux-x64.tar.gz
&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Step 2 – Install Java 8 with Alternatives&lt;/h3&gt;
&lt;br /&gt;
After extracting archive file use &lt;b&gt;alternatives &lt;/b&gt;command to install it. alternatives command is available in &lt;b&gt;chkconfig &lt;/b&gt;package.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;# cd /opt/jdk1.8.0_144/
# alternatives --install /usr/bin/java java /opt/jdk1.8.0_144/bin/java 2
# alternatives --config java


There are 3 programs which provide &#39;java&#39;.

  Selection    Command
-----------------------------------------------
*  1           /opt/jdk1.7.0_71/bin/java
 + 2           /opt/jdk1.8.0_45/bin/java
    3           /opt/jdk1.8.0_144/bin/java

Enter to keep the current selection[+], or type selection number: 3
&lt;/pre&gt;
&lt;br /&gt;
At this point JAVA 8 has been successfully installed on your system. We also recommend to setup javac and jar commands path using alternatives&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;# alternatives --install /usr/bin/jar jar /opt/jdk1.8.0_144/bin/jar 2
# alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_144/bin/javac 2
# alternatives --set jar /opt/jdk1.8.0_144/bin/jar
# alternatives --set javac /opt/jdk1.8.0_144/bin/javac
&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Step 3 – Check Installed Java Version&lt;/h3&gt;
&lt;br /&gt;
Check the installed Java version on your system using following command.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;root@tecadmin ~# java -version

java version &quot;1.8.0_144&quot;
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)
&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Step 4 – Setup Java Environment Variables&lt;/h3&gt;
&lt;br /&gt;
Most of Java based application’s uses environment variables to work. Set the Java environment variables using following commands&lt;br /&gt;
&lt;br /&gt;
Setup &lt;b&gt;JAVA_HOME&lt;/b&gt; Variable&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;export JAVA_HOME=/opt/jdk1.8.0_144
&lt;/pre&gt;
&lt;br /&gt;
Setup &lt;b&gt;JRE_HOME&lt;/b&gt; Variable&lt;br /&gt;
&lt;pre&gt;export JRE_HOME=/opt/jdk1.8.0_144/jre
&lt;/pre&gt;
&lt;br /&gt;
Setup &lt;b&gt;PATH&lt;/b&gt; Variable&lt;br /&gt;
&lt;pre&gt;export PATH=$PATH:/opt/jdk1.8.0_144/bin:/opt/jdk1.8.0_144/jre/bin
&lt;/pre&gt;
&lt;br /&gt;
Also put all above environment variables in /etc/profile file for auto loading on system boot.</description><link>http://igpstechblog.blogspot.com/2017/09/how-to-install-java-8-on-centos-rhel-7-6-and-fedora-26-25.html</link><author>noreply@blogger.com (Blog Admin)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijNTX6aeWNaejPCPewURlZNK5U1xu4XBzU3ShIS7DJIzdCr4QFoG4t7lnxq6Mf_XUZOfTorX0kPNw_E3k8fPpo38XUoHzm-B1CjOMwb1gVDQWSGLUNN9PiTv8DfPySUiEC0diVRv7mGcnl/s72-c/java8_logo.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-3895372828354001637</guid><pubDate>Wed, 08 Mar 2017 08:51:00 +0000</pubDate><atom:updated>2017-03-08T14:21:18.180+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">MySQL</category><category domain="http://www.blogger.com/atom/ns#">Wampserver</category><title>Change MySQL root Password using Command Line in WAMP Server</title><description>You can change root password using command line in wampserver or wampmanager, just follow the steps to change the root password.&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;click on wampmanager, go to MySQL  and Open the MySQL Console.&lt;/li&gt;
&lt;li&gt;By default the password in null (means no password). Just hit Enter&lt;/li&gt;
&lt;li&gt;Run the following sql command.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
SQL Query to Change root Password in WAMP&lt;/h3&gt;
&lt;br /&gt;
&lt;pre&gt;mysql&amp;gt; update mysql.user SET password=password(&quot;new_password&quot;) where user=&quot;root&quot;; hit enter&lt;/pre&gt;
&lt;br /&gt;
Your password updated and you will get Query OK message. Then click on the wampserver (bottom right) which is running in task bar and select Restart All Services.</description><link>http://igpstechblog.blogspot.com/2017/03/change-mysql-root-password-using-command-line-in-wamp-server.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-7595310897844969135</guid><pubDate>Wed, 23 Apr 2014 08:50:00 +0000</pubDate><atom:updated>2014-04-23T14:20:46.020+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Microsoft</category><category domain="http://www.blogger.com/atom/ns#">OS</category><category domain="http://www.blogger.com/atom/ns#">windows</category><title>Windows Server 2008 Image thumbnails not showing</title><description>&lt;b&gt;This is easy to fix, do the following:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Click Start  and Right-Click on &quot;&lt;b&gt;Computer&lt;/b&gt;&quot; and choose &quot;&lt;b&gt;Properties&lt;/b&gt;&quot;, (or if like me you like your &quot;&lt;b&gt;Computer&lt;/b&gt;&quot; icon on your desktop then just Right-Click on the computer icon on your desktop).&lt;br /&gt;
&lt;br /&gt;
Under &quot;&lt;b&gt;Tasks&lt;/b&gt;&quot; on the left hand list of options click &quot;&lt;b&gt;Advanced System Settings&lt;/b&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
On the &quot;&lt;b&gt;Advanced&lt;/b&gt;&quot; tab, in the &quot;&lt;b&gt;Performance&lt;/b&gt;&quot; group, click &quot;&lt;b&gt;Settings&lt;/b&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
On the &quot;&lt;b&gt;Visual Effects&lt;/b&gt;&quot; tab find and tick the following option &quot;&lt;b&gt;Show thumbnails instead of icons&lt;/b&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
Click &lt;b&gt;Ok&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
You should now be able to browse your images as thumbnails again.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OR&lt;br /&gt;
&lt;br /&gt;
Previews of media files are disabled by default in Windows Server 2008. In this article we will enable it so we get the small previews back again!&lt;br /&gt;
&lt;br /&gt;
1. Open the &lt;b&gt;Start&lt;/b&gt; menu and click &lt;b&gt;Run&lt;/b&gt;. Now enter &lt;b&gt;SystemPropertiesPerformance&lt;/b&gt; and click &lt;b&gt;OK&lt;/b&gt;. In the&lt;b&gt;Performance Options&lt;/b&gt; window at least check the &lt;b&gt;Show thumbnails instead of icons&lt;/b&gt; option. If you are using themes you should also check the &lt;b&gt;Use visual styles on windows and buttons&lt;/b&gt; option to keep you theme.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIcy6p_vlhb7fBeR5VnXokXgCWww3k8PiC-xCEGxdWBUL9YNTmefqW8-OsP62Q9PdkdkLSCgRFbVvpbMPrhO0cQXJZjl5x59AUc7y2QUmEDgMO-HSvtB0QKFn8FQIHgNGCbUO6cmzh7zI3/s1600/windows-server-2008-r2-thumbnail-preview-01.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIcy6p_vlhb7fBeR5VnXokXgCWww3k8PiC-xCEGxdWBUL9YNTmefqW8-OsP62Q9PdkdkLSCgRFbVvpbMPrhO0cQXJZjl5x59AUc7y2QUmEDgMO-HSvtB0QKFn8FQIHgNGCbUO6cmzh7zI3/s1600/windows-server-2008-r2-thumbnail-preview-01.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. If we now browse to &lt;b&gt;C:\Windows\Web\Wallpapers&lt;/b&gt; as a test we can see that we now have previews for pictures! Previews should also work for most movie files. Note that you have to set the &lt;b&gt;View&lt;/b&gt; to&lt;b&gt;Small Icons&lt;/b&gt;, &lt;b&gt;Medium Icons&lt;/b&gt;, &lt;b&gt;Large Icons&lt;/b&gt; or &lt;b&gt;Extra Large Icons&lt;/b&gt; in order to see the previews.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWMgEaJpd_DfCm6nl-mAMCDSmMwp4XchgLyr8VBRHlXiJbaGY-XG_X1tm2epFhqWootIlRoEizOMiOSmwb2V4ojYzmGlLsIBSJC2jjK1MDgl23H6WfRdcJeJfLP2fT95GJSYdUIkHS0kgY/s1600/windows-server-2008-r2-thumbnail-preview-02.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWMgEaJpd_DfCm6nl-mAMCDSmMwp4XchgLyr8VBRHlXiJbaGY-XG_X1tm2epFhqWootIlRoEizOMiOSmwb2V4ojYzmGlLsIBSJC2jjK1MDgl23H6WfRdcJeJfLP2fT95GJSYdUIkHS0kgY/s1600/windows-server-2008-r2-thumbnail-preview-02.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
</description><link>http://igpstechblog.blogspot.com/2014/04/windows-server-2008-image-thumbnails.html</link><author>noreply@blogger.com (Blog Admin)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIcy6p_vlhb7fBeR5VnXokXgCWww3k8PiC-xCEGxdWBUL9YNTmefqW8-OsP62Q9PdkdkLSCgRFbVvpbMPrhO0cQXJZjl5x59AUc7y2QUmEDgMO-HSvtB0QKFn8FQIHgNGCbUO6cmzh7zI3/s72-c/windows-server-2008-r2-thumbnail-preview-01.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-5103915339519748777</guid><pubDate>Fri, 31 May 2013 09:19:00 +0000</pubDate><atom:updated>2013-05-31T14:51:13.799+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">Dropdown</category><category domain="http://www.blogger.com/atom/ns#">HTML</category><category domain="http://www.blogger.com/atom/ns#">JavaScript</category><category domain="http://www.blogger.com/atom/ns#">jQuery</category><category domain="http://www.blogger.com/atom/ns#">Menu</category><category domain="http://www.blogger.com/atom/ns#">MooTools</category><category domain="http://www.blogger.com/atom/ns#">Prototype</category><category domain="http://www.blogger.com/atom/ns#">Scriptaculous</category><title>Great Examples Of Menu Designs</title><description>&lt;h1&gt;MenuMatic Vertical Example&lt;/h1&gt;&lt;p&gt;&lt;a title=&quot;MenuMatic Vertical Example&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Vertical-Example.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Vertical-Example.png&quot; alt=&quot;MenuMatic Vertical Example&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;MenuMatic Vertical Example&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Vertical-Example.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;MenuMatic Horizontal Example&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;MenuMatic Horizontal Example&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Horizontal-Example.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Horizontal-Example.png&quot; alt=&quot;MenuMatic Horizontal Example&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;MenuMatic Horizontal Example&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/MenuMatic-Horizontal-Example.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Suckerfish Dropdown&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Suckerfish Dropdown&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Suckerfish-Dropdown.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Suckerfish-Dropdown.png&quot; alt=&quot;Suckerfish Dropdown&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Suckerfish Dropdown&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Suckerfish-Dropdown.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Kwicks for jQuery horizontal animated menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Kwicks for jQuery horizontal animated menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Kwicks-for-jQuery-horizontal-animated-menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Kwicks-for-jQuery-horizontal-animated-menu.png&quot; alt=&quot;Kwicks for jQuery horizontal animated menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Kwicks for jQuery horizontal animated menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Kwicks-for-jQuery-horizontal-animated-menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Dropline with current selection&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Dropline with current selection&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dropline-with-current-selection.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dropline-with-current-selection.png&quot; alt=&quot;Dropline with current selection&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Dropline with current selection&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dropline-with-current-selection.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Prototype type Vertical Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Prototype type Vertical Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Prototype-type-Vertical-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Prototype-type-Vertical-Menu.png&quot; alt=&quot;Prototype type Vertical Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Prototype type Vertical Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Prototype-type-Vertical-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Digg like Navigation Bar using CSS&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Digg like Navigation Bar using CSS&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Digg-like-Navigation-Bar-using-CSS.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Digg-like-Navigation-Bar-using-CSS.png&quot; alt=&quot;Digg like Navigation Bar using CSS&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Digg like Navigation Bar using CSS&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Digg-like-Navigation-Bar-using-CSS.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Flickr Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Flickr Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Flickr-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Flickr-Menu.png&quot; alt=&quot;Flickr Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Flickr Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Flickr-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Simple CSS vertical menu Digg-like&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Simple CSS vertical menu Digg-like&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Simple-CSS-vertical-menu-Digg-like.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Simple-CSS-vertical-menu-Digg-like.png&quot; alt=&quot;Simple CSS vertical menu Digg-like&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Simple CSS vertical menu Digg-like&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Simple-CSS-vertical-menu-Digg-like.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;GettyImages like search options menu with Scriptaculous&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;GettyImages like search options menu with Scriptaculous&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/GettyImages-like-search-options-menu-with-Scriptaculous.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/GettyImages-like-search-options-menu-with-Scriptaculous.png&quot; alt=&quot;GettyImages like search options menu with Scriptaculous&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;GettyImages like search options menu with Scriptaculous&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/GettyImages-like-search-options-menu-with-Scriptaculous.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Fancy Sliding Tab Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Fancy Sliding Tab Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fancy-Sliding-Tab-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fancy-Sliding-Tab-Menu.png&quot; alt=&quot;Fancy Sliding Tab Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Fancy Sliding Tab Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fancy-Sliding-Tab-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Urban Gray Accordion Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Urban Gray Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Urban-Gray-Accordion-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Urban-Gray-Accordion-Menu.png&quot; alt=&quot;Urban Gray Accordion Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Urban Gray Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Urban-Gray-Accordion-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Glossy Accordion Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Glossy Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Glossy-Accordion-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Glossy-Accordion-Menu.png&quot; alt=&quot;Glossy Accordion Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Glossy Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Glossy-Accordion-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Bullet List Accordion Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Bullet List Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Bullet-List-Accordion-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Bullet-List-Accordion-Menu.png&quot; alt=&quot;Bullet List Accordion Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Bullet List Accordion Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Bullet-List-Accordion-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Create a Slick Tabbed Content Area using CSS &amp;amp; jQuery&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Create a Slick Tabbed Content Area using CSS &amp; jQuery&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slick-Tabbed-Content-Area-using-CSS-and-jQuery.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slick-Tabbed-Content-Area-using-CSS-and-jQuery.png&quot; alt=&quot;Create a Slick Tabbed Content Area using CSS &amp; jQuery&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Create a Slick Tabbed Content Area using CSS &amp; jQuery&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slick-Tabbed-Content-Area-using-CSS-and-jQuery.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Slate CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Slate CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slate-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slate-CSS-Menu.png&quot; alt=&quot;Slate CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Slate CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Slate-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Vert-one CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Vert-one CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Vert-one-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Vert-one-CSS-Menu.png&quot; alt=&quot;Vert-one CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Vert-one CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Vert-one-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Classics CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Classics CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Classics-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Classics-CSS-Menu.png&quot; alt=&quot;Classics CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Classics CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Classics-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Rounded CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Rounded CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Rounded-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Rounded-CSS-Menu.png&quot; alt=&quot;Rounded CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Rounded CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Rounded-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Matte CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Matte CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Matte-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Matte-CSS-Menu.png&quot; alt=&quot;Matte CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Matte CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Matte-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Dolphin CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Dolphin CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dolphin-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dolphin-CSS-Menu.png&quot; alt=&quot;Dolphin CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Dolphin CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Dolphin-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Jungle CSS Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Jungle CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Jungle-CSS-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Jungle-CSS-Menu.png&quot; alt=&quot;Jungle CSS Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Jungle CSS Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Jungle-CSS-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Fisheye JavaScript Menu&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Fisheye JavaScript Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fisheye-JavaScript-Menu.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fisheye-JavaScript-Menu.png&quot; alt=&quot;Fisheye JavaScript Menu&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Fisheye JavaScript Menu&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Fisheye-JavaScript-Menu.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Lava Lamp Menu Examples&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Lava Lamp Menu Examples&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Lava-Lamp-Menu-Examples.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Lava-Lamp-Menu-Examples.png&quot; alt=&quot;Lava Lamp Menu Examples&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Lava Lamp Menu Examples&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/Lava-Lamp-Menu-Examples.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;SuckerFish Style using jQuery&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;SuckerFish Style using jQuery&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/SuckerFish-Style-using-jQuery.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/SuckerFish-Style-using-jQuery.png&quot; alt=&quot;SuckerFish Style using jQuery&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;SuckerFish Style using jQuery&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/SuckerFish-Style-using-jQuery.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;Create Vimeo-like top navigation&lt;/h1&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Create Vimeo-like top navigation&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/vimeo_navigation.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/vimeo_navigation.png&quot; alt=&quot;Create Vimeo-like top navigation&quot; border=&quot;0&quot;  &gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;h3&gt;Example&lt;/h3&gt;&lt;br /&gt;
&lt;p&gt;&lt;a title=&quot;Create Vimeo-like top navigation&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/menu/vimeo_navigation.html&quot; class=&quot;Example-Button&quot; target=&quot;_blank&quot;&gt;Click&lt;/a&gt; to DEMO&lt;/p&gt;</description><link>http://igpstechblog.blogspot.com/2013/05/menumatic-vertical-example.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-2744948858924521343</guid><pubDate>Wed, 10 Oct 2012 12:25:00 +0000</pubDate><atom:updated>2013-07-26T15:53:51.491+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Countrylist</category><category domain="http://www.blogger.com/atom/ns#">Dropdown</category><category domain="http://www.blogger.com/atom/ns#">Forms</category><title>Drop Down List of Countries</title><description>&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/drop-down-list-of-countries.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h1&gt;
Drop Down List of Countries&lt;/h1&gt;
&lt;br /&gt;
If you&#39;re looking for a country list with ISO codes for HTML dropdowns to quickly copy and paste into a website.&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
ISO List of Countries Dropdown HTML Downloads&lt;/h2&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-iso-codes.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-iso-codes.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-iso-codes.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;List of All Countries with ISO Codes&lt;/a&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-iso.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-iso.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-iso.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;Country dropdown HTML (ISO Codes as the value)&lt;/a&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-lowercase-iso.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-lowercase-iso.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-lowercase-iso.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;Country dropdown HTML (Lowercase ISO Codes as the value)&lt;/a&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;Country dropdown HTML (Country names as the value)&lt;/a&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country-underscore.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country-underscore.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-dropdown-country-underscore.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;Country dropdown HTML (Country names with underscores as the value)&lt;/a&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-array.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;&lt;img alt=&quot;Drop Down List of Countries&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-array.png&quot; title=&quot;Drop Down List of Countries&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/forms/country-list-array.html&quot; target=&quot;_blank&quot; title=&quot;Drop Down List of Countries&quot;&gt;List of countries separated by a semicolon&lt;/a&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
</description><link>http://igpstechblog.blogspot.com/2012/10/drop-down-list-of-countries.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-7028953804947533610</guid><pubDate>Tue, 09 Oct 2012 09:32:00 +0000</pubDate><atom:updated>2013-07-26T15:19:15.949+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips</category><category domain="http://www.blogger.com/atom/ns#">Wampserver</category><title>Turn OFF Directory Listing - Wampserver</title><description>For security, you might wish to turn off the directory browsing capability on your Apache server.&lt;br /&gt;
&lt;br /&gt;
Click - &lt;strong&gt;WAMPSERVER&lt;/strong&gt; icon in Task bar.&lt;br /&gt;
&lt;br /&gt;
1. Open &lt;span style=&quot;color: red;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;httpd.conf&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; file.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-01.png&quot; target=&quot;_blank&quot; title=&quot;Turn OFF Directory Listing - Wampserver&quot;&gt;&lt;img alt=&quot;Turn OFF Directory Listing - Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-01.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Find keyword - &quot;&lt;span style=&quot;color: red;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Indexes&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-02.png&quot; target=&quot;_blank&quot; title=&quot;Turn OFF Directory Listing - Wampserver&quot;&gt;&lt;img alt=&quot;Turn OFF Directory Listing - Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-02.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Search result.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-03.png&quot; target=&quot;_blank&quot; title=&quot;Turn OFF Directory Listing - Wampserver&quot;&gt;&lt;img alt=&quot;Turn OFF Directory Listing - Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-03.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;which allows the user to browse the directory structure.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. to turn directory browsing off, I added a &quot;&lt;span style=&quot;color: red; font-size: large;&quot;&gt;&lt;b&gt;-&lt;/b&gt;&lt;/span&gt;&quot; in front of Indexes after Options.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-04.png&quot; target=&quot;_blank&quot; title=&quot;Turn OFF Directory Listing - Wampserver&quot;&gt;&lt;img alt=&quot;Turn OFF Directory Listing - Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-04.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Finally restart All wampserver Services.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-05.png&quot; target=&quot;_blank&quot; title=&quot;Turn OFF Directory Listing - Wampserver&quot;&gt;&lt;img alt=&quot;Turn OFF Directory Listing - Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-05.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;span style=&quot;background-color: #ffd966;&quot;&gt;Now the user receives a &quot;403 forbidden&quot; error when attempting to browse the directory structure.&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;</description><link>http://igpstechblog.blogspot.com/2012/10/turn-off-directory-listing-wampserver.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-8410777299902116</guid><pubDate>Tue, 09 Oct 2012 09:14:00 +0000</pubDate><atom:updated>2013-07-26T15:12:50.408+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips</category><category domain="http://www.blogger.com/atom/ns#">Wampserver</category><title>How to Enable .htaccess in Wampserver</title><description>If we are using any of the frame works in php like cakephp, simphony or open source tools for CMS like WordPress, Drupal etc, or any other scripts, you need to enable htaccess in wamp server&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Internally they depend on .htaccess in many cases.&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Click on the wampserver Icon in task bar&lt;/li&gt;
&lt;li&gt;Select Apache-&amp;gt;httpd.conf&lt;/li&gt;
&lt;/ol&gt;
&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-01.png&quot; target=&quot;_blank&quot; title=&quot;How to Enable .htaccess in Wampserver&quot;&gt;&lt;img alt=&quot;How to Enable .htaccess in Wampserver&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/tips/wamp/wamp-01.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
look for the line &quot;&lt;b&gt;#LoadModule rewrite_module modules/mod_rewrite.so&lt;/b&gt;&quot;&lt;br /&gt;
un-comment the line &quot;&lt;b&gt;LoadModule rewrite_module modules/mod_rewrite.so&lt;/b&gt;&quot;&lt;br /&gt;
Restart All services</description><link>http://igpstechblog.blogspot.com/2012/10/how-to-enable-htaccess-in-wampserver.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-8380239228334922151</guid><pubDate>Wed, 26 Sep 2012 09:23:00 +0000</pubDate><atom:updated>2013-07-26T15:00:50.654+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Password</category><category domain="http://www.blogger.com/atom/ns#">Wordpress</category><title>How to Reset My WordPress Admin Password?</title><description>You have to do this through the WordPress database directly. The most convenient way to manage the database is via the &lt;b&gt;phpMyAdmin &lt;/b&gt; tool at your web hosting account.&lt;br /&gt;
&lt;br /&gt;
Once in phpMyAdmin select the WordPress database from the drop-down menu on the left. The page will refresh and the database&#39;s tables will be displayed on it. Open the &lt;b&gt;SQL &lt;/b&gt; tab (look at the top navigation bar).&lt;br /&gt;
&lt;br /&gt;
In the text field write the following SQL query:&lt;br /&gt;
&lt;br /&gt;
UPDATE &#39;wp_users&#39; SET &#39;user_pass&#39; = MD5( &#39;&lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;new_password_here&lt;/span&gt;&lt;/b&gt;&#39; ) WHERE &#39;wp_users&#39;.&#39;user_login&#39; = &quot;&lt;span style=&quot;color: grey;&quot;&gt;&lt;b&gt;admin_username&lt;/b&gt;&lt;/span&gt;&quot;;&lt;br /&gt;
&lt;br /&gt;
&quot;&lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;new_password_here&lt;/span&gt;&lt;/b&gt;&quot; - replace this with the new password you wish to use.&lt;br /&gt;
&quot;&lt;span style=&quot;color: grey;&quot;&gt;&lt;b&gt;admin_username&lt;/b&gt;&lt;/span&gt;&quot; - replace this with the username the password should be updated for.&lt;br /&gt;
&lt;br /&gt;
Once you are ready, click on the &lt;b&gt;GO &lt;/b&gt;button to submit the query. If everything goes fine without errors, you should be able to login to WordPress with the new password.</description><link>http://igpstechblog.blogspot.com/2012/09/how-to-reset-my-wordpress-admin-password.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-4007447261909733950</guid><pubDate>Fri, 20 Apr 2012 12:14:00 +0000</pubDate><atom:updated>2013-07-26T14:55:53.993+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">jQuery</category><category domain="http://www.blogger.com/atom/ns#">MooTools</category><title>Google Extension Effect with CSS or jQuery or MooTools JavaScript</title><description>&lt;a href=&quot;http://www.nucus.com/techblog/wp-content/uploads/examples/google-extension-effect/google-extension-effect.html&quot; target=&quot;_blank&quot; title=&quot;Google Extension Effect with CSS or jQuery or MooTools JavaScript Example&quot;&gt;&lt;img alt=&quot;Google Extension Effect with CSS or jQuery or MooTools JavaScript Example&quot; border=&quot;0&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/examples/google-extension-effect/google-extension-effect.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h3&gt;
HTML - CSS Only Method &lt;/h3&gt;
&lt;pre class=&quot;brush: xml&quot;&gt;&amp;lt;div class=&quot;item itemCss&quot;&amp;gt;
 &amp;lt;a href=&quot;javascript:;&quot;&amp;gt;
  &amp;lt;div class=&quot;item-billboard item-billboard-css&quot;&amp;gt;
   &amp;lt;img src=&quot;my-chrome-theme.jpg&quot;&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;item-detail&quot;&amp;gt;
   &amp;lt;p&amp;gt;There&#39;s more detail about the item inside this DIV!&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
 &amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
HTML - MooTools Method &lt;/h3&gt;
&lt;pre class=&quot;brush: xml&quot;&gt;&amp;lt;div class=&quot;item itemJs&quot;&amp;gt;
 &amp;lt;a href=&quot;javascript:;&quot;&amp;gt;
  &amp;lt;div class=&quot;item-billboard&quot; style=&quot;margin-top: 0px;&quot;&amp;gt;
   &amp;lt;img src=&quot;my-chrome-theme.jpg&quot;&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;item-detail&quot;&amp;gt;
   &amp;lt;p&amp;gt;There&#39;s more detail about the item inside this DIV!&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
 &amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
HTML - jQuery Method &lt;/h3&gt;
&lt;pre class=&quot;brush: xml&quot;&gt; &amp;lt;div class=&quot;item itemJQuery&quot;&amp;gt;
  &amp;lt;a href=&quot;javascript:;&quot;&amp;gt;
   &amp;lt;div class=&quot;item-billboard&quot; style=&quot;margin-top: 0px;&quot;&amp;gt;
    &amp;lt;img src=&quot;my-chrome-theme.jpg&quot;&amp;gt;
 &amp;lt;/div&amp;gt;
   &amp;lt;div class=&quot;item-detail&quot;&amp;gt;
    &amp;lt;p&amp;gt;There&#39;s more detail about the item inside this DIV!&amp;lt;/p&amp;gt;
   &amp;lt;/div&amp;gt;
  &amp;lt;/a&amp;gt;
 &amp;lt;/div&amp;gt; &lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
CSS&lt;/h3&gt;
&lt;pre class=&quot;brush: css&quot;&gt;.item {
  position: relative;
  width: 240px;
  overflow: hidden;
  border: 1px solid #ccc;
  }
  
.item {
  height: 200px;
  }
  
.item-billboard-css {
    
  -webkit-transition-property: margin-top;
  -webkit-transition-duration: .5s;
  
  -moz-transition-property: margin-top;
  -moz-transition-duration: .5s;
  
  -o-transition-property: margin-top;
  -o-transition-duration: .5s;
  
  -ms-transition-property: margin-top;
  -ms-transition-duration: .5s;
  }
  
.itemCss:hover .item-billboard {
  margin-top: -200px;
  }
  
.item a {
  text-decoration: none;
  color: #000;
  }
  
.item-billboard, .item-detail {
  padding: 10px;
  height: 180px;
  }
  
.item-billboard {
  margin-top: 0;
  background: #fff;
  }
  
.item-billboard h3 {
  font-size: 13px;
  font-weight: bold;
  color: #262626;
  }
  
.item-detail {
  /*background: #ececec;*/
  background: #cd0000;
  color:#FFFFFF;
  }
&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
jQuery.js&lt;/h3&gt;
&lt;a class=&quot;Example-Button&quot; href=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&quot; target=&quot;_blank&quot; title=&quot;jQuery.js&quot;&gt;Click&lt;/a&gt; to Download&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
MooTools.js&lt;/h3&gt;
&lt;a class=&quot;Example-Button&quot; href=&quot;https://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools.js&quot; target=&quot;_blank&quot; title=&quot;MooTools.js&quot;&gt;Click&lt;/a&gt; to Download&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
jQuery-Scripts.js&lt;/h3&gt;
&lt;a class=&quot;Example-Button&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/jquery/js/jQuery-Scripts.js&quot; target=&quot;_blank&quot; title=&quot;jQuery-Scripts.js&quot;&gt;Click&lt;/a&gt; to Download&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
MooTools-Scripts.js&lt;/h3&gt;
&lt;a class=&quot;Example-Button&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/examples/google-extension-effect/MooTools-Scripts.js&quot; target=&quot;_blank&quot; title=&quot;MooTools-Scripts.js&quot;&gt;Click&lt;/a&gt; to Download&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Example&lt;/h3&gt;
&lt;a class=&quot;Example-Button&quot; href=&quot;http://www.nucus.com/techblog/wp-content/uploads/examples/google-extension-effect/google-extension-effect.html&quot; target=&quot;_blank&quot; title=&quot;Google Extension Effect with CSS or jQuery or MooTools JavaScript Example&quot;&gt;Click&lt;/a&gt; to DEMO</description><link>http://igpstechblog.blogspot.com/2012/04/google-extension-effect-with-css-or.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-6835002375352215366</guid><pubDate>Wed, 11 Jan 2012 11:45:00 +0000</pubDate><atom:updated>2013-07-26T12:42:55.427+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Database</category><category domain="http://www.blogger.com/atom/ns#">phpMyAdmin</category><title>phpMyAdmin Fix in WampServer</title><description>&lt;h3&gt;
403 Forbidden&lt;/h3&gt;
&lt;br /&gt;
You don&#39;t have permission to access /phpmyadmin/ on this server.&lt;br /&gt;
&lt;br /&gt;
The error you&#39;re getting is typical of a missing setting in the&amp;nbsp;&lt;strong&gt;Apache conf file&lt;/strong&gt;. Specifically...&lt;br /&gt;
&lt;br /&gt;
1) Look for &quot;&lt;strong&gt;httpd.conf&lt;/strong&gt;&quot; and edit it with notepad.&lt;br /&gt;
&lt;br /&gt;
2) Look for a section that defines directories, something like this...&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;Directory &quot;c:/phpmyadmin&quot;&amp;gt;

AllowOverride All

Order allow,deny

Allow from all

&amp;lt;/Directory&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
Of course the actual path for&amp;nbsp;PhpMyAdmin&amp;nbsp;will vary with your installation. Or it may not even be there yet, in which case you need to add it.</description><link>http://igpstechblog.blogspot.com/2012/01/phpmyadmin-fix-in-wampserver.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-5801671900894632309</guid><pubDate>Wed, 14 Dec 2011 02:02:00 +0000</pubDate><atom:updated>2011-12-14T07:32:30.557+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">FaceBook</category><title>How to Find My Facebook ID</title><description>&lt;ol&gt;
&lt;li&gt;Go to &quot;Facebook.com&quot; and enter your email address and password to log in to your account&lt;/li&gt;
&lt;li&gt;Click on the word &quot;Profile&quot; that can be found at the top left of the page. This will bring you to your personal profile page. Several tabs including &quot;Wall,&quot; &quot;Photos,&quot; &quot;Info&quot; and &quot;Boxes&quot; appear under your name.&lt;/li&gt;
&lt;li&gt;Click on the tab &quot;Photos&quot; just below your name. Your photo albums will be visible once the page loads.&lt;/li&gt;
&lt;li&gt;Click any one of the photos in your album. Once the photo loads move your mouse to the URL bar in your browser. This is where you would normally type in a web address.&lt;/li&gt;
&lt;li&gt;Move the cursor to the end of the URL, if needed. Some URLs are short enough that the number will be visible immediately. Look for a series of numbers. There may be more than one series of numbers in the URL. Find the set that follows &quot;id=&quot;. This is your Facebook ID.&lt;/li&gt;
&lt;/ol&gt;</description><link>http://igpstechblog.blogspot.com/2011/12/how-to-find-my-facebook-id.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-5199975817434006598</guid><pubDate>Thu, 27 Oct 2011 11:33:00 +0000</pubDate><atom:updated>2013-05-21T13:05:49.393+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Joomla</category><category domain="http://www.blogger.com/atom/ns#">Password</category><title>how to reset super administrator password in Joomla 1.5 + ?</title><description>Basically, Joomal 1.0 used a md5 hash, made a 32 character hash.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://igpstechblog.blogspot.com/2011/10/how-to-reset-super-administrator.html&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://www.nucus.com/g/techblog/content-related/images/joomla.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Follow Directions&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. Use a MySQL utility such as phpMyAdmin.&lt;br /&gt;
&lt;br /&gt;
2. Open the database and select the table, jos_users . (replace jos_ with hyour own table prefix as appropriate).&lt;br /&gt;
&lt;br /&gt;
3. Select the record for the administrator account - by default this is user 62.&lt;br /&gt;
&lt;br /&gt;
4. Copy and paste the MD5 # below.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;21232f297a57a5a743894a0e4a801fc3&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
5. Click Go to save the changes.&lt;br /&gt;
&lt;br /&gt;
6. Point your browser to http://yoursitedomain.com/administrator . Enter the username &lt;b&gt;admin &lt;/b&gt;and the password &lt;b&gt;admin &lt;/b&gt;in the login box.&lt;br /&gt;
&lt;br /&gt;
7. Once logged in go to User Manager and select the user you have just logged in with using this password and username and change the password for the user to something else. This is extremely important. Joomla! will encode this new password with the MD5 # and SALT encryption automatically.&lt;br /&gt;
&lt;br /&gt;
8. Check all is ok with Front-end access by opening your site http://yourdomainname.com and logging in using the username admin and password as you have just set it in the Back-end.&lt;br /&gt;
&lt;br /&gt;
</description><link>http://igpstechblog.blogspot.com/2011/10/how-to-reset-super-administrator.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-45952444154772359</guid><pubDate>Wed, 11 May 2011 10:59:00 +0000</pubDate><atom:updated>2011-05-11T16:32:39.248+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Fonts</category><category domain="http://www.blogger.com/atom/ns#">Web 2.0</category><title>30 Free Web 2.0 Fonts</title><description>&lt;h2&gt;
Days typeface&lt;/h2&gt;
&lt;a href=&quot;http://www.behance.net/Gallery/Days-typeface/190108&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Days typeface&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/01-days-typeface.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.behance.net/Gallery/Days-typeface/190108&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
DustHome&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/dusthome.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;DustHome&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/02-dust-home.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/dusthome.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Tin Birdhouse&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/tin-birdhouse.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Tin Birdhouse&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/03-tin-bird-house.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/tin-birdhouse.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Arkitech Light&lt;/h2&gt;
&lt;a href=&quot;http://www.neogrey.com/typefaces/arkitech-light/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Arkitech Light&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/04-arkitech-light.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.neogrey.com/typefaces/arkitech-light/&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Fontin Sans Cyrillic&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fontinsans.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Fontin Sans Cyrillic&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/05-fontisans.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fontinsans.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Moderna&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/moderna.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Moderna&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/06-moderna.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/moderna.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Fontin&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fontin.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Fontin&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/07-fontin.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fontin.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Rezland&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/rezland.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Rezland&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/08-rezland.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/rezland.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Tondo v0.1&lt;/h2&gt;
&lt;a href=&quot;http://ficod.deviantart.com/art/tondo-v0-1-62810784&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Tondo v0.1&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/09-tondo.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://ficod.deviantart.com/art/tondo-v0-1-62810784&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Calluna&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/calluna.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Calluna&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/10-calluna.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/calluna.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Automatica&lt;/h2&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Automatica.htm&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Automatica&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/11-automatica.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Automatica.htm&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Evolution True Type&lt;/h2&gt;
&lt;a href=&quot;http://paulw.deviantart.com/art/Evolution-True-Type-Font-83261584&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Evolution True Type&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/12-evolution-true-type.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://paulw.deviantart.com/art/Evolution-True-Type-Font-83261584&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Corpulent&lt;/h2&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Corpulent.htm&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Corpulent&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/13-corpulent.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Corpulent.htm&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Museo Sans&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/museosans.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Museo Sans&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/14-museosans.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/museosans.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Airstrip Four&lt;/h2&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Airstrip_Four.htm&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Airstrip Four&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/15-airship-four.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.urbanfonts.com/fonts/Airstrip_Four.htm&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Miso typeface&lt;/h2&gt;
&lt;a href=&quot;http://www.omkrets.se/typografi/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Miso typeface&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/16-typografi.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.omkrets.se/typografi/&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Photonica&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/photonica.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Photonica&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/17-phontonica.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/photonica.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
solgas_font_byweknow&lt;/h2&gt;
&lt;a href=&quot;http://weknow.deviantart.com/art/solgas-font-byweknow-153887067&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;solgas&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/18-solgas-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://weknow.deviantart.com/art/solgas-font-byweknow-153887067&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Ubuntu Title&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/ubuntu-title.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Ubuntu Title&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/19-ubuntu-title.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/ubuntu-title.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Star Avenue&lt;/h2&gt;
&lt;a href=&quot;http://dirt2.com/fonts/star-avenue/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Star Avenue&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/20-star-avenue.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://dirt2.com/fonts/star-avenue/&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Arista&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/arista.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Arista&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/21-arista-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/arista.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Fertigo pro&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fertigo.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Fertigo pro&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/22-fertigo-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/fertigo.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
frozenpandaman_font_byweknow&lt;/h2&gt;
&lt;a href=&quot;http://weknow.deviantart.com/art/frozenpandaman-font-byweknow-154551682&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;frozenpandaman_font_byweknow&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/23-frozen-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://weknow.deviantart.com/art/frozenpandaman-font-byweknow-154551682&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Lacuna&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/lacuna.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Lacuna&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/24-lacuna-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/lacuna.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Simplistic&lt;/h2&gt;
&lt;a href=&quot;http://xa0tik.deviantart.com/art/Simplistic-font-78731543&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Simplistic&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/25-simplistic-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://xa0tik.deviantart.com/art/Simplistic-font-78731543&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
PT Sans&lt;/h2&gt;
&lt;a href=&quot;http://www.paratype.ru/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;PT Sans&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/26-modern-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.paratype.ru/&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Bohemica&lt;/h2&gt;
&lt;a href=&quot;http://www.dafont.com/bohemica.font&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Bohemica&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/27-bohemica-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.dafont.com/bohemica.font&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Hattori Hanzo typeface&lt;/h2&gt;
&lt;a href=&quot;http://www.behance.net/Gallery/Hattori-Hanzo-typeface/421277&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Hattori Hanzo typeface&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/28-hattori-hanzo.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.behance.net/Gallery/Hattori-Hanzo-typeface/421277&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Motoplatio&lt;/h2&gt;
&lt;a href=&quot;http://lgruffa.deviantart.com/art/Motoplatio-Font-156870629&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Motoplatio&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/29-motoplatio-font.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://lgruffa.deviantart.com/art/Motoplatio-Font-156870629&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
Delicious&lt;/h2&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/delicious.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Delicious&quot; src=&quot;http://www.nucus.com/techblog/wp-content/uploads/2011/05/30-delicious.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.josbuivenga.demon.nl/delicious.html&quot; target=&quot;_blank&quot;&gt;Visit Source&lt;/a&gt;</description><link>http://igpstechblog.blogspot.com/2011/05/30-free-web-20-fonts.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-3565329513157234749</guid><pubDate>Mon, 26 Jul 2010 06:16:00 +0000</pubDate><atom:updated>2011-05-11T15:19:44.696+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Joomla</category><title>Change login link to logout [Joomla]</title><description>&lt;div&gt;
&lt;strong&gt;&lt;em&gt;How to change the &#39;login&#39; menu item to &#39;logout&#39; after the user has logged in?&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;
I really struggled to find the solution for this. So here goes ...&lt;br /&gt;
&lt;pre&gt;&lt;strong&gt;Note&lt;/strong&gt;: This solution is only for those users who want to use the Login link in the menu and connect it to the &lt;strong&gt;com_login&lt;/strong&gt; in the main body of their joomla site&lt;/pre&gt;
&lt;strong&gt;Summary:&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;We will try and achieve the desired result by creating &lt;span style=&quot;font-weight: bold;&quot;&gt;two similar menus&lt;/span&gt; and &lt;span style=&quot;font-weight: bold;&quot;&gt;two module positions&lt;/span&gt; corresponding to each menu.&lt;/li&gt;
&lt;li&gt;The &lt;span style=&quot;font-weight: bold;&quot;&gt;difference&lt;/span&gt; between the two will be that &lt;span style=&quot;font-weight: bold;&quot;&gt;one has a Login link&lt;/span&gt;, the &lt;span style=&quot;font-weight: bold;&quot;&gt;other has the Logout link&lt;/span&gt;.&lt;/li&gt;
&lt;li&gt;We will then insert a piece of code in the template to &lt;span style=&quot;font-weight: bold;&quot;&gt;toggle between the menus&lt;/span&gt; based on user login.&lt;/li&gt;
&lt;/ul&gt;
&lt;strong&gt;Steps:&lt;/strong&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Go to Site, Template Manager, Module Positions&lt;/li&gt;
&lt;li&gt;Create 2 new module positions: &lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;pos_menuguest&lt;/span&gt; and &lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;pos_leftmenureg&lt;/span&gt;.&lt;br /&gt;(These will be used to switch between the login and logout button)&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Go to Menu, Menu Manager&lt;/li&gt;
&lt;li&gt;Create 2 Menu&#39;s: &lt;span style=&quot;font-weight: bold;&quot;&gt;menuguest&lt;/span&gt; and &lt;span style=&quot;font-weight: bold;&quot;&gt;menureg&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Go to Menu, menuguest&lt;/li&gt;
&lt;li&gt;Add the menu items you want shown when you are NOT logged in&lt;/li&gt;
&lt;li&gt;Make sure that your &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;Login&lt;/span&gt;&quot; link is part of &lt;span style=&quot;font-weight: bold;&quot;&gt;menuguest&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Go to Menu, &lt;span style=&quot;font-weight: bold;&quot;&gt;menureg&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Add the content you want shown when you are logged in&lt;/li&gt;
&lt;li&gt;Make sure that the &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;Logout&lt;/span&gt;&quot; link is part of &lt;span style=&quot;font-weight: bold;&quot;&gt;menureg &lt;/span&gt;and&lt;span style=&quot;font-weight: bold;&quot;&gt; Login&lt;/span&gt; IS NOT PART of&lt;span style=&quot;font-weight: bold;&quot;&gt; menureg&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;To ensure that there is no problem, change the &lt;span style=&quot;font-style: italic;&quot;&gt;Access Level&lt;/span&gt; of the &lt;span style=&quot;font-weight: bold;&quot;&gt;Logout&lt;/span&gt; link to &quot;Registered&quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Go to Modules, Site Modules, &lt;span style=&quot;font-weight: bold;&quot;&gt;menuguest&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Assign it to position &lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;pos_menuguest&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Go to Modules, Site Modules, &lt;span style=&quot;font-weight: bold;&quot;&gt;menureg&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Assign it to position &lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;pos_menureg&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Open your index.php of your template&lt;br /&gt;(or go to Site &amp;gt; Template Manager &amp;gt; Site Template &amp;gt; Edit HTML)&lt;/li&gt;
&lt;li&gt;Add the following in the appropriate place&lt;br /&gt;(usually within the &quot;left_inner&quot; div or the position  in your template where you want the menu to appear)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre style=&quot;margin: 0px;&quot;&gt;&amp;lt;?php
if ($my-&amp;gt;id) {
  mosLoadModules (&#39;pos_menureg&#39;);
}
else {
  mosLoadModules(&#39;pos_menuguest&#39;);
}
?&amp;gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
If you have understood this procedure, you should be able to apply it to mod_login in a similar manner if required. This technique can be applied to other aspects of your site, like changing images, news items etc which depend on user login and cannot be controlled by joomla core.&lt;br /&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/change-login-link-to-logout-joomla.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-8263556407489256084</guid><pubDate>Wed, 07 Jul 2010 09:56:00 +0000</pubDate><atom:updated>2010-07-19T11:58:48.344+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gallery</category><category domain="http://www.blogger.com/atom/ns#">jQuery</category><title>Cloud Zoom – jQuery Image Zoom Plugin</title><description>Cloud Zoom is a lightweight  (6kb) image zoom plugin for jQuery that allow you to add image zooming functionality to any web pages. You can use this plugin to create zoomable images with different effect such as tint effect, inner zoom and soft focus.&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 512px;&quot;&gt;
&lt;a href=&quot;http://www.professorcloud.com/mainsite/cloud-zoom.htm&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Cloud Zoom – jQuery Image Zoom Plugin&quot; border=&quot;0&quot; src=&quot;http://nucus.com/techblog/wp-content/uploads/jquery/CloudZoom.jpg&quot; title=&quot;Cloud Zoom – jQuery Image Zoom Plugin&quot; width=&quot;422&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
Compared to the popular jQZoom plugin, Cloud Zoom is smaller, has more features and more robust compatibility across all browsers. By default, It works in a &quot;gallery mode&quot; which automatically display a list images, These are the ‘out of the box’ settings, with the big image appearing to the right of the small image. The appearance of the smaller image, lens and zoom window can be easily altered with regular CSS.
&lt;br /&gt;
&lt;br /&gt;
Features of Cloud Zoom&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 1. Cross browser compatible jQuery image zoom plugin&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 2. Easy integration with basic valid HTML&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 3. Lightweight 6Kb (minified) script.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 4. Smooth zoom movement.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 5. Gallery mode.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 6. Tint, soft focus and inner zoom features&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 7. Degrades gracefully with JavaScript turned off.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 8. Fully accessible with no CSS or text only browsers.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 9. It’s completely Free&lt;br /&gt;
&amp;nbsp;&amp;nbsp;10. intensity of tint is fully customizable&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Download : &lt;a href=&quot;http://www.professorcloud.com/downloads/cloud-zoom.1.0.2.zip&quot; target=&quot;_blank&quot;&gt;http://www.professorcloud.com/downloads/cloud-zoom.1.0.2.zip&lt;/a&gt;
&lt;br /&gt;
Website : &lt;a href=&quot;http://www.professorcloud.com/mainsite/cloud-zoom.htm&quot; target=&quot;_blank&quot;&gt;http://www.professorcloud.com/&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/cloud-zoom-jquery-image-zoom-plugin.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-8575723675375812259</guid><pubDate>Tue, 06 Jul 2010 09:21:00 +0000</pubDate><atom:updated>2010-07-19T11:59:27.888+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Icons</category><title>Ultimate Free icon pack by WooThemes</title><description>WooThemes have just released a fantastic free icon pack for web developers. The free download contains all 79 icons, sized at 256×256 pixels and available in both PNG and GIF formats.
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 590px;&quot;&gt;
&lt;a href=&quot;http://www.woothemes.com/free-downloads/wp-woothemes-ultimate-icon-set.zip&quot; target=&quot;_blank&quot;&gt;Ultimate Free icon pack by WooThemes&lt;/a&gt;
&lt;a href=&quot;http://www.woothemes.com/free-downloads/wp-woothemes-ultimate-icon-set.zip&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Ultimate Free icon pack by WooThemes&quot; border=&quot;0&quot; src=&quot;http://nucus.com/techblog/wp-content/uploads/icons/woo-themes-ultimate-icon-pack.jpg&quot; title=&quot;Ultimate Free icon pack by WooThemes&quot; width=&quot;422&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Download : &lt;a href=&quot;http://www.woothemes.com/free-downloads/wp-woothemes-ultimate-icon-set.zip&quot; target=&quot;_blank&quot;&gt;http://www.woothemes.com/free-downloads/wp-woothemes-ultimate-icon-set.zip&lt;/a&gt;
&lt;br /&gt;
Website : &lt;a href=&quot;http://www.woothemes.com/freebies/&quot; target=&quot;_blank&quot;&gt;http://www.webiconset.com/&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/ultimate-free-icon-pack-by-woothemes.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-1947315191903085460</guid><pubDate>Tue, 06 Jul 2010 09:10:00 +0000</pubDate><atom:updated>2010-07-19T12:00:04.575+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Icons</category><title>10 high quality E-Commerce icons in PNG format</title><description>E-Commerce Icon Set inclides Products on Sale, New Porducts, Checkout, Secure Payment, Credit Cards, Delivery, Shopping Bag, Empty Shopping Bag, Shopping Cart, Empty Shopping Cart.
Usage: Free for Personal and Commercial Projects &lt;b&gt;(Size: 128, 64, 48, 32px)
&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 590px;&quot;&gt;
&lt;a href=&quot;http://www.webiconset.com/downloads/e-commerce-icons.zip&quot; target=&quot;_blank&quot;&gt;10 High Quality E-Commerce Icons in PNG Format&lt;/a&gt;
&lt;a href=&quot;http://www.webiconset.com/downloads/e-commerce-icons.zip&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;10 High Quality E-Commerce Icons in PNG Format&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://nucus.com/techblog/wp-content/uploads/icons/10-high-quality-e-commerce-icons-in-png-format.jpg&quot; title=&quot;10 High Quality E-Commerce Icons in PNG Format&quot; width=&quot;570&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Download : &lt;a href=&quot;http://www.webiconset.com/downloads/e-commerce-icons.zip%22&quot; target=&quot;_blank&quot;&gt;http://www.webiconset.com/downloads/e-commerce-icons.zip&lt;/a&gt;&lt;br /&gt;
Website : &lt;a href=&quot;http://www.webiconset.com/&quot; target=&quot;_blank&quot;&gt;http://www.webiconset.com/&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/10-high-quality-e-commerce-icons-in-png.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-666745565841528833</guid><pubDate>Mon, 05 Jul 2010 04:40:00 +0000</pubDate><atom:updated>2010-07-19T12:00:13.766+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Icons</category><title>E-Commerce Icon Sets</title><description>&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://webtoolkit4.me/2009/01/30/100-free-icons-weby-icon-se/&quot; target=&quot;_blank&quot;&gt;Weby Icon Set&lt;/a&gt;&lt;a href=&quot;http://webtoolkit4.me/2009/01/30/100-free-icons-weby-icon-se/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Weby-Icon-Set&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://nucus.com/techblog/wp-content/uploads/icons/Weby-Icon-Set.jpg&quot; title=&quot;Weby-Icon-Set&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.mezzoblue.com/icons/chalkwork/payments/&quot; target=&quot;_blank&quot;&gt;Chalkwork Payments&lt;/a&gt;
&lt;a href=&quot;http://www.mezzoblue.com/icons/chalkwork/payments/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Chalkwork Payments&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://www.nucus.com/techblog/icons/chalkwork-payments.jpg&quot; title=&quot;Chalkwork Payments&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.fineicons.com/en/free-icons/credit-cards/&quot; target=&quot;_blank&quot;&gt;Credit Cards Icons&lt;/a&gt;
&lt;a href=&quot;http://www.fineicons.com/en/free-icons/credit-cards/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Credit Cards Icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://www.nucus.com/techblog/icons/Credit-Cards-Icons-in-Detail.jpg&quot; title=&quot;Credit Cards Icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/e-commerce-icon-sets.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-4851390155292206842</guid><pubDate>Fri, 02 Jul 2010 12:29:00 +0000</pubDate><atom:updated>2010-07-02T18:12:40.498+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Downloads</category><category domain="http://www.blogger.com/atom/ns#">Icons</category><title>Web Application Icons</title><description>&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/GiNUX-126818033&quot; target=&quot;_blank&quot;&gt;GiNUX&lt;/a&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/GiNUX-126818033&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;GiNUX&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/GiNUX.jpg&quot; title=&quot;GiNUX&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/Alcohol-124978275&quot; target=&quot;_blank&quot;&gt;Alcohol&lt;/a&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/Alcohol-124978275&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Alcohol&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/Alcohol.jpg&quot; title=&quot;Alcohol&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.mezzoblue.com/icons/chalkwork/html/&quot; target=&quot;_blank&quot;&gt;chalkwork   html&lt;/a&gt;
&lt;a href=&quot;http://www.mezzoblue.com/icons/chalkwork/html/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;chalkwork&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/chalkwork.jpg&quot; title=&quot;chalkwork&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://37signals.com/svn/posts/1844-open-source-icons/&quot; target=&quot;_blank&quot;&gt;open   source icons&lt;/a&gt;
&lt;a href=&quot;http://37signals.com/svn/posts/1844-open-source-icons/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;open-source-icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/open-source-icons.jpg&quot; title=&quot;open-source-icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.webdesignerdepot.com/2009/07/200-free-exclusive-vector-icons-primo/&quot; target=&quot;_blank&quot;&gt;primo&lt;/a&gt;
&lt;a href=&quot;http://www.webdesignerdepot.com/2009/07/200-free-exclusive-vector-icons-primo/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;primo&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/primo.jpg&quot; title=&quot;primo&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.webdesignerdepot.com/2009/03/200-free-exclusive-icons-siena/&quot; target=&quot;_blank&quot;&gt;siena&lt;/a&gt;
&lt;a href=&quot;http://www.webdesignerdepot.com/2009/03/200-free-exclusive-icons-siena/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;siena&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/siena.jpg&quot; title=&quot;siena&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://iconeden.com/icon/shine.html&quot; target=&quot;_blank&quot;&gt;shine&lt;/a&gt;
&lt;a href=&quot;http://iconeden.com/icon/shine.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;shine&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/shine.jpg&quot; title=&quot;shine&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://icondock.com/free/20-free-shiny-icons&quot; target=&quot;_blank&quot;&gt;shiny&lt;/a&gt;
&lt;a href=&quot;http://icondock.com/free/20-free-shiny-icons&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;shiny&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/shiny.jpg&quot; title=&quot;shiny&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://templay-team.deviantart.com/art/Standard-Iconset-126393911/&quot; target=&quot;_blank&quot;&gt;Standard Iconset&lt;/a&gt;
&lt;a href=&quot;http://templay-team.deviantart.com/art/Standard-Iconset-126393911&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Standard-Iconset&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/Standard-Iconset.jpg&quot; title=&quot;Standard-Iconset&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://people.freedesktop.org/~jimmac/icons/#git&quot; target=&quot;_blank&quot;&gt;Gnome Icon&lt;/a&gt;
&lt;a href=&quot;http://people.freedesktop.org/~jimmac/icons/#git&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;gnome-icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/gnome-icons.jpg&quot; title=&quot;gnome-icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/04/27/project-icon-set-for-free-download/&quot; target=&quot;_blank&quot;&gt;project icon set&lt;/a&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/04/27/project-icon-set-for-free-download/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;project-icon-set&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/project-icon-set.jpg&quot; title=&quot;project-icon-set&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://macthemes.net/forum/viewtopic.php?id=16796237&quot; target=&quot;_blank&quot;&gt;Absque&lt;/a&gt;
&lt;a href=&quot;http://macthemes.net/forum/viewtopic.php?id=16796237&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Absque&quot; border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://animatedperson.webs.com/icons/Absque.jpg&quot; title=&quot;Absque&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://code.google.com/p/google-maps-icons/&quot; target=&quot;_blank&quot;&gt;google-maps-icons&lt;/a&gt;
&lt;a href=&quot;http://code.google.com/p/google-maps-icons/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;google-maps-icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/google-maps-icons.jpg&quot; title=&quot;google-maps-icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.jankoatwarpspeed.com/post/2009/09/17/sixpack-status-icons.aspx&quot; target=&quot;_blank&quot;&gt;Sixpack   status – free icon pack&lt;/a&gt;
&lt;a href=&quot;http://www.jankoatwarpspeed.com/post/2009/09/17/sixpack-status-icons.aspx&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Sixpack-status&quot; border=&quot;0&quot; height=&quot;260&quot; src=&quot;http://animatedperson.webs.com/icons/Sixpack-status.jpg&quot; title=&quot;Sixpack-status&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/06/18/freebie-release-quartz-icon-set/&quot; target=&quot;_blank&quot;&gt;quartz   icon set&lt;/a&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/06/18/freebie-release-quartz-icon-set/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;quartz-icon-set&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/quartz-icon-set.jpg&quot; title=&quot;quartz-icon-set&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.freeiconsdownload.com/Big_Preview.asp?id=573&quot; target=&quot;_blank&quot;&gt;office Icons&lt;/a&gt;&lt;a href=&quot;http://www.freeiconsdownload.com/Big_Preview.asp?id=573&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;office-Icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/office-Icons.jpg&quot; title=&quot;office-Icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/MinIcons-115690703&quot; target=&quot;_blank&quot;&gt;MinIcons&lt;/a&gt;
&lt;a href=&quot;http://kyo-tux.deviantart.com/art/MinIcons-115690703&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;minicons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/minicons.jpg&quot; title=&quot;minicons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.icojoy.com/articles/49/&quot; target=&quot;_blank&quot;&gt;web development icons&lt;/a&gt;
&lt;a href=&quot;http://www.icojoy.com/articles/49/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Free-web-development-icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/Free-web-development-icons.jpg&quot; title=&quot;Free-web-development-icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/01/05/stationery-icons-soccer-icons-and-atlantic-wordpress-theme/&quot; target=&quot;_blank&quot;&gt;Stationery   Icon Set&lt;/a&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2009/01/05/stationery-icons-soccer-icons-and-atlantic-wordpress-theme/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Stationery-Icon-Set&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/Stationery-Icon-Set.jpg&quot; title=&quot;Stationery-Icon-Set&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://icondock.com/free/20-free-blockie-icons&quot; target=&quot;_blank&quot;&gt;blockie   icons&lt;/a&gt;
&lt;a href=&quot;http://icondock.com/free/20-free-blockie-icons&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;blockie-icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/blockie-icons.jpg&quot; title=&quot;blockie-icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://icondock.com/free/20-free-blockie-icons&quot; target=&quot;_blank&quot;&gt;Sleek XP   Basic Icons&lt;/a&gt;
&lt;a href=&quot;http://www.freeiconsdownload.com/Free_Downloads.asp?id=415&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Sleek-XP-Basic-Icons&quot; border=&quot;0&quot; height=&quot;340&quot; src=&quot;http://animatedperson.webs.com/icons/Sleek-XP-Basic-Icons.jpg&quot; title=&quot;Sleek-XP-Basic-Icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 510px;&quot;&gt;
&lt;a href=&quot;http://icondock.com/free/15-free-origami-icons&quot; target=&quot;_blank&quot;&gt;Origami   Icons&lt;/a&gt;
&lt;a href=&quot;http://icondock.com/free/15-free-origami-icons&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Origami-Icons&quot; border=&quot;0&quot; height=&quot;400&quot; src=&quot;http://animatedperson.webs.com/icons/Origami-Icons.jpg&quot; title=&quot;Origami-Icons&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/web-application-icons.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-1549695667167118893</guid><pubDate>Thu, 01 Jul 2010 12:44:00 +0000</pubDate><atom:updated>2010-07-01T18:20:19.908+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">Menu</category><title>Create Vimeo Like Top Navigation</title><description>&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-01.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Most is the menu that drops down when you hover search box. It offers you different search options that you can choose and narrow your search.&lt;br /&gt;
The base for this tutorial is simple CSS drop down menu based on unordered list. The structure is visually described in the image below: 
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-02.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;As you can see we have UL with four items. The first one is logo with 
short submenu. Then comes login link, Help link with submenu and search 
item with submenu. Each submenu is being shown when hover corresponding 
link.
&lt;br /&gt;
&lt;h3&gt;HTML&lt;/h3&gt;
&lt;pre&gt;&amp;lt;ul id=&quot;menu&quot;&amp;gt;    
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;logo&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img style=&quot;float:left;&quot; alt=&quot;&quot; src=&quot;menu_left.png&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul id=&quot;main&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;Welcome to &amp;lt;b&amp;gt;Create Vimeo-like top   navigation&amp;lt;/b&amp;gt; tutorial!&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Login&amp;lt;/a&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Help&amp;lt;/a&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul id=&quot;help&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;General   help&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Posts&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Pages&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;searchContainer&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type=&quot;text&quot; id=&quot;searchField&quot; /&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img src=&quot;magnifier.png&quot; alt=&quot;Search&quot; onclick=&quot;alert(&#39;You   clicked on search button&#39;)&quot; /&amp;gt;&amp;lt;/div&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul id=&quot;search&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;input id=&quot;cbxAll&quot; type=&quot;checkbox&quot;   /&amp;gt;All&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;input id=&quot;Articles&quot; type=&quot;checkbox&quot;   /&amp;gt;Articles&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;input id=&quot;Tutorials&quot; type=&quot;checkbox&quot;   /&amp;gt;Tutorials&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;input id=&quot;Reviews&quot; type=&quot;checkbox&quot;   /&amp;gt;Reviews&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;input id=&quot;Resources&quot; type=&quot;checkbox&quot;   /&amp;gt;Resources&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;lt;/ul&amp;gt;     
  &amp;lt;img style=&quot;float:left;&quot; alt=&quot;&quot; src=&quot;menu_right.png&quot;/&amp;gt; &lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;CSS&lt;/h3&gt;
&lt;pre&gt;/* menu */    
  #menu{ margin:0px; padding:0px; list-style:none; color:#fff;   line-height:45px; display:inline-block;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; float:left; z-index:1000; }     
  #menu a { color:#fff; text-decoration:none; }     
  #menu &amp;gt; li {background:#172322 none repeat scroll 0 0;   cursor:pointer; float:left; position:relative;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; padding:0px 10px;}     
  #menu &amp;gt; li a:hover {color:#B0D730;}     
  #menu .logo {background:transparent none repeat scroll 0% 0%;   padding:0px;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; background-color:Transparent;}     
  /* sub-menus*/     
  #menu ul { padding:0px; margin:0px; display:block; display:inline;}     
  #menu li ul { position:absolute; left:-10px; top:0px; margin-top:45px;   width:150px; line-height:16px;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; background-color:#172322; color:#0395CC; /* for IE */ display:none; }       
  #menu li:hover ul { display:block;}     
  #menu li ul li{ display:block; margin:5px 20px; padding: 5px 0px;&amp;nbsp;   border-top: dotted 1px #606060;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; list-style-type:none; }     
  #menu li ul li:first-child { border-top: none; }     
  #menu li ul li a { display:block; color:#0395CC; }     
  #menu li ul li a:hover { color:#7FCDFE; }     
  /* main submenu */     
  #menu #main { left:0px; top:-20px; padding-top:20px;   background-color:#7cb7e3; color:#fff;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; z-index:999;}     
  /* search */     
  .searchContainer div { background-color:#fff; display:inline;   padding:5px;}     
  .searchContainer input[type=&quot;text&quot;] {border:none;}     
  .searchContainer img { vertical-align:middle;} &lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
But as you can see this is far away from the good looking Vimeo 
navigation. It is functional, of course, but we need that pretty rounded
 corners everywhere. The solution is actually simple and it is described
 in the image below:
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo-01.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;submenu&lt;/h3&gt;
&lt;pre&gt;&amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Help&amp;lt;/a&amp;gt;    
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul id=&quot;help&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class=&quot;corner_inset_left&quot; alt=&quot;&quot;   src=&quot;corner_inset_left.png&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href=&quot;#&quot;&amp;gt;General help&amp;lt;/a&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class=&quot;corner_inset_right&quot; alt=&quot;&quot;   src=&quot;corner_inset_right.png&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Posts&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#&quot;&amp;gt;Pages&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;last&quot;&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class=&quot;corner_left&quot; alt=&quot;&quot;   src=&quot;corner_left.png&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class=&quot;middle&quot; alt=&quot;&quot; src=&quot;dot.gif&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class=&quot;corner_right&quot; alt=&quot;&quot;   src=&quot;corner_right.png&quot;/&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;     
  &amp;lt;/li&amp;gt; &lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;Corners&lt;/h3&gt;
&lt;pre&gt;/* corners*/    
  #menu .corner_inset_left { position:absolute; top:0px; left:-12px;}     
  #menu .corner_inset_right { position:absolute; top:0px; left:150px;}       
  #menu .last { background:transparent none repeat scroll 0% 0%;   margin:0px; padding:0px;     
  &amp;nbsp;&amp;nbsp;&amp;nbsp; border:none; position:relative; border:none; height:0px;}     
  #menu .corner_left { position:absolute; left:0px; top:0px;}     
  #menu .corner_right { position:absolute; left:132px; top:0px;}     
  #menu .middle { position:absolute; left:18px; height: 20px; width:   115px; top:0px;} &lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
  &lt;tbody&gt;
&lt;tr&gt;
    &lt;td align=&quot;left&quot; width=&quot;55&quot;&gt;&lt;img align=&quot;absmiddle&quot; alt=&quot;&quot; src=&quot;http://animatedperson.webs.com/images/demo_icon.png&quot; /&gt;&lt;/td&gt;
    &lt;td align=&quot;left&quot;&gt;&lt;a class=&quot;Demo&quot; href=&quot;http://animatedperson.webs.com/menu/vimeo/vimeo_navigation.html&quot; target=&quot;_blank&quot;&gt;DEMO&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;</description><link>http://igpstechblog.blogspot.com/2010/07/create-vimeo-like-top-navigation.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-3165323974883276953</guid><pubDate>Wed, 30 Jun 2010 12:17:00 +0000</pubDate><atom:updated>2010-06-30T17:47:47.693+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jQuery</category><category domain="http://www.blogger.com/atom/ns#">VideoPlayer</category><title>Video Player for HTML5</title><description>This is the list of HTML5 Video Player that can use in your site:&lt;br /&gt;
1. &lt;strong&gt;&lt;a href=&quot;http://protofunc.com/jme/&quot; target=&quot;_blank&quot;&gt;jMediaelement&lt;/a&gt;&lt;/strong&gt; is a jQuery HTML audio-video development kit with can fallback to Flash and VLC for incompatible browsers.&lt;br /&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/jmediaelement/&quot;&gt;&lt;img alt=&quot;jmediaelement&quot; height=&quot;255&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/jmediaelement.jpg&quot; title=&quot;jmediaelement&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://protofunc.com/jme/&quot; target=&quot;_blank&quot;&gt;http://protofunc.com/jme/&lt;/a&gt;&lt;br /&gt;
2. &lt;strong&gt;&lt;a href=&quot;http://videojs.com/&quot; target=&quot;_blank&quot;&gt;Video JS&lt;/a&gt;&lt;/strong&gt; is a JavaScript-based HTML5 video player that falls back to Flowplayer for unsupported browsers .&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/video-js/&quot;&gt;&lt;img alt=&quot;Video JS&quot; height=&quot;204&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/video-js.jpg&quot; title=&quot;video-js&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Video JS&lt;/div&gt;
&lt;a href=&quot;http://videojs.com/&quot; target=&quot;_blank&quot;&gt;http://videojs.com/&lt;/a&gt;&lt;br /&gt;
3. &lt;strong&gt;&lt;a href=&quot;http://www.longtailvideo.com/support/jw-player/jw-player-for-html5&quot; target=&quot;_blank&quot;&gt;JW Player&lt;/a&gt;&lt;/strong&gt; For HTML5 is a totally skinnable and configurable player based on the  tag of HTML5.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/html5-jw-player/&quot;&gt;&lt;img alt=&quot;JW Player For HTML5&quot; height=&quot;263&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/html5-jw-player.jpg&quot; title=&quot;html5-jw-player&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
JW Player For HTML5&lt;/div&gt;
&lt;a href=&quot;http://www.longtailvideo.com/support/jw-player/jw-player-for-html5&quot; target=&quot;_blank&quot;&gt;http://www.longtailvideo.com/support/jw-player/jw-player-for-html5&lt;/a&gt;&lt;br /&gt;
4. &lt;strong&gt;&lt;a href=&quot;http://www.chipwreck.de/blog/software/cwvideo/&quot; target=&quot;_blank&quot;&gt;CwVideo&lt;/a&gt;&lt;/strong&gt; is a toolkit for using and controlling HTML5 video with MooTools.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/cwvideo/&quot;&gt;&lt;img alt=&quot;CwVideo&quot; height=&quot;328&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/cwvideo.jpg&quot; title=&quot;cwvideo&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
CwVideo&lt;/div&gt;
&lt;a href=&quot;http://www.chipwreck.de/blog/software/cwvideo/&quot; target=&quot;_blank&quot;&gt;http://www.chipwreck.de/blog/software/cwvideo/&lt;/a&gt;&lt;br /&gt;
5. &lt;strong&gt;&lt;a href=&quot;http://corp.kaltura.com/&quot; target=&quot;_blank&quot;&gt;Kaltura&lt;/a&gt;&lt;/strong&gt;, an advanced video publishing platform, is sharing a free and open source HTML5 Video &amp;amp; Media JavaScript Library.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/kaltura-html5-video/&quot;&gt;&lt;img alt=&quot;Kaltura&quot; height=&quot;199&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/kaltura-html5-video.jpg&quot; title=&quot;kaltura-html5-video&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Kaltura&lt;/div&gt;
&lt;a href=&quot;http://corp.kaltura.com/&quot; target=&quot;_blank&quot;&gt;http://corp.kaltura.com/&lt;/a&gt;&lt;br /&gt;
6. &lt;strong&gt;&lt;a href=&quot;http://www.mediafront.org/project/osmplayer&quot; target=&quot;_blank&quot;&gt;OSM Player&lt;/a&gt;&lt;/strong&gt; is a highly customizable and open source HTML5 media player that is built with jQuery.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/osm-player/&quot;&gt;&lt;img alt=&quot;OSM Player&quot; height=&quot;291&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/osm-player.jpg&quot; title=&quot;osm-player&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
OSM Player&lt;/div&gt;
&lt;a href=&quot;http://www.mediafront.org/project/osmplayer&quot; target=&quot;_blank&quot;&gt;http://www.mediafront.org/project/osmplayer&lt;/a&gt;&lt;br /&gt;
7. &lt;strong&gt;&lt;a href=&quot;http://www.filenew.org/projekktor/&quot; target=&quot;_blank&quot;&gt;Projekktor&lt;/a&gt;&lt;/strong&gt; is an open source HTML5 video player that is built with pure JavaScript but uses Flash when there is no native H.264 support.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/projekktor/&quot;&gt;&lt;img alt=&quot;Projekktor&quot; height=&quot;203&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/projekktor.jpg&quot; title=&quot;projekktor&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Projekktor&lt;/div&gt;
&lt;a href=&quot;http://www.filenew.org/projekktor/&quot; target=&quot;_blank&quot;&gt;http://www.filenew.org/projekktor/&lt;/a&gt;&lt;br /&gt;
8. &lt;strong&gt;&lt;a href=&quot;http://camendesign.com/code/video_for_everybody&quot; target=&quot;_blank&quot;&gt;Video For Everybody&lt;/a&gt;&lt;/strong&gt; is a smartly created HTML code for embedding videos into websites using the HTML5  element.&lt;br /&gt;
&lt;div style=&quot;width: 490px;&quot;&gt;
&lt;a href=&quot;http://inwebdeveloper.com/2010/06/17/8-html5-video-player/video-for-everybody/&quot;&gt;&lt;img alt=&quot;Video For Everybody&quot; height=&quot;249&quot; src=&quot;http://animatedperson.webs.com/downloads/video-player/video-for-everybody.jpg&quot; title=&quot;video-for-everybody&quot; width=&quot;480&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Video For Everybody&lt;/div&gt;
&lt;a href=&quot;http://camendesign.com/code/video_for_everybody&quot; target=&quot;_blank&quot;&gt;http://camendesign.com/code/video_for_everybody&lt;/a&gt;</description><link>http://igpstechblog.blogspot.com/2010/06/video-player-for-html5.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-3695897452751750255</guid><pubDate>Wed, 30 Jun 2010 07:21:00 +0000</pubDate><atom:updated>2010-06-30T12:51:27.218+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Database</category><category domain="http://www.blogger.com/atom/ns#">Downloads</category><category domain="http://www.blogger.com/atom/ns#">PHP</category><title>MyClientBase - Open Source Web Invoice Management</title><description>&lt;a href=&quot;http://www.myclientbase.com/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;MyClientBase&lt;/a&gt;
 is Free and Open Source Software &lt;br /&gt;
MyClientBase is a simple, intuitive, free and open source web based 
invoice management system developed with freelancers in mind.&lt;br /&gt;
On MyClientBase web invoice management, you can create invoices, view
 payments, invoice reports and effective client invoice data management.
 The Dashboard will be displayed upon first logging in to MyClientBase. 
The Dashboard contains a recent list of open and closed invoices, and 
may contain other dashboard widgets from custom modules.&lt;br /&gt;
This web invoice management application is built from with PHP 
CodeIgniter framework with MySQL database supported.
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/downloads/MyClientBase.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/downloads/MyClientBase.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Requirements : PHP, MySQL, Apache&lt;br /&gt;
Download : &lt;a href=&quot;http://www.myclientbase.com/myclientbase/download&quot; target=&quot;_blank&quot;&gt;http://www.myclientbase.com/myclientbase/download&lt;/a&gt;&lt;br /&gt;
Documentation : &lt;a href=&quot;http://www.myclientbase.com/myclientbase&quot; target=&quot;_blank&quot;&gt;http://www.myclientbase.com/myclientbase&lt;/a&gt;/documentation&lt;br /&gt;
Lisence : GNU GENERAL PUBLIC LICENSE.
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/06/myclientbase-open-source-web-invoice.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-4027303218341317719</guid><pubDate>Wed, 30 Jun 2010 07:15:00 +0000</pubDate><atom:updated>2010-06-30T12:45:52.582+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Downloads</category><title>Simple Invoices: Open Source Web-based Invoicing</title><description>&lt;a href=&quot;http://www.simpleinvoices.org/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Simple
 Invoices&lt;/a&gt; is a simple, free/open source, And web-based invoicing 
system.&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 460px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/downloads/simple_easy_invoice.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/downloads/simple_easy_invoice.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Some great feature:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Web based application&lt;/li&gt;
&lt;li&gt;Keep track of your money&lt;/li&gt;
&lt;li&gt;Email your invoices as PDF&lt;/li&gt;
&lt;li&gt;Multiple invoice types&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;link_box&quot;&gt;
Demo: &lt;a href=&quot;http://www.simpleinvoices.org/demo&quot; target=&quot;_blank&quot;&gt;http://www.simpleinvoices.org/demo&lt;/a&gt;&lt;br /&gt;
Download: &lt;a href=&quot;http://www.simpleinvoices.org/start#get&quot; target=&quot;_blank&quot;&gt;http://www.simpleinvoices.org/start#get&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/06/simple-invoices-open-source-web-based.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-3747861291526356372</guid><pubDate>Wed, 30 Jun 2010 06:53:00 +0000</pubDate><atom:updated>2010-06-30T12:24:52.466+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jQuery</category><title>AeroWindow - Plugin for jQuery</title><description>AeroWindow - Plugin for jQuery - Windows Aero Style for Web sites 
&lt;br /&gt;
AeroWindow create pop-up window in the Aero style, inspired by the style of Window7. The popup window offers the usual options and full functionality similar to Windows windows. 
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/downloads/AeroWindow-Teaser.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/downloads/AeroWindow-Teaser.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
Features&lt;/h3&gt;
&lt;div class=&quot;ce_text block&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Special feature:&lt;/strong&gt; Live animated Aero Glossy look 
(see header when moving) &lt;/li&gt;
&lt;li&gt;Usual window buttons: Minimize, Zoom, Maximize and Close &lt;/li&gt;
&lt;li&gt;Double-click support, such as in windows (maximize, zoom out) &lt;/li&gt;
&lt;li&gt;Active window is highlighted visually, as in Windows &lt;/li&gt;
&lt;li&gt;User-infinitely scalable window size &lt;/li&gt;
&lt;li&gt;Sliding window by mouse dragging &lt;/li&gt;
&lt;li&gt;Usual Z-order management, as in Windows &lt;/li&gt;
&lt;li&gt;+ Animated changing the window size &lt;/li&gt;
&lt;li&gt;+ Multiple configuration options &lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
Configuration options&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Window Title &lt;/li&gt;
&lt;li&gt;Window Start Position X / Y (possible should also centered) &lt;/li&gt;
&lt;li&gt;Standard Window Size &lt;/li&gt;
&lt;li&gt;Minimum window size &lt;/li&gt;
&lt;li&gt;Status at the open window (minimized, maximized, normal) &lt;/li&gt;
&lt;li&gt;Window animation (30 different easing methods) &lt;/li&gt;
&lt;li&gt;Window generation by mouse events &amp;amp; JavaScript function calls &lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;








Compatibility tested in the following browsers &lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Internet Explorer 6 &lt;/li&gt;
&lt;li&gt;Internet Explorer 7 &lt;/li&gt;
&lt;li&gt;Internet Explorer 8 &lt;/li&gt;
&lt;li&gt;Mozilla Firefox 3 &lt;/li&gt;
&lt;li&gt;Google Chrome 4 &lt;/li&gt;
&lt;li&gt;Apple Safari 4 &lt;/li&gt;
&lt;li&gt;Opera 10 &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class=&quot;ce_text block&quot;&gt;
&lt;h3&gt;

Easy to use with existing websites &lt;/h3&gt;
Use AeroWindow into your existing website. The integration is easy.&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;


The simplest way to link AeroWindow:&lt;/h3&gt;
&lt;pre&gt;$ (&#39;# YourContainerDiv&#39;). AeroWindow ((WindowTitle: &#39;My first very cool Aero Window for Web&#39;,));&lt;/pre&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 19px; font-weight: bold;&quot;&gt;Special configuration requirements can be optionally add simple:&lt;/span&gt;&lt;br /&gt;
&lt;pre&gt;$ (&#39;# YourContainerDiv&#39;). AeroWindow ((WindowTitle: &#39;My first very cool Aero Window for Web&#39;, 
WindowPositionTop: &#39;center&#39;, WindowPositionLeft: &#39;center&#39;, WindowWidth: 600, WindowHeight: 400, 
WindowMinWidth: 100, WindowMinHeight: 100, Window Animation Speed: 500, 
Window Animation: &#39;easeOutCubic&#39; WindowResizable: true, WindowDraggable: true, 
WindowMinimize: true, WindowMaximize: false, WindowClosable: true));&lt;/pre&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Demo: &lt;a href=&quot;http://www.soyos.net/tl_files/demos/aero-window/&quot; target=&quot;_blank&quot;&gt;http://www.soyos.net/tl_files/demos/aero-window/&lt;/a&gt;&lt;br /&gt;
Download: &lt;a href=&quot;http://www.soyos.net/tl_files/downloads/AeroWindow-jQuery-Plugin-Version-3.5.zip&quot; target=&quot;_blank&quot;&gt;http://www.soyos.net/tl_files/downloads/AeroWindow-jQuery-Plugin-Version-3.5.zip&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/06/aerowindow-plugin-for-jquery.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3764812906899522206.post-4451659391690745095</guid><pubDate>Wed, 30 Jun 2010 06:18:00 +0000</pubDate><atom:updated>2010-06-30T11:49:10.898+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Database</category><category domain="http://www.blogger.com/atom/ns#">Downloads</category><title>Sypex Dumper: Free web application for backups MySQL databases</title><description>&lt;b&gt;&lt;a href=&quot;http://sypex.net/en/&quot; target=&quot;_blank&quot;&gt;Sypex Dumper&lt;/a&gt;&lt;/b&gt;  is free web application for backups of MySQL databases. It is built with PHP, has an Ajaxed interface &amp;amp; can restore databases as well.
&lt;br /&gt;
The application can work with gb-level huge databases as it easily bypasses the timeout limits of PHP by pausing/starting backup jobs.
&lt;br /&gt;
&lt;div class=&quot;img_box separator&quot; style=&quot;clear: both; text-align: center; width: 570px;&quot;&gt;
&lt;a href=&quot;http://animatedperson.webs.com/downloads/sypex-dumper.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://animatedperson.webs.com/downloads/sypex-dumper.png&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
Sypex Dumper can optionally check, optimize &amp;amp; repair tables or 
automatically delete older backups to save space.&lt;br /&gt;
&lt;br /&gt;
It has support for file compression (Gzip and Bzip2) &amp;amp; offers a 
multilingual interface.&lt;br /&gt;
&lt;br /&gt;
Sypex Dumper is licensed under the BSD license, i.e. it is absolutely
 free. Sypex Dumper is also integration into &lt;a href=&quot;http://wordpress.org/&quot; target=&quot;_blank&quot;&gt;WordPress&lt;/a&gt; 2.9.x and &lt;a href=&quot;http://www.vbulletin.com/&quot; target=&quot;_blank&quot;&gt;vBulletin&lt;/a&gt; 3.8.xs&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;link_box&quot;&gt;
Website: &lt;a href=&quot;http://sypex.net/en/&quot; target=&quot;_blank&quot;&gt;http://sypex.net/en/&lt;/a&gt;&lt;br /&gt;
Download: &lt;a href=&quot;http://sypex.net/en/products/dumper/downloads/&quot; target=&quot;_blank&quot;&gt;http://sypex.net/en/products/dumper/downloads/&lt;/a&gt;&lt;br /&gt;
Documentation: &lt;a href=&quot;http://sypex.net/en/products/dumper/docs/&quot; target=&quot;_blank&quot;&gt;http://sypex.net/en/products/dumper/docs/&lt;/a&gt;
&lt;/div&gt;</description><link>http://igpstechblog.blogspot.com/2010/06/sypex-dumper-free-web-application-for.html</link><author>noreply@blogger.com (Blog Admin)</author><thr:total>0</thr:total></item></channel></rss>