Hi there.
Am using this code in CSS Inserts to make my menu buttons rounded. But the highlighter for the buttons remains square.
Can the highlighter be made to match the rounded edges in the following code?
div#menu1 ul.rMenu, div#menu2 ul.rMenu {
background-color: transparent;
}
div#menu1 ul.rMenu li {
margin-right: 5px;
-moz-border-radius:5px;
-khtml-border-radius: 15px;
-webkit-border-radius:15px;
border-radius: 15px;
border: 2px solid #EE008C;
}
Many thanks.