(Free) Gallery Block Video Description

Description:

  • showing description under video title in Gallery Block
  • view demo – password: abc
  • buy me a coffee if is useful for you, thank you!

01.26c13v4 1

#1. Install Code

Make sure you added Title, Description to Video

01.26c13v4 2

Make you you enabled Title01.26c13v4 3

Next, hover on Page where you use Gallery Block > Click Gear icon

01.26c13v4 4

Next, click Advanced > Paste this code

<!-- Gallery Block Video Description -->
<script src="https://code.beaverhero.com/galleryblock/videodescription.js"></script>
<style>.image-slide-description p {margin: 0px;font-size: 13px;text-align: center;}
</style>

01.26c13v4 free

#2. Customize

#2.1. To make video title/description over video on hover, like this.

01.26c13v4 6

You can use this code to Custom CSS

div.image-slide-title-des {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}
div.image-slide-title-des * {
    color: #fff;
}
div.slide:hover div.image-slide-title-des {
    opacity: 1 !important;
    transition: all 0.3s ease;
}

01.26c13v4 7

#2.2. To change video description style, use this to Custom CSS

div.image-slide-description * {
    color: #f1f;
    font-size: 14px;
    font-family: proxima-nova;
}
Buy me a coffee