At Oltmans Roofing, we believe every home deserves lasting protection. As a locally owned company, we specialize in residential composite shingle roof repairs and replacements designed to withstand the toughest conditions.
Our team focuses exclusively on composite shingles – the most popular and dependable choice for homeowners. Made from high-quality materials and fortified to resist algae and surface damage, our roofs are built for strength, beauty, and longevity.
We back our work with a 5-year labor warranty and use only 30-year rated materials, ensuring your investment lasts. Serving homeowners all over the State of Arkansas, we’re proud to offer honest service with dependable craftmanship. We also offer special discounts for Veterans.

function webLeadFormSubmit(event) {
event.preventDefault();
document.getElementsByClassName('webLeadForm__submit')[0].disabled = true;
const leadData = new FormData(event.target);
const fetchPromise = fetch('https://leads.acculynx.com/api/leads/submit-new-lead?formID=1de68701-e45e-43e5-a3c5-31b5adfb42dc', { method:'post', mode:'no-cors', body: leadData});
fetchPromise.then(response => {
console.log('WebLeadForm Submit Success');
console.log(response);
document.getElementById('webLeadFormElem').style.visibility = 'hidden';
document.getElementById('webLeadFormMessageElem').style.display = 'flex';
})
.catch(error => {
console.log('WebLeadForm Submit Error: ' + error);
document.getElementsByClassName('webLeadForm__submit')[0].disabled = false;
});
return false;
}