how to control the video player size in WordPress

i am looking for a way to set a specific size for the video player in WordPress posts. i am using the WordPress built-in player and the J-W-player.
every player have a different size and i want to set a specific size for the players (like something general in style).
thank you.

Related posts

1 comment

  1. Depending on the markup and the class/id names of the players, you can use a single line of CSS to control the size:

        .jwplayer, .class_of_another_player, video {width:800px!important;}
    

Comments are closed.