Samsung releases Wave 3 with Super Amoled Display

Samsung released the latest phone in wave series with awesome features. Samsung’s Wave 3 has a 4 inch Super AMOLED display and 1.3 GHz processor. It is powered with BADA 2.0 OS.

 

Wave series smartphones use BADA OS – an OS developed by Samsung. The first phone in this series was Wave 8500. It became popular because of its awesome Super AMOLED display. Super AMOLED gives more brightness, better visibility in sunlight and more battery life. Samsung later discontinued this model and released Wave 2 without Super AMOLED display. After the release of Wave 2, Samsung concentrated in Galaxy series powered by Android platform and released many smartphones with android OS. Now Samsung comes with Wave 3 with Super AMOLED & BADA OS.

 

Wave 3 comes with a thin 9.9mm full metal body. It has TouchWiz interface, 5 MP camera, Samsung Apps and many features.

Create a CSS dropdown menu without javascript

The dropdown menus makes the layouts clean and it helps the visitors to navigate easily. Most of the people use javascripts to create dropdown menus. It is easy to create dropdown using CSS. Here is a beautiful CSS dropdown menu without javascript.

First the menu code:

<ul id=”menu”>

<li><a href=”/”>Home</a></li>

<li><a href=”/”>About</a></li>

<li><a href=”/”>Services</a>

<ul>

<li><a href=”/”>Web Design</a></li>

<li><a href=”/”>SEO</a></li>

<li><a href=”/”>Services</a></li>

</ul>

</li>

</ul>

Let us style the menu:

#menu{list-style:none;margin:0; padding:0;}

#menu li{float:left;margin:0; padding:0;position:relative:}

#menu li a{float:left;margin:0; padding:0px 10px; background:#ececec; color:#333;line-height:20px; font-size:12px;}

First we will hide the child items -

#menu ul{display:none;}

Now the most important part – Child items should display on mouse hover on parent items:

#menu li:hover > ul{display:block; }

Now we will add absolute position for child ul:

#menu ul{position:absolute;top:20px; left:0px;}

Now add borders, background images etc for the dropdown items. You can use the same way to display third and fourth levels of the dropdown. This CSS menu is suitable to display wordpress pages and categories as dropdown.