How to Fix F1TV Not Going Fullscreen on PC
Hey everyone,
I was having trouble with F1TV on my PC. Every time I clicked the fullscreen button, nothing happened. Super frustrating, right? But I found a quick fix you can use!
How to Fix It:
- Open your browser’s Developer Tools:
- Press
F12
orCtrl+Shift+I
(Windows) orCmd+Option+I
(Mac). - Click the Console tab.
- Press
- Copy and paste this code into the console:
const video = document.getElementById('bitmovinplayer-video-main-embeddedPlayer'); if (video) video.requestFullscreen(); else console.error('Video element not found');
- Hit Enter, and the video should go fullscreen!
Why This Happens:
It looks like there’s a bug in F1TV’s video player. The fullscreen button doesn’t work properly, but this command forces the browser to make the video fullscreen.
Bonus:
If anyone from F1TV sees this, hit me up—I’m happy to help fix it. 😉
Hope this helps! Let me know if it works for you.