Logo
Creative Financial Staffing

Payroll Specialist

Creative Financial Staffing, Tampa, Florida, United States, 33602

Save Job

Payroll Specialist - Tampa, FL Salary: $50,000 - $60,000 Overview:

We are seeking a detail-oriented Payroll Specialist to join a well-established company in Tampa. The right candidate will take ownership of the payroll process, ensuring accuracy, compliance, and timeliness. This is a great role for someone who thrives in a deadline-driven environment and enjoys being the go-to person for payroll support. What You'll Do as a Payroll Specialist:

* Process bi-weekly payroll for hourly and salaried employees

* Verify timekeeping records and resolve discrepancies

* Maintain employee payroll records, deductions, and benefits information

* Ensure compliance with federal, state, and local payroll regulations

* Respond to employee payroll inquiries and provide support

* Assist with payroll reporting and reconciliations

What We're Looking For in a Payroll Specialist:

* 2+ years of payroll processing experience

* Knowledge of ADP, Paylocity, or similar payroll systems

* Strong Excel and data entry accuracy

* Understanding of payroll tax regulations

* Excellent communication and problem-solving skills

Why This Role?

This company offers a supportive, team-oriented environment and values employees who take pride in their work. If you're looking for a stable role where your attention to detail makes a real impact, this is the opportunity for you.

EB- 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