Monday 4 December 2023

Create simple CSS horizontal navigation menu with drop down submenu


Create simple CSS horizontal navigation menu with drop down submenu 


Author : Bikram Choudhury . He teaches various computer subjects and programming languages like C C++ / Java / PHP MySQL / HTML / HTML5 /CSS /JavaScript / jQuery online. Visit www.onlinecomputerteacher.net for details.

About this tutorial : Please check the completed menu here, your ultimate menu will be this . At the bottom whole code given.

Ad Code Start

Add Cod End



You will be able to create a top level horizontal navigation menu which may or maynot have submenus. This type of menus sometimes called as NAV menu or suckerfish menu… when you will mouse over on them, then sub menu will be shown (if that menu item has sub level menu). I have kept this menu as simple as possible to look. No effects, background has been used. These will be added in future tutorials. But this is the basic tutorial.

In this tutorial we have created and shown submenus upto sub menu level 4. The initial horizontal navigation menu is called top level menu item and each menu item in it can have upto 4 level down sub menus.Though you can go more to create few levels more if required so.

The first step: create the top level menu item. Though I am calling it a menu, but this is nothing but an unordered list or UL block which contains LI elements.

The HTML code : Create a basic menu like the following.. always put the code in HTML section of a webpage and put it under BODY tag. You can wrap the following code in a DIV tag also. But that is a different article.

<ul id="nav">
  <li><a href="#">0. Home</a></li>
  <li><a href="#">1. L1- (upto 3 level sub menu will be under it)</a></li>
  <li><a href="#">2. Level-1</a></li>
  <li><a href="#">3. L1-(upto 4 level sub menu will be under it)</a></li>
</ul>

This will show like the following menu. This will be the top level menu, now its vertical, but soon it will be horizontal. For your convenience I have mentioned the submenu information in menu text.

The above menu appears like this in Web Browsers:

    0. Home
    1. L1-(upto 3 level sub menu will be under it)
    2. Level-1
    3. L1-(upto 4 level sub menu will be under it)

Normally these menus are shown vertically. Now we shall add few submenus (sub UL blocks under LI elements ) under them as given below.

How to add sublist under a list item -
<ul>
  <li><a href="http://www.rankingoogle.com">1. Get Google top ranking</a>
    <ul>
      <li><a href="http://www.rankingoogle.com/seo_services.php">1.1 Services</a></li>
      <li><a href="http://www.rankingoogle.com/seoupdation/">More about seo</a></li>
    </ul>
  <li><a href="http://www.rankingoogle.com/seo/top_10_ranking.php">Top 10 search engine ranking</a></li>
</ul>

The above menu is a normal menu (or Unordered List, what ever you say it. )

Notice: after </a> we have inserted a UL block in italics here, which is inside the <LI></LI>, this is the basic syntax of a submenu under a list item (LI).

In the following example we have created a fresh menu and the first sub menu appears under 2nd List Item of top level nav menu which is UL (Unordered List ) of ID = nav. You can put any URL , e.g http://www.google.com or any relative or absolute URL instead of # in list items href section..

The HTML code :

<ul id="nav">
<li><a href="#">0. Home</a></li>
<li><a href="#">1. L1- (3 menus will be under this menu)</a>
 <ul>
  <li><a href="#">1.1. Sub-Level-1</a></li>
  <li><a href="#">1.2. SL-l (2 menus will be under this menu)</a></li>
  <li><a href="#">1.3. Sub-Level-1</a></li>
  <li><a href="#">1.4. Sub-Level-1</a></li>
 </ul>
</li>
<li><a href="#">2. Level-1</a></li>
<li><a href="#">3. L1-(4 menus will be under this menu)</a>
 <ul>
  <li><a href="#">3.1. Sub-Level-1</a></li>
  <li><a href="#">3.2. Sub-Level-1</a></li>
  <li><a href="#">3.3. SL-1- (3 menus will be under this menu)</a></li>
  <li><a href="#">3.4. Sub-Level-1</a></li>
 </ul>
</li>
</ul>

