Articles
How to Promote Your Fundraising Event With Video: 5 Steps
Read Here
November 12, 2025
.video-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
@media (max-width: 767px) {
.video-grid {
grid-template-columns: repeat(1, 1fr);
}
}
/* Adjust iframe height */
.video-grid iframe {
height: 315px; /* Set a specific height for the iframes */
}
@media (max-width: 767px) {
.video-grid iframe {
height: 200px; /* Adjust height for smaller screens */
}
}