Support » Plugin: Videopack » Watermark size

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Kyle Gilman

    (@kylegilman)

    You can position and size the watermark overlay any way you want using CSS.

    The default style is

    .kgvid_watermark img {
      display: block;
      position: absolute;
      bottom: 7%;
      right: 5%;
      z-index: 1;
      margin: 0px;
      max-width: 10%;
      box-shadow: none;
    }

    You can override any of those settings in either your theme’s custom CSS area or using the Jetpack “Custom CSS” module. Most likely you only need to add something like

    .kgvid_watermark img {
      max-width: 20%;
    }

    Or whatever size you want it to be. Since videos can be shown very large or very small on different devices and in fullscreen mode, setting a dimension in pixels can lead to unattractive results, but see what works for you.

    Thread Starter Blackbam

    (@blackbam)

    Ah thanks a lot. I would not have thought its just simple CSS.

    Also thanks for the great Plugin!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Watermark size’ is closed to new replies.