Tithing Calculator Lds

.lds-tithing-calculator { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: #333; } .lds-tithing-calculator h2 { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; } .calc-input-group { margin-bottom: 18px; } .calc-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; font-size: 14px; } .calc-input-group input, .calc-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; background-color: #2e5a88; color: white; padding: 15px; border: none; border-radius: 6px; cursor: pointer; font-size: 18px; font-weight: bold; transition: background-color 0.3s; } .calc-btn:hover { background-color: #1f3d5c; } #tithing-result-container { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; border-left: 5px solid #2e5a88; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 16px; } .result-label { font-weight: 500; color: #555; } .result-value { font-weight: 700; color: #2e5a88; } .tithing-article { margin-top: 40px; line-height: 1.6; color: #444; } .tithing-article h3 { color: #2c3e50; margin-top: 25px; } .tithing-article p { margin-bottom: 15px; } .example-box { background-color: #fff9e6; padding: 15px; border-left: 4px solid #f1c40f; margin: 20px 0; }

LDS Tithing Calculator

Weekly Bi-Weekly (Every 2 weeks) Monthly Annually
Total Increase: $0.00
Tithing Due (10%): $0.00
Remaining Balance: $0.00

Understanding LDS Tithing

In The Church of Jesus Christ of Latter-day Saints, tithing is the practice of giving one-tenth of one's annual "increase" to the Church. This principle is based on biblical law and modern revelation. The funds collected are used to build and maintain temples and meetinghouses, support missionary work, and fund education and family history efforts.

How to Calculate Your Tithing

The standard calculation for tithing is 10% of your income. While individual members may decide whether to pay on their gross income (before taxes) or net income (after taxes), the common interpretation of "increase" often leads many to calculate based on their total gross earnings. This calculator helps you determine the exact 10% based on your specific pay cycle and additional sources of income.

Realistic Example:
If you earn a monthly salary of 4,000 and receive a one-time bonus of 500, your total increase for that period is 4,500. Your tithing contribution would be 10% of 4,500, which equals 450.

The Purpose of Tithing

Members believe that paying tithing is not just a financial obligation but a spiritual law that brings blessings. It is an expression of gratitude to God for one's material blessings and a way to support the global growth of the Church's mission.

Tithing Settlement

Once a year, members meet with their local Bishop or branch president for "Tithing Settlement" (now often referred to as Tithing Declaration). During this meeting, members declare whether they are full-tithe payers based on their own conscience and understanding of the law of tithing.

function calculateTithing() { var income = parseFloat(document.getElementById('incomeAmount').value); var other = parseFloat(document.getElementById('otherIncrease').value) || 0; if (isNaN(income) || income <= 0) { alert("Please enter a valid income amount."); return; } // Calculation Logic var totalIncrease = income + other; var tithingAmount = totalIncrease * 0.10; var remainingBalance = totalIncrease – tithingAmount; // Display results document.getElementById('displayTotalIncrease').innerText = formatCurrency(totalIncrease); document.getElementById('displayTithingAmount').innerText = formatCurrency(tithingAmount); document.getElementById('displayRemaining').innerText = formatCurrency(remainingBalance); // Show the container document.getElementById('tithing-result-container').style.display = 'block'; } function formatCurrency(num) { return '$' + num.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); }

Leave a Reply

Your email address will not be published. Required fields are marked *