EhabBug / dropdown-check-list

Automatically exported from code.google.com/p/dropdown-check-list
0 stars 0 forks source link

Unable to change the font property of the checkbox list items. #198

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
How can I change the font property of the checkbox list items in the dropdown.

Original issue reported on code.google.com by debarat...@gmail.com on 25 Jul 2011 at 8:06

GoogleCodeExporter commented 8 years ago
All formatting is handled via the .css definitions that apply. DDCL attempts to 
leverage the settings defined in jQuery Themeroller. See 
ui.dropdownchecklist.themeroller.css for base settings. If you choose not to 
use themeroller, then you should be including 
ui.dropdownchecklist.standalone.css, which includes its own set of very simple 
definitions.

In either case, the .css definitions you include for the page should map to the 
class constructs created by DDCL. You can use in-browser dynamic tools (Firefox 
Firebug or the equivalent in IE) to view the html components created by DDCL. 
You can then adjust your .css file accordingly.

For example, the text in each item is affected by the following css definition:
.ui-dropdownchecklist-text {
    font-size: medium;
}

Let me know if you are having problems outside the scope of the .css 
definitions.

Original comment by womohun...@ittrium.com on 25 Jul 2011 at 8:41