
how do i get rid of the borders in ul > li ?
i have :
errorLabelContainer: $("ul", $('div.error')), wrapper: 'li',
errorContainer: $('div.error'),
i tried :
div.message{
background: transparent url(images\ad_next.png) no-repeat scroll left center;
padding-left: 17px; border:0px;
}
div.message ul, li { border:0px; }
div.error{
background-color:#F3E6E6;
border-color: #924949;
border-style: solid solid solid solid;
border-width: 2px;
padding: 5px;
}
the class=”error” was declared in an included css. when i commented that out and used:
it worked. thanks