Forum Discussion
Nedim
2 months agoCommunity Member
Hide Volume Button in Video Controls
How can I hide the volume button in the video controls?
- 2 months ago
Try this:
document.querySelectorAll('.video-volume').forEach(volume => { volume.style.display = 'none'; });
MichaelGallaghe
2 months agoCommunity Member
That worked perfectly! Thank you so much.