Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript I need help with FitVids.js Reply To: I need help with FitVids.js

#155827
TheDoc
Member

You haven’t included the FitVids file anywhere that I can see on the live website.

Furthermore, FitVids is meant for fluid websites that resize. Your site is fixed-width, meaning the videos don’t need to be resized at all because the container is always the same width.

If you’re having problems when viewing on a phone, you might want to try adding this bit of CSS:

iframe {
    max-width: 100%;
}