Logo
Creative Financial Staffing

Certified Payroll Specialist

Creative Financial Staffing, Bakersfield, California, United States, 93311

Save Job

Certified Payroll Specialist

Full-Time | Onsite | Kern County, CA Join a well-established, trusted service provider in Kern County and take your payroll expertise to the next level. We're looking for a Certified Payroll Specialist who thrives in a detail-driven environment and is passionate about accuracy, compliance, and supporting a team that values excellence. What's In It For You

* Competitive Hourly Pay: $23-$30/hour, depending on experience

* Comprehensive Benefits: Medical, dental, and vision coverage

* Opportunity to work for a long standing company

* Team Culture: Collaborate with experienced professionals who take pride in their work

What You'll Do

* Process weekly payroll and prepare certified payroll reports that meet state and federal requirements

* Keep payroll records accurate, organized, and up to date

* Partner with HR and project teams to confirm job roles and hours worked

* Research and resolve payroll discrepancies promptly

* Ensure compliance with prevailing wage laws and labor regulations

* Stay current on evolving payroll laws and best practices

What You Bring

* At least 1 year of payroll experience (certified payroll/prevailing wage knowledge is a plus!)

* Strong attention to detail and time management skills

EB-1463292253 document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last