How to set different color for vacancies?

How to set different color for vacancies. Actually vacancies from different list, thanks in advance.

Hi Sam,
Thank you for your message.

You can change the color of vacancies in “Custom CSS” step of the configuration wizard.
For example:

.poch-vacancy .pl-item-template { 
  background-color: black;
  border-color: red;
}

Best regards
Evgeniy Kovalev
Plumsail Team

Hi Kovalev,

This CSS not working in IE 11 but in Chrome. How to set to work in IE too? thanks.

Hi Sam,
Please use “!important” property for your CSS in IE.

Try this code snippet:

.poch-vacancy .pl-item-template { background-color: black !important; border-color: red !important; }
Best regards
Evgeniy Kovalev
Plumsail Team