Youtube Playlist

Posted in: Newspaper
Post count: 12

Hi,
I’d like to know how to adjust two things on the Youtube Playlist.
1) How do switch playlist from the right side to the left side
2) When paused, how to remove the suggested videos (more videos button)

Thanks so much!

Post count: 23312

Hello huynh101,

1)To make these changes, you should use a bit of CSS code. Try the code below and place it in Theme panel -> Custom CSS Area.

The code is ->

.td_video_playlist_column_3 .td_wrapper_player{
margin-left: 341px;
}
.td_video_playlist_column_3 .td_container_video_playlist{
left: 0;
}

The result is here -> https://www.screencast.com/t/WqIWeY70x

2)You should make some changes in tagdiv_theme.min.js according to the following topic here -> https://forum.tagdiv.com/topic/disable-related-videos-in-youtube-playlist/ To be simple, you have to edit the tagdiv_theme.js, uncomment the rel: 0 according to above topic and then, using an online tool for minification create the minify version of this folder and replace it with the content of tagdiv_theme.min.js Clear all the caches and check the results. Should work as expected.

Thanks for your understanding!

Post count: 12

Hi Thanks so much, The left alignment works, however when the browsers is scaled thinner or when viewed on mobile, the video screen aligns to the far right off screen.

Post count: 12

And an additional question:

When I place the player within the Tour (tabbed) module, the video is also offset.
link: https://imgur.com/eKaoLzB

Is there anyway to adjust so that it scales properly?

THanks again

Post count: 22421

Hello,

Please use this code instead:

@media(min-width:1018px){
.td_video_playlist_column_3 .td_wrapper_player{
margin-left: 341px;
}
.td_video_playlist_column_3 .td_container_video_playlist{
left: 0;
}
}

Unfortunately it will not work in tabs. Visual composer has issues using complex elements in tabs.

Thanks.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.