Graphic designers use visuals to tell stories people can’t ignore. You work on ads, websites, and content people love to see. Creativity and detail are your best allies. Every brand needs your kind of visual voice. Exploregraphic design roles now on the CSS job board.
Kenya Net Pay Calculator
Gross Salary:
NSSF (Tier I & II):
SHIF (2.75%):
Housing Levy (1.5%):
PAYE (Tax):
Personal Relief:- KSh 2,400.00
Net Salary:
Based on 2026 Kenyan Statutory Rates (NSSF cap KSh 6,480).
Graphic Design Jobs. Healthy U Jobs Job Summary The Senior Graphic Designer will be responsible for creating, managing, and executing all visual aspects of the Healthy U brand and its sub-brands across both traditional and digital channels. This includes Healthy…
Are you recruiting and want to attract qualified professionals in Kenya? Advertise your job with us. Reach over 500,000 qualified Kenyan professionals. Advertise your job here. And start receiving qualified applicants fast.
Communication Jobs. Ifkafin Systems Jobs About the Role We are seeking a versatile and highly skilled Motion Graphics Designer & Video Production Expert who brings a powerful combination of storytelling, animation, graphic design, and user experience thinking to every project….
Communication Jobs. Brites Management Jobs Key Responsibilities Graphic Design & Branding Creative Development Video & Motion Graphics Software & Technical Execution Portfolio & Quality Assurance Qualifications & Experience How to Apply
Pass your next job interview with confidence? Master the confidence to sell yourself during interviews and get the salary you deserve. Click here for interview preparation Interview with confidence.
Graphic Designer Jobs. KIPS Technical College Jobs Minimum Requirements: Soft Skills How to Apply nterested candidates should send their applications to hr@kips.ac.ke with the subject “POSITION APPLIED FOR”. Hard copies can also be dropped at our Nairobi branch. Deadline: Interviews are on-going!…
Graphic Design Jobs, Tatu City Jobs. Tatu City is hiring a Creative Design Associate. Reporting to the Marketing Manager, the Creative Design Associate will support the marketing of Rendeavour’s developments in Kenya, with responsibility for graphic and other design projects,…
Graphic Design Jobs.Christ Is the Answer Ministries Jobs The Motion Graphic Designer creates real-time, high-quality motion graphics, animations, and digital assets that enhance storytelling, strengthen brand identity, and deepen audience engagement across broadcast, digital, and social platforms. The role blends…
NGO Jobs, Food for Education Jobs. About the RoleAs a Learning Experience Designer you’ll play a hands-on role in: The primary focus of this role is to strengthen internal operational learning, while leading the development of learning materials for F4E’s Centre of…
Graphic Design Jobs, Nandi County Public Service Board Jobs. Terms of Service: Permanent and Pensionable Duties and Responsibilities Requirements for Appointment How to Apply Interested and suitable candidates who meet the requirements for the positions should submit hard copies of…
Register Your CV With Us And We shall Match You With Jobs That Suit You. Upload your CV to be considered for jobs that match your skills, experience and career level. Upload your CV here — It's free.
Graphic Design Jobs, Amentum Jobs. The Graphic Artist will manage an arts, graphic, and media center, providing personalized and media printing services, while supporting marketing and outreach for Morale, Welfare, and Recreation (MWR) operations. Job Responsibilities: Minimum Requirements: Preferred Qualifications:…
University Jobs, Open University of Kenya Jobs. Required Qualifications and Competencies For an appointment, one MUST have: How to Apply All applications should be addressed to The Vice-Chancellor, Open University of Kenya, P.O. Box 2440-00606, Nairobi, Kenya and MUST be submitted online through the…
Communication Jobs. KEDA Ceramics Jobs About the Role We are seeking an experienced Graphic Design Manager to lead visual design efforts for our overseas marketing initiatives. This role will be responsible for creating high-impact key visuals (KV), building a scalable…
Graphic Design Jobs, Indepth Research Institute Jobs. Engagement Type: Consultancy About Indepth Research Institute (IRES) Indepth Research Institute (IRES) is a leading research, training, and consultancy organization dedicated to empowering public, private, and not-for-profit institutions to achieve sustainable impact in…
Graphic Design Jobs, ALX Jobs. Role Summary ALX Kenya is seeking a highly creative, agile, and execution-oriented Graphic Designer to support the production of compelling visual assets. This role is ideal for a designer who can translate campaign strategy into high-quality creative…
Graphic Design Jobs, ICRC Jobs. Purpose The ICRC is seeking for a skilled and creative Graphic Designer to join our Global Content Hub in Nairobi. You will play a key role in designing and adapting communication materials across print, digital,…
Graphic Designer Jobs. Hotpoint Appliances Ltd Jobs Job Purpose This role will be responsible for maintaining and strengthening brand consistency across all marketing and corporate touchpoints. This role ensures that all creative output aligns with brand guidelines, upports campaign objectives,…
Graphic DesignerJobs. Hotpoint Appliances Ltd Jobs Job Purpose This role will focus on producing high-quality video content, motion graphics, and 3D visual assets to support digital marketing, social media campaigns, and in-store displays. This role strengthens the company’s in-house multimedia…
Junior Designer at Ando Jobs We are looking for a Junior Designer to join our Nairobi team. You will support the creation of visually compelling designs that reflect Ando’s brand across digital, social, and print channels. Read More>>>How Our Professional…
Communications Jobs. Mac Food Jobs We’re seeking a talented and creative Graphic Designer to join our team in Nairobi, Kenya. As a Graphic Designer, they’ll be responsible for creating visually appealing designs for our digital and print media. Read More>>>How…
NGO Jobs. World Resources Institute Jobs What you will do: Design and produce communications materials for WRI programs (80%) Read>>>Want to Nail Your Next Job Interview? 3 Ways to Prove You’re the Best Hire Support institutional projects (20%) What you…
Graphic Designer Job Fine Print Jobs Fine Print is currently seeking a talented and creative Graphic Designer to join their team. This is an excellent opportunity for a passionate design professional looking to grow within a dynamic and innovative brand….
document.addEventListener('DOMContentLoaded', function() {
var btn = document.getElementById('calcBtn');
btn.addEventListener('click', function() {
var gross = parseFloat(document.getElementById('grossInput').value);
if (isNaN(gross) || gross <= 0) {
alert("Please enter a valid salary amount.");
return;
}// 1. NSSF 2026 (6% capped at 6,480)
var nssf = Math.min(gross * 0.06, 6480);// 2. SHIF (2.75%)
var shif = Math.max(gross * 0.0275, 300);// 3. Housing Levy (1.5%)
var housing = gross * 0.015;// 4. PAYE Calculation
var taxable = gross - nssf - shif - housing;
var paye = 0;if (taxable > 24000) {
var remaining = taxable;
// 10% on first 24,000
paye += 24000 * 0.1;
remaining -= 24000;
if (remaining > 0) {
// 25% on next 8,333
var chunk = Math.min(remaining, 8333);
paye += chunk * 0.25;
remaining -= chunk;
}
if (remaining > 0) {
// 30% on next 467,667
var chunk = Math.min(remaining, 467667);
paye += chunk * 0.30;
remaining -= chunk;
}
if (remaining > 0) {
// 32.5% on next 300,000
var chunk = Math.min(remaining, 300000);
paye += chunk * 0.325;
remaining -= chunk;
}
if (remaining > 0) {
// 35% above that
paye += remaining * 0.35;
}
}// Net PAYE after KSh 2,400 relief
var finalPaye = Math.max(0, paye - 2400);
var net = gross - nssf - shif - housing - finalPaye;// Display formatting
var fmt = new Intl.NumberFormat('en-KE', { style: 'currency', currency: 'KES' });
document.getElementById('outGross').innerText = fmt.format(gross);
document.getElementById('outNSSF').innerText = "- " + fmt.format(nssf);
document.getElementById('outSHIF').innerText = "- " + fmt.format(shif);
document.getElementById('outHousing').innerText = "- " + fmt.format(housing);
document.getElementById('outPAYE').innerText = "- " + fmt.format(finalPaye);
document.getElementById('outNet').innerText = fmt.format(net);
document.getElementById('resultsDisplay').style.display = 'block';
});
});
var kadenceConfig = {"screenReader":{"expand":"Child menu","expandOf":"Child menu of","collapse":"Child menu","collapseOf":"Child menu of"},"breakPoints":{"desktop":"1024","tablet":768},"scrollOffset":"0"};
//# sourceURL=kadence-navigation-js-extra
ai_front = {"insertion_before":"BEFORE","insertion_after":"AFTER","insertion_prepend":"PREPEND CONTENT","insertion_append":"APPEND CONTENT","insertion_replace_content":"REPLACE CONTENT","insertion_replace_element":"REPLACE ELEMENT","visible":"VISIBLE","hidden":"HIDDEN","fallback":"FALLBACK","automatically_placed":"Automatically placed by AdSense Auto ads code","cancel":"Cancel","use":"Use","add":"Add","parent":"Parent","cancel_element_selection":"Cancel element selection","select_parent_element":"Select parent element","css_selector":"CSS selector","use_current_selector":"Use current selector","element":"ELEMENT","path":"PATH","selector":"SELECTOR"};