1. First of all I would like to customize the heading to our used font, size etc. How can I do that?
You should write custom CSS code to change those styles. We recommend adding your CSS code in the “Additional CSS” option of your theme’s “Customizer” menu.
Example CSS code:
.single-aiovg_videos .aiovg-videos h3 {
font-size: 18px;
color: blue;
}
2. Secondly I would really like to change the position to below the comment section.
Sorry, this is possible only by writing an override (single-aiovg_videos.php) for our custom post type page. Kindly refer “Custom Post Type Template” section in https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/
Thank you for your answer!
1. It did work fine.
Is there any option to create a little more space between the video description and the “you may also like” section. Maybe additional css?
2. I will look into it, thank you!
Would it be also necessary to customize the entire template, if I want to change the position of the “category folder” instead of below the video to above the headline?
1. Is there any option to create a little more space between the video description and the “you may also like” section. Maybe additional css?
Kindly try using the following CSS code,
.single-aiovg_videos .aiovg-videos {
margin-top: 50px;
}
2. Would it be also necessary to customize the entire template, if I want to change the position of the “category folder” instead of below the video to above the headline?
Sure. Again I would refer the same documentation page URL https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/ and the same section “Custom Post Type Template”
You need to write an override for the single video page template file /all-in-one-video-gallery/public/templates/single-video.php