.more-text { display: none; } .show-more-btn { background-color: #4CAF50; color: white; padding: 4px 8px; border: none; cursor: pointer; font-size: 14px; border-radius: 4px; margin-left: 8px; } .show-more-btn:hover { background-color: #45a049; } Properly maintained sheep shearing tools are essential for efficient and humane wool harvesting. Our professional sharpening services ensure your blades are kept in peak condition, providing smooth, clean cuts that reduce stress on the sheep and improve the quality of your fleece. Whether you use traditional shears or modern spring-loaded equipment, expert sharpening extends the lifespan of your tools and enhances your shearing experience. Show More function toggleText() { var moreText = document.getElementById('moreText'); var btn = event.target; if (moreText.style.display === 'none' || moreText.style.display === '') { moreText.style.display = 'inline'; btn.textContent = 'Show Less'; } else { moreText.style.display = 'none'; btn.textContent = 'Show More'; } }