• I have inserted media – an mp4 from my computer. It runs fine on the computer. But on wordpress it only shows in a strip on the left and in a tiny section of that. All screwed up. anyone know how I can fix that?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • It shows a tiny strip on my computer as well.

    And the problem has nothing to do with the video, so the video doesn’t need any editing.

    Instead, the div container where the video has been placed has an inline width of 0. Yes, zero pixels. That’s why the video has been squished into a tiny vertical strip.

    If you added this inline style yourself, just remove it and your video should occupy 100% of the content area.

    If you have no clue how this zero-width inline style came about, you can add the following custom CSS in APPEARANCE => CUSTOMIZE => ADDITIONAL CSS to override the problematic inline style:

    div.wp-video {
       width: 100% !important;
    }

Viewing 1 replies (of 1 total)

The topic ‘How To Edit an MP4 to fit page?’ is closed to new replies.