02/05/2014 at 1:10 pm
#279234
Keymaster
@ Zachary
Which example are you referring to? None of the templates show field titles for title, org and dept. You can use a bit of CSS magic to add it… Add the following to the theme’s custom CSS area, if has one. If not, add it to the end of the theme’s styles.css
file.
#cn-tile-plus .title,
#cn-tile-plus .organization-name,
#cn-tile-plus .organization-unit {
margin-bottom: 6px;
}
#cn-tile-plus .title:before {
content: "Title: ";
font-weight: bold;
}
#cn-tile-plus .organization-name:before {
content: "Orgnaization: ";
font-weight: bold;
}
#cn-tile-plus .organization-unit:before {
content: "Department: ";
font-weight: bold;
}
Tweak as desired.
Hope that helps.