So I found a solution to this for anyone who reads this post in the future and has a similar issue:
The issue: the Video and a parent div was being positioned using
transform: translate(-50%, -50%);
This for some reason did did not effect the video pseudo elements of the video specifically the extras menu
The solution: remove the above line of code from the parent div and replace with
position: absolute;
top: 50%;
left: 50%;
and position the video in a similar way instead of using the transform translate
Post a Comment for "Html 5 Video Cc Button"