I found I was having a problem with embedded YouTube videos in K2 items not being responsive. It's easy to do... Might want to add this little bit of css. Just a suggestion and a solution for anyone who may need it.
Add code below to k2.css
- Code: Select all
.itemVideoEmbedded {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.itemVideoEmbedded iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}