> ## Documentation Index
> Fetch the complete documentation index at: https://velt-mintlify-e6426361.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Velt Video Player

> Customize the Velt Video Player component for video comments — disable Shadow DOM, override playback controls, and style timestamps to match your app.

<img src="https://mintcdn.com/velt-mintlify-e6426361/LRJ4ySK8sl63VV8A/images/customization/comments/velt-video-player/video-player.png?fit=max&auto=format&n=LRJ4ySK8sl63VV8A&q=85&s=83c2de3983be2ea145aeea2e3d94aa06" alt="" width="1280" height="720" data-path="images/customization/comments/velt-video-player/video-player.png" />

## Disable ShadowDOM

* By default, ShadowDOM is used to ensure that your app's CSS does not interfere with the styling of the SDK components.
* Disable the shadow dom to apply your custom CSS to the component.

Default: `true`

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltVideoPlayer shadowDom={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-video-player shadow-dom="false"></velt-video-player>
    ```
  </Tab>
</Tabs>