The above menu appears like this in Web Browsers:

    0. Home
    1. L1- (3 menus will be under this menu)
        1.1. Sub-Level-1
        1.2. SL-l (2 menus will be under this menu)
        1.3. Sub-Level-1
        1.4. Sub-Level-1
    2. Level-1
    3. L1-(4 menus will be under this menu)
        3.1. Sub-Level-1
        3.2. Sub-Level-1
        3.3. SL-1- (3 menus will be under this menu)
        3.4. Sub-Level-1

Now expand the list more by adding more sub menus. So carry on creating sub menus and finally build a menu using the folloing :
This is the HTML code of the full menu (given below), we didnot use any extra tags except UL/ LI. No stylesheet used upto this moment.

HTML Code :

<ul id="nav">
 <li><a href="#">0. Home</a></li>
 <li><a href="#">1. L1- (3 menus in it)</a>
  <ul>
    <li><a href="#">1.1. Sub-Level-1</a></li>
    <li><a href="#">1.2. SL-l (2 menus in it)</a>
       <ul>
         <li><a href="#">1.2.1. SL-2- (1 menu in it)</a>
          <ul>
           <li><a href="#">1.2.1.1. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.2. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.3. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.4. Sub-Level-3</a></li>
          </ul>
         </li>
         <li><a href="#">1.2.2. Sub-Level-2</a></li>
         <li><a href="#">1.2.3. Sub-Level-2</a></li>
         <li><a href="#">1.2.4. Sub-Level-2</a></li>
       </ul>
    </li>
    <li><a href="#">1.3. Sub-Level-1</a></li>
    <li><a href="#">1.4. Sub-Level-1</a></li>
  </ul>
</li>
<li><a href="#">2. Level-1</a></li>
<li><a href="#">3. L1-(4 menus in it)</a>
  <ul>
    <li><a href="#">3.1. Sub-Level-1</a></li>
    <li><a href="#">3.2. Sub-Level-1</a></li>
    <li><a href="#">3.3. SL-1- (3 menus in it)</a>
       <ul>
         <li><a href="#">3.3.1. Sub-Level-2</a></li>
         <li><a href="#">3.3.2. SL-2 (2 menus in it)</a>
          <ul>
           <li><a href="#">3.3.2.1. SL-3 (1 menu in it)</a>
             <ul>
                <li><a href="#">3.3.2.1.1 Sub-Level-4</a></li>
                <li><a href="#">3.3.2.1.2 Sub-Level-4</a></li>
                <li><a href="#">3.3.2.1.3 Sub-Level-4</a></li>
             </ul>
           </li>
           <li><a href="#">3.3.2.2 Sub-Level-3</a></li>
           <li><a href="#">3.3.2.3 Sub-Level-3</a></li>
           <li><a href="#">3.3.2.4 Sub-Level-3</a></li>
          </ul>
         </li>
         <li><a href="#">3.3.3. Sub-Level-2</a></li>
         <li><a href="#">3.3.4. Sub-Level-2</a></li>
       </ul>
    </li>
    <li><a href="#">3.4. Sub-Level-1</a></li>
  </ul>
</li>
<li><a href="#">4. Level-1</a></li>
</ul>

The output in browser :

    0. Home
    1. L1- (3 menus in it)
        1.1. Sub-Level-1
        1.2. SL-l (2 menus in it)
            1.2.1. SL-2- (1 menu in it)
                1.2.1.1. Sub-Level-3
                1.2.1.2. Sub-Level-3
                1.2.1.3. Sub-Level-3
                1.2.1.4. Sub-Level-3
            1.2.2. Sub-Level-2
            1.2.3. Sub-Level-2
            1.2.4. Sub-Level-2
        1.3. Sub-Level-1
        1.4. Sub-Level-1
    2. Level-1
    3. L1-(4 menus in it)
        3.1. Sub-Level-1
        3.2. Sub-Level-1
        3.3. SL-1- (3 menus in it)
            3.3.1. Sub-Level-2
            3.3.2. SL-2 (2 menus in it)
                3.3.2.1. SL-3 (1 menu in it)
                    3.3.2.1.1 Sub-Level-4
                    3.3.2.1.2 Sub-Level-4
                    3.3.2.1.3 Sub-Level-4
                3.3.2.2 Sub-Level-3
                3.3.2.3 Sub-Level-3
                3.3.2.4 Sub-Level-3
            3.3.3. Sub-Level-2
            3.3.4. Sub-Level-2
        3.4. Sub-Level-1
    4. Level-1

