You can easily change the look and feel of employee profile pages by adjusting the CSS rules. For example, the labels and icons such as Job Title, Company, Department can be styled using this rule:
div.emd-container .fronteditable div.segment-block .fa,
div.emd-container .fronteditable .segtitle {
color: #708192;
font-weight: 500;
}
This controls:
- Icons (π, βοΈ, etc.) next to contact details
- Labels such as Job Title, Company, Manager, Department
π¨ Example Customizations
1. Dark & Professional
div.emd-container .fronteditable div.segment-block .fa,
div.emd-container .fronteditable .segtitle {
color: #2c3e50;
font-weight: 600;
font-size: 15px;
}
2. Brand Accent
div.emd-container .fronteditable div.segment-block .fa,
div.emd-container .fronteditable .segtitle {
color: #1a73e8; /* Replace with your brand color */
font-weight: 600;
font-size: 15px;
}
3. Subtle & Modern
div.emd-container .fronteditable div.segment-block .fa,
div.emd-container .fronteditable .segtitle {
color: #555;
font-weight: 500;
font-size: 14px;
}
π How to Preview Changes
- Open an employee profile (for example, Jennifer Lawrence).
- Right-click β Inspect to open developer tools.
- Paste the CSS snippet into the browser dev tools to preview instantly.
- When happy, save the CSS permanently using one of the options below.
πΎ Saving Your Custom CSS
- Plugin Settings (recommended):
Go to
DOMAIN/wp-admin/admin.php?page=empd_pro_settings&tab=toolsand paste your CSS in the Custom CSS field there. This applies only to Employee Directory frontend pages. - Theme Settings: Alternatively, add it under Appearance β Customize β Additional CSS. This affects the entire site.
β We recommend using the pluginβs Custom CSS setting for Employee Directory styles, as it keeps changes isolated and upgrade-safe.