• Resolved oltimus

    (@oltimus)


    In the video header during override, I’ve seen that you produce a code like this

    <figure>
    	<video>
    		<source src="https://www.xxx/yyy.mp4" type="video/mp4" />
    	</video>
    </figure>

    Why instead, don’t you use a better code like this

    <figure class="fb-feed-cover" data-feedback="fb:likes, fb:comments">
      <video autoplay>
        <source src="https://www.xxx/yyy.mp4" type="video/mp4" />  
      </video>
      <figcaption class="op-vertical-below">
        <h1>Caption for the figure - it means a news second field</h1>
      <cite>
        Cite - it means a new third field
      </cite>
    </figcaption>
    </figure>

    In this way, the class=”fb-feed-cover” would make a strategic production right away, and instead of <video> it would be <video autoplay>

    I’ve used it, and it’s great. I’d love to hear from you

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Video header – a suggestion’ is closed to new replies.