02/14/2014 at 8:56 pm
#280087
Keymaster
@ Jon
There’s not really any way to highlight parent level categories, sorry.
The font size can be adjusted. Here’s the CSS you can use to change it:
#cn-slim-plus .chzn-container ul.chzn-results {
font-size: 20px;
}
The easiest way to add the titles to the Title and Organization fields is to use CSS.
#cn-slim-plus .title,
#cn-slim-plus .organization-name,
#cn-slim-plus .organization-unit {
margin-bottom: 6px;
}
#cn-slim-plus .title:before {
content: "Title: ";
font-weight: bold;
}
#cn-slim-plus .organization-name:before {
content: "Orgnaization: ";
font-weight: bold;
}
#cn-slim-plus .organization-unit:before {
content: "Department: ";
font-weight: bold;
}
Likewise, CSS can be used to change the address layout:
#cn-slim-plus span.adr span.address-name,
#cn-slim-plus span.adr span.street-address {
display: inline;
}
Hope that helps!
