Branded Sharing Pages are a fantastic way to share your Vidyard videos and with a little bit of customization, you can make a Branded Sharing Page truly your own!
You can customize many aspects of the branded sharing page with HTML and CSS. This article will explain how to change text fonts within the branded sharing page.
In the example below, we'll be changing the font of the title on the branded sharing page.
Use CSS to style the sharing page
- From the Vidyard Dashboard, select Channels > Sharing Page
- Click on the Advanced tab to access the CSS Styling box
- Using CSS, identify the element you want to change, then add CSS to alter the style
- Click Save when finished
Example
h1 {
font-family: Courier !important;
color: red !important;
font-size: 20px !important;
}
In this example, the font is styled to be courier, the color of the text is red, and the size is set to 20px.