The menu is quite odd looking now and we shall make it good looking very soon. Now the ball goes to CSS ‘s court. Lets play with CSS to show it right.
Now our job will be to make the above menu into a horizontal NAV menu by adding styles as mentioned below.
Make the top level menu visible, all other sub menus will not be shown. Add the following CSS inside the HEAD section to add styles : Check here how the menu looks now after adding the styles mentioned below

<style type="text/css">
* {
   margin:0;
   padding:0;
}
#nav ul {
      list-style-type:none;
      display:none; /* hides all sub menus descendant of UL of id = nav */
}
#nav li {
      float:left; /* makes menus to appear side by side */
      position:relative;
      width:12em; /* for FLOAT elements width is must */
}
</style>

Explanation : margin and padding is set to 0 for all elements initially, this is a preliminary optional step to reset margin and padding. #nav is the id of top level UL block, so all sub menus are invisible and not displayed by the code, only UL of id = nav will be displayed.
#nav ul {
      list-style-type:none;
      display:none; /* hides all sub menus descendant of UL of id = nav */
}

The next most important step is the following -
#nav li {
      float:left;
      position:relative;
      width:12em;
}

It makes the top level menu’s list items to appear side by side by floating them to left, normally LI are block elements, so they normally appear vertically, but by float: left we make them to appear horizontally. Keep in mind float elements must use a width implicitly or explicitly, here shown explicitly.

position : relative controls the blocks inside the LI element, this is important when UL appears inside UL for submenus. relatively positioned elements are shown normally in the normal flow, then reposition them according to left: and top: property.

Step-2 : Now add more styles and after addition the navigation menu looks like this . The sub menu under top level menu, i.e sub-menu-level-1 will be displayed, but beyond that any sub menu will not be displayed.

#nav li:hover ul{ display:block; /* level 1 menu will be displayed */ }
#nav li:hover ul ul { display: none; /* level 2 onwards sub menu will hidden*/ }

The whole stylesheet will be as follows :

<style type="text/css">
* {
  margin:0; padding:0;
}

#nav ul {
    list-style-type:none;
    display:none;
}
#nav li {
    float:left;
    position:relative;
    width:12em;
}
/* level 1- sub menu will be displayed, but sub sub menu will not be displayed */
#nav li:hover ul { display:block; /* level 1 menu will be displayed */
}
#nav li:hover ul ul {
         display: none; /* level 2 onwards sub menu will hidden*/
}
</style>

Explanation : When you mouse over a LI item which is a descendant element of a UL block of id nav , ( i.e top level UL block or top level menu ) then the sub-level-1 sub menu will be displayed. This sub menu is the UL block under of top level menu (UL#nav) , which is also a descendant of top level LI elements, will be displayed by this style code :
#nav li:hover ul { display:block; /* sub-level-1 sub menu will be displayed */ }

But any UL which is a descendant of that UL will not displayed because of this code -
#nav li:hover ul ul { display: none; /* sub-level-2 onwards sub menu will be hidden*/ }

Check it here : the navigation menu looks like this

Step 3 :

Now by adding the following CSS upto sub level menu 2 level down will be shown. Sub menu level 1 appears under top level menu items, and under sub menu level 1, sub menu 2 appears. Here two new style blocks introduced :

ul#nav li ul li:hover ul {
        display:block;
        position:absolute;
        top:0;
        left:12em;
}
#nav li ul li:hover ul ul { display: none }

Explanation : 2nd level menu when hovered , that is mouse overed, then the UL inside that will be visible, but beyond that any UL block will not be displayed. First UL#nav LI denotes top level menu ( can be used as #nav li also ), the second UL LI:hover means when a sub menu level -1 item is hovered, then the next level sub menu will be shown, i.e sub menu level 2.

