Contact Us forum partly below YouTube vido

MikeMpls

Well-known member
We have a random YouTube video displayed in every footer. The on-page Contact Us form comes up partly below the YouTube video. The text boxes for title & content are visible but not the button to submit the message.

This is not a major issue for me (we don't get much from Contact Us anyway) but a user reported it & I am passing it on.

XFContactUsIssue.webp

To see the issue, go to http://www.travelunderground.org & click on "Contact Us" at the bottom of any page.
 
You need to set the wmode for the youtube media BB Code.

Standard:
Code:
<object width="640" height="385" data="http://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash">
<param name="movie" value="http://www.youtube.com/v/{$id}&amp;fs=1" />
<param name="allowFullScreen" value="true" />
<param name="wmode" value="transparent" />
<embed src="http://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="640" height="385" />
</object>

Iframe:
Code:
<iframe class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/{$id}?wmode=opaque" frameborder="0"></iframe>

Use one or the other.
 
Top Bottom