adding rounded corners works great. im now trying to add a border that follows the curves of the corners. the code below adds the border but stops at the corners, which makes sense. any idea how that can be fixed?
html: <div id="memberListWrapper"> <ul id="memberList"> <li><p>blah</p></li> <li><p>blah</p></li> </ul> </div> js: $(document).ready(function(){ $("#memberListWrapper").corner("round"); }); css: #memberListWrapper {margin: 5px;} #memberList {background: #fff; padding: 10px 20px;border: 1px solid #ccc;}