Hello I have added Youtube videos to a few pages on my Pipeline site, but the thumbnails are huge. How do I make them smaller?
Hi @stevenunstick ,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/theme.css
- Add code below to end of file
#MainContent .page__template .rte__video-wrapper iframe[src^="https://www.youtube.com/embed"] {
position: static;
width: revert-layer;
height: revert-layer;
max-width: 100%;
}
#MainContent .page__template .rte__video-wrapper {
padding-bottom: 0;
}
@media(max-width: 560px){
#MainContent .page__template .rte__video-wrapper iframe[src^="https://www.youtube.com/embed"] {
height: 56vw;
}
}
