If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

How can I remove the border around a single checkbox prompt

Started by tkjenkin, 18 Jun 2015 02:17:39 PM

Previous topic - Next topic

tkjenkin

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>

qvixote

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.