Hi,
To hide video views you have 2 solutions:
1. Add custom CSS code in Appearance -> Customize -> Additional CSS:
.video-views {
display: none;
}
To hide video information you can use this code:
.video-information {
display: none;
}
2. You can use child theme to remove it follow this topic:
How to customize WordPress theme using Child theme
The template for customize is: wp-content/themes/formota/templates/single/video-style-2.php (or other file depend on setting at backend)
https://prnt.sc/t0tjn5
3. To change font-size of text all site you can set it in Theme Options -> Typography
How to change Color Scheme and Typography in HaruTheme
If change only text in single video page you can use this code:
.single-video .video-content {
font-size: 15px;
}
How to get these CSS above please see in this video tutorial: https://www.youtube.com/watch?v=_OJ8mByfDUU
Hope this help!
***
Regards,
HaruTheme