Sometimes, creating a two levels menu and adding to site content embed video, submenu disappear under embed videos. A possible solution is add wmode=”opaque”. But what happens when we’re adding embed video dynamically, or we need to change dynamically all embed wmode to opaque. In this case, the possible use of jQuery library, and this script:

$(document).ready(function() {
 var embedTag;
 $(".youtube embed").each(function(i) {
 embedTag = $(this).attr("outerHTML");
 if ((embedTag != null) && (embedTag.length > 0)) {
 embedTag = embedTag.replace(/embed /gi, "embed wmode=\"opaque\" ");
 $(this).attr("outerHTML", embedTag);
 }
 });

Use this for firefox:

$('.youtube embed').attr('wmode','opaque');

Now give for submenu position:relative and indicate z-index (for example z-index:999) to show the submenu above this EMBED video.

There is a posibility to add transparency background with RGBa. You can use this for anything that can take the CSS color property. For example background: rgba(255, 255, 255, 0.5);. 0.5 is alpha. This property works in Firefox, Safari, Chrome, Opera, but nor in IE.

IE uses the syntax filter:alpha(opacity=50). The lower value of this makes the element more transparent.

For example:

.myclass
{
background:#000000;
filter:alpha(opacity=50);
}

There will be black background with 50% transparency.

The release of eZ Publish Enterprise 4.4 is a landmark event. A wide range of improvements further consolidate eZ Publish as the leading Open Source platform for Web Content Management and Publishing.
eZ Publish Enterprise 4.4 is based on the eZ Publish community project, but with the additional assurance of the eZ Publish Enterprise subscription–a service which fully supports the platform.

As an eZ Publish 4.4 user, you benefit from numerous exciting new features in this version, including:

Continue reading