I have created a css based menu for my site...
Now i just want to round the corners of my menu...
can any buddy help me out in this?
what code should i add tou the following css & where? to make my menu corners round?

ul.ldd_menu{
    margin:0px;
    padding:0;
    display:block;
    height:40px;
    background-color:#DEDACB;
    list-style:none;
    font-family:Georgia, sans-serif;
    border-top:1px solid #DEDACB;
    border-bottom:1px solid #DEDACB;
    border-left:10px solid #DEDACB;
    -moz-box-shadow:0px 3px 4px #DEDACB;
    -webkit-box-shadow:0px 3px 4px #DEDACB;
    -box-shadow:0px 3px 4px #DEDACB;
    position: relative;
    z-index:1000;

}
ul.ldd_menu a{
    text-decoration:none;
}
ul.ldd_menu > li{
    float:left;
    position:relative;
    }

border-radius:10px;
et al for moz and webkit.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.