jason wrote:
Well since you're adding a gradient background to the <a> elements in each submenu, those square backgrounds stick out of the rounded corners of the container. You need to round the appropriate corners of the top and bottom <a> elements in each menu.
Thanks for your speedy response....
I have removed the gradient for each link on the submenu but the container is still square.
Code:
#nav a {
font-size: 12px;
color: #000;
text-decoration: none;
display: block;
padding: 8px 20px;
margin: 0;
border-radius: 10px 10px 0px 0px;
/*background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFFFFF), to(#DADBDC));
background: -webkit-linear-gradient(#FFFFFF, #DADBDC);
background: -moz-linear-gradient(#FFFFFF, #DADBDC);
background: -ms-linear-gradient(#FFFFFF, #DADBDC);
background: -o-linear-gradient(#FFFFFF, #DADBDC);
background: linear-gradient(#FFFFFF, #DADBDC);
-pie-background: linear-gradient(#FFFFFF, #DADBDC);*/
behavior: url(/pie/PIE.htc);
}