Skip Navigation Website Accessibility
 


D'Addario NBM1140 Nickel Bronze Mandolin Strings, Medium, 11-40

available at

Low in-store inventory, may be subject to change.

D'Addario's premium uncoated mandolin string set that provides a crisp and clear sound to accentuate the unique tone of your mandolin. NBM1140 delivers the ideal balance of volume, projection and comfortable playability. Loopend construction for universal fit.

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }