All in One Video Plugin for Wordpress Problem

2 replies [Last post]
Joined: 07/11/2009
Points: 2

When I add a media file to use the video plugin the video plays with no problem, but it chops the top portion of my site search bar and my 'About' page link in half.

If I remove the video and leave the plugin enabled it is fine, so it appears isolated to only when video is added which of course is an issue.

I am working on Wordpress version 2.8.

Thanks for assistance

http://toobroketolaugh.com/

Joined: 04/05/2009
Points: 354

Firstly, the All in One Video Plugin is not supported in Wordpress 2.8 yet.

Secondly, have you tried playing around with the CSS of the theme and giving the navigation DIV a set height?

#navigation {
        background: none;
        margin: 0 auto;
        overflow: hidden;
        width: 760px;
        padding: 10px 11px 0 11px;
        position: relative;
        text-align: left;
        font-family: Trebuchet MS,Tahoma, Verdana, Arial, Serif;
}

Turning the overflow visibility on might also help...?

Joined: 07/11/2009
Points: 2

Thanks for the tip. I was able to fix it. I changed the height from 1% to 3% and that did the trick. Great plugin!

#navigation {
background: none;
margin: 0 auto;
overflow: hidden;
width: 760px;
padding: 10px 11px 0 11px;
position: relative;
text-align: left;
font-family: Trebuchet MS,Tahoma, Verdana, Arial, Serif;
}
html #navigation {
height: 3%;