If you'd like to change the style and layout of your Careers Page, navigate to Main Menu > Account Details > under Customize & Design, select Look & Feel:



Input your code of choice into the Custom CSS container under Advanced Customization:



You may also want to hide/remove certain elements from your Careers Page. Here's a list of the most common elements that users want to hide and how to hide them:


To hide the Intro Text box on the careers page, insert the text below into the Custom CSS container and Save:

div#custom-html-container { display:none; }


To hide job description on the careers page job listings, insert the text below:

.job-description { display:none; }

To hide the job location on the careers page job listings, insert the text below:

.job-location { display:none; }


To remove the footer on the careers page, enter the text below:

.footer { display:none; }


To hide the text in the sign up widget, enter the text below:

.get-updates-copy { display:none; }


Alternatively,

{ visibility:hidden; }

will work in place of:

{ display:none; }


If you'd like to style other elements, you can find selectors by right clicking on the element you'd like to style and selecting Inspect.