But because of position : relative property of LI (of sub menu level – 1, e.g SL-1), which is a container of sub menu level 2- UL block, then this UL block is positioned according to LEFT and TOP property , i.e Top: 0 and Left: 12em; here 12 em is the width of all LI elements. So sub menu level 2 elements appears beside sub menu level -1 menu / list item.

Now the menu looks like this : The full style sheet portion given below -

<style type="text/css">
* {
   margin:0; padding:0;
}

#nav ul {
     list-style-type:none;
     display:none;
}
#nav li {
     float:left;
     position:relative;
     width:12em;
}
/* level 1- sub menu will be displayed, but sub sub menu will not be displayed */
#nav li:hover ul{
           display:block; /* level 1 menu will be displayed */
}
#nav li:hover ul ul {
           display: none; /* level 2 onwards sub menu will hidden*/
}

/* level 2- sub menu will be displayed, but beyond it will not be */
#nav li ul li:hover ul {
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
#nav li ul li:hover ul ul { display: none }
</style>

Final Step : add the following styles to show more sub menus

/* level 3- sub menu will be displayed */
#nav li ul li ul li:hover ul{
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
/* Beyond level-3 submenu no submenu will not be */
#nav li ul li ul li:hover ul ul { display: none }

/* level 4- sub menu will be displayed */
#nav li ul li ul li ul li:hover ul {
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
/* Beyond level-4 submenu no submenu will not be */
#nav li ul li ul li ul li:hover ul ul { display: none }
So the Final HTML Code + Stylesheet will be the following :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
* {
          margin:0;
           padding:0;
}

#nav ul {
          list-style-type:none;
          display:none;
}
#nav li {
          float:left;
          position:relative;
          width:12em;
}

/* level 1- sub menu will be displayed, but sub sub menu will not be displayed */
#nav li:hover ul { display:block; /* level 1 menu will be displayed */ }
#nav li:hover ul ul { display: none; /* level 2 onwards sub menu will hidden*/ }

/* level 2- sub menu will be displayed, but beyond it will not be */
#nav li ul li:hover ul {
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
#nav li ul li:hover ul ul { display: none }

/* level 3- sub menu will be displayed, but beyond it will not be */
#nav li ul li ul li:hover ul{
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
#nav li ul li ul li:hover ul ul { display: none }

/* level 4- sub menu will be displayed, but beyond it will not be */
#nav li ul li ul li ul li:hover ul {
          display:block;
          position:absolute;
          top:0;
          left:12em;
}
#nav li ul li ul li ul li:hover ul ul {
           display: none;
}
</style>
</head>
<body>

<ul id="nav">
 <li><a href="#">0. Home</a></li>
 <li><a href="#">1. L1- (3 menus in it)</a>
  <ul>
    <li><a href="#">1.1. Sub-Level-1</a></li>
    <li><a href="#">1.2. SL-l (2 menus in it)</a>
       <ul>
         <li><a href="#">1.2.1. SL-2- (1 menu in it)</a>
          <ul>
           <li><a href="#">1.2.1.1. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.2. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.3. Sub-Level-3</a></li>
           <li><a href="#">1.2.1.4. Sub-Level-3</a></li>
          </ul>
         </li>
         <li><a href="#">1.2.2. Sub-Level-2</a></li>
         <li><a href="#">1.2.3. Sub-Level-2</a></li>
         <li><a href="#">1.2.4. Sub-Level-2</a></li>
       </ul>
    </li>
    <li><a href="#">1.3. Sub-Level-1</a></li>
    <li><a href="#">1.4. Sub-Level-1</a></li>
  </ul>
