Video time video-time
The video time is the numeric display that shows the current time and duration of the currently playing video.
The video time font family, font size, and font color are among the properties that CSS can control. It can also be positioned, relative to the control bar that contains it, by CSS.
The appearance of the video time is controlled with the following CSS class selector:
.s7mixedmediaviewer .s7videotime
CSS properties of video time css-properties-of-video-time
Example section-e8caea0a303c425a8a637c2a47c06355
Set the video time to light gray (hexadecimal #BBBBBB
), sized at 12 pixels, positioned 15 pixels from the top of the control bar, and 80 pixels from the right edges of the control bar.
.s7mixedmediaviewer .s7videotime {
top:15px;
right:80px;
font-size:12px;
color:#BBBBBB;
width:60px;
}
recommendation-more-help
b7426f53-aad9-4c00-83fc-664f30f681e8