If you look at the source of that page (CTRL+U on your browser) you'll see that I have just added a "class" to the first and last entries in each list of links. At the top of the stylesheet there are two new entries which add rounded corners to the top and bottom of those tow classes respectively. The drop-shadow is simply commented out in this entry in the stylesheet:
Code:
/* Sub ULs style */
.nestedsidemenu ul li ul {
position: absolute;
left: -5000px;
top: 0;
opacity: 0;
width: 230px;
visibility: hidden;
/* box-shadow: 2px 2px 5px gray; */
-webkit-transition: opacity .3s, visibility 0s .3s, left 0s .3s;
transition: opacity .3s, visibility 0s .3s, left 0s .3s;
}
If you are just starting out this series of tutorials is quite informative.
Bookmarks