Forum Discussion

Nedim's avatar
Nedim
Community Member
2 months ago
Solved

Hide Volume Button in Video Controls

How can I hide the volume button in the video controls?
  • Nedim's avatar
    Nedim
    2 months ago

    Try this:

    document.querySelectorAll('.video-volume').forEach(volume => {
        volume.style.display = 'none';
    });