</li>
<li><a href="#">2. Level-1</a></li>
<li><a href="#">3. L1-(4 menus in it)</a>
  <ul>
    <li><a href="#">3.1. Sub-Level-1</a></li>
    <li><a href="#">3.2. Sub-Level-1</a></li>
    <li><a href="#">3.3. SL-1- (3 menus in it)</a>
       <ul>
         <li><a href="#">3.3.1. Sub-Level-2</a></li>
         <li><a href="#">3.3.2. SL-2 (2 menus in it)</a>
          <ul>
           <li><a href="#">3.3.2.1. SL-3 (1 menu in it)</a>
             <ul>
                <li><a href="#">3.3.2.1.1 Sub-Level-4</a></li>
                <li><a href="#">3.3.2.1.2 Sub-Level-4</a></li>
                <li><a href="#">3.3.2.1.3 Sub-Level-4</a></li>
             </ul>
           </li>
           <li><a href="#">3.3.2.2 Sub-Level-3</a></li>
           <li><a href="#">3.3.2.3 Sub-Level-3</a></li>
           <li><a href="#">3.3.2.4 Sub-Level-3</a></li>
          </ul>
         </li>
         <li><a href="#">3.3.3. Sub-Level-2</a></li>
         <li><a href="#">3.3.4. Sub-Level-2</a></li>
       </ul>
    </li>
    <li><a href="#">3.4. Sub-Level-1</a></li>
  </ul>
</li>
<li><a href="#">4. Level-1</a></li>
</ul>

</body>
</html>

Friday 6 October 2017

Adding the Related Posts Widget to Blogger/Blogspot




Now here is a wonderful hack for displaying related posts beneath each of your blog posts, along with thumbnails. The related articles are chosen from other posts in that same category/label/tag. With this hack, many of your readers will remain on your site for longer periods of time when they see related posts of interest.
related post, related posts blogger, blogger widgets
Steps adding the Related Posts Widget to Blogger/Blogspot

Step 1. Go To Blogger Dashboard >> Template >>Edit HTML

blogger template, edit html

Steps adding the Related Posts Widget to Blogger/Blogspot

Step 1. Go To Blogger Dashboard >> Template >>Edit HTML
 </head>
Step 4. Copy and paste the below code just before/above </head>
 <!--Related Posts with thumbnails Scripts and Styles Start-->
<!-- remove --><b:if cond='data:blog.pageType == &quot;item&quot;'>
<style type='text/css'>
#related-posts{float:left;width:auto;}
#related-posts a{border-right: 1px dotted #eaeaea;}
#related-posts a:hover{background: #f2f2f2;}
#related-posts h2{margin-top: 10px;background:none;font:18px Oswald;padding:3px;color:#999999; text-transform:uppercase;}
#related-posts .related_img {margin:5px;border:4px solid #f2f2f2;width:100px;height:100px;transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;}
#related-title {color:#222;text-align:center;padding: 0 10px;font-size:14px Oswald; line-height:16px;text-shadow:0 2px 2px #fff;height:28px;width:100px;}
#related-posts .related_img:hover{border:4px solid #E8E8E8;opacity:.7;filter:alpha(opacity=70);-moz-opacity:.7;-khtml-opacity:.7}</style>
<script type='text/javascript' src='http://helplogger.googlecode.com/svn/trunk/relatedposts.js' />
<!-- remove --></b:if>
<!--Related Posts with thumbnails Scripts and Styles End-->
Note:
- to change the width and height of thumbnails, modify the 100px value in red
- to change the color and size of related posts titles, change the value in blue
- remove the line in violet if you want the related posts to be displayed in homepage too 

Step 5. Now find the following code (you might find it twice, stop at the second one):
 <div class='post-footer'>
Step 6. And just above it, copy and paste the below code:
 <!-- Related Posts with Thumbnails Code Start-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='related-posts'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast != &quot;true&quot;'>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels_thumbs&amp;max-results=5&quot;' type='text/javascript'/></b:if></b:loop>
<script type='text/javascript'>
var currentposturl=&quot;<data:post.url/>&quot;;
var maxresults=5;
var relatedpoststitle=&quot;<b>Related Posts:</b>&quot;;
removeRelatedDuplicates_thumbs();
printRelatedLabels_thumbs();
</script>
</div><div class='clear'/>
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'><b:if cond='data:post.isFirstPost'>
<a href='http://helplogger.blogspot.com'><img alt='Blogger Tricks' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEs33nJdBNzdqU6ozdJ5YDs1rOfdPczhhgs7mGQ-CtVl_f5zkINJbxkCSQ5iRwal8By1HTZbxW3slPHo4bzVNAs9dXbo_fM-jBzHkHMTOVWDGSD_1PvOa1yX2oVKlbbNlRcVU5H1z4OhLj/s1600/best+blogger+tips.png'/></a>
</b:if></b:if><!-- Related Posts with Thumbnails Code End-->
Note:
- change the 5 value from max-results=5 with the number of posts you want to be displayed
- if you want the related posts to be displayed on homepage too, then remove the lines in violet

