Their are no convenient and exclusive styling hooks generated by this script for its generated menu elements.
The elements that you are looking for are all divisions. You can go into menu_com.js and find this:
Code:
if(DomYes){
var MmbrCntnr=Location.document.createElement("div");
MmbrCntnr.style.position='absolute';
MmbrCntnr.style.visibility='hidden';
if(RcrsLvl!=1){
MmbrCntnr.style.opacity='0.8';
MmbrCntnr.style.filter='alpha(opacity="80")';
}
Location.document.body.appendChild(MmbrCntnr)}
and add the red parts. This will take care of it for all modern browsers that support opacity.
You could instead add a class name there to make your own hook:
Code:
if(DomYes){
var MmbrCntnr=Location.document.createElement("div");
MmbrCntnr.style.position='absolute';
MmbrCntnr.style.visibility='hidden';
if(RcrsLvl!=1)
MmbrCntnr.className='HVsubs';
Location.document.body.appendChild(MmbrCntnr)}
Then you could us css style like:
Code:
.HVsubs {
filter:alpha(opacity="80");
opacity:0.8;
}
Bookmarks