Question
aegislimited
US
Last activity: 22 Feb 2016 17:53 EST
Can i make check boxes bolder
I have requirement that the check boxes should be made bolder. Is there a way to achieve this
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Hi Ram,
What version of Pega are you using? Also, are you talking about the label (text) for the check box or do you mean something else?
You can do all sorts of customization and change the impact level using Skin Rules and Mixins. Read help.
aegislimited
US
Hi Nicholas,
I am using pega 7.1.5
Common Wealth Bank of Australia
AU
Hi Ram,
I believe you wanted to change the styling of the checkbox itself and not the label associated with it. If it is the checkbox itself, then I couldn't see any option on the skin to override the style.
You might have to try writing your own css and include it in the styles and check if that works.
Regards,
Sri
aegislimited
US
yeah Srividhya,
I was trying to bold the square of the check box and even I tried with skin level it was not useful.
Murex
LB
I believe you'd have to define a custom control via css and then use that control for the checkbox.
Thanks,
Joe
Pegasystems Inc.
IN
Hi Ram,
In case your requirement is to just highlight the checkbox field, Would it be okay to customize the text or to add a background color to that particular field? You can sort of play around with checkboxes by clicking DesignerStudio -> User Interface -> UI Gallery -> Checkbox.
Also, you can try styling the "div" inside which the checkbox is present. Following is a sample style -
.chk {
width: 20px;
height: 18px;
border: 2px solid #000000;
}
for a div class =chk
<div class="chk">
<input type="checkbox" value="None" id="chkBold" name="check" />
</div>
Result would be something like this -