Step 7. Save the Template

Enjoy :)

Horizentel Drop Down Manu with Search Baar

Create Horizontal Navigation Menu With Drop Down Submenus Using CSS

The following drop down menu is made only with CSS, is a horizontal menu with sub-tabs and the right side has a rounded search. A menu is handy for those who do not require complex menus or prefer not to use one that requires scripts and/or too many images, also the installation and customization is quite simple, and to top it off is quite functional.

To see this drop down menu in action, visit this demo blog

blogger menu, drop down menu, css menu

Prior to doing anything, if you are using a Template made through Blogger Template Designer, then you should consider doing these changes in the template, otherwise the menu might not be displayed correctly:

Wednesday 4 October 2017

How to Play YouTube Video in Pakistan Without Any Proxy Software

How to Play  YouTube Video in Pakistan Without Any Proxy Software

How to Play  YouTube Video in Pakistan Without Any Proxy Software
Play YouTube Videos


Description & Details 


It’s more than a year  YouTube banned in Pakistan and all you have to do is to use VPN/Proxy services to open it but no more way. VPN/Proxy Software is that your system run slow

Corel DRAW 11 With Registration Key

Corel DRAW 11 With Registration Key


Corel DRAW 11 With Registration Key


Corel DRAW 11


 
Corel DRAW 11 Discreption

       Corel DRAW 11 could be a vectors graphics and editor and developer & markete Corel DRAW Software by Corel Draw Corporations of the Ottawa and Canada. it’s conjointly the name of software Corel’s high Graphic Suites. It is a latest Corel DRAW 11 version of (version 15) named X5, was free in February 2010.    

     Corel DRAW 11 Software Graphic Suites combine in 3 and heavyweight of graphics Corel tools of Corel DRAW 11, Photo and Paint, & R.A.V.E. two which might be used singly or along. currently in version, the Corel DRAW 11 Suite a shows of Corel still a has lots of concepts on a way to improves of the effectiveness & ease use of those major corel deaw 11 applications.


Corel DRAW 11


              For example, in Corel DRAW there square measure currently new “3-points” tool for the drawing and rectangles, ellipse, & curves. With a each, you click here to mend the primary purpose, stretch bent outline associate degree axis or bases line, & click on once more to the completely the items. The new corel Poly line tools permits you to form line & objects phase by phase, wherever every phase will be straight or incurvate. The corel Pen tools offers is a fast thanks to produce Bezier curves.
Corel DRAW introduces and Symbol to the its a repertoires, too, therefore you’ll save and employ drawing parts during a clips board corel draw 11 style library. mistreatment symbols saves sizable file area, which might be significantly necessary once drawing net graphics.

            Corel Draw 11 Photo-Paint to picture piece of writing what Corel DRAW Software is to the vectors drave. In some ways a contender to the Adobe Photoshop 7.0, the re-creation of the Photo-Paint and includes additional enhancements for net artists. you\’ll currently slice pictures into variety of tiny components to help fast downloads and make rollover for the button & images map, in order that they seem otherwise once point to the clicked. of The programing conjointly supports for the JPEG 2000 files, therefore you’ll save your pictures during this is a new highs and compression formats.

Download Click Hare

Download Click Hare

Thursday 3 July 2014

Aoao Video Watermark Pro 5.1

Aoao Video Watermark Pro 5.1

Aoao Video Watermark Pro 5.1
Aoao Video Watermark Pro 5.1

Description Aoao Video Watermark Pro 5.1






Video Watermark Pro allows you to add animated and animated image to your video in detail mode. This software provide simple to operate, interface is friendly and high speed process, so the video

Social Network Share

LinkWithin

Related Posts Plugin for WordPress, Blogger...