• Resolved EMar

    (@sounds)


    Hi,

    Is it possible to get a sidebar widget for displaying other videos?
    So when a video is selected in the sidebar playlist, it loads in the player.
    Or maybe a nice sliding list of videos to the right side or under the player.

    Anything like that..

    The list of videos under the player gets very long and there’s no scroller.
    So I think it would be neat if we had a sidebar widget to handle playlist.

    Thanks

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

    (@codepeople)

    Hello @sounds

    Thank you very much for using our plugin. You can control the playlist height and its appearance with CSS. For example, you can enter the style definition below through the menu option “Appearance > Customize > Additional CSS”:

    #ms_avp .emjs-playlist {
      overflow-x: scroll;
      overflow-y: hidden;
      white-space: nowrap;
      height:140px;
    }
    
    #ms_avp .emjs-playlist li {
        display: inline-block !important;
        width:140px !important;
        height:140px !important;
    }

    Or, for scrolling vertically:

    #ms_avp .emjs-playlist {
      overflow-y: scroll;
      height:140px !important;
      display:block;
    }

    These are only basic examples.

    Best regards.

    Thread Starter EMar

    (@sounds)

    @codepeople thanks, that’s nicer with the scroller.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Playlist widget or sliding playlist’ is closed to new replies.