I have tried the below to remove the border around a single checkbox prompt however it is not working.
<STYLE>
#PromptName Div.clsCheckBoxList{
border-style:none;
}
< /STYLE>
I can use this for the entire page which has several prompts and it works however, i just want the one.
<STYLE>
Div.clsCheckBoxList{
border-style:none;
}
< /STYLE>
You should use this code instead:
<STYLE>
Div#PromptName.clsCheckBoxList {
border-style:none;
}
< /STYLE>
The explanation: if you use "#PromptName Div.clsCheckBoxList", you are trying to point a div with class clsCheckBoxList inside an element with id PromptName. In the code above you are pointing to a div with id PromptName and class clsCheckBoxList.