Avatar of ksbunger1
ksbunger1
Flag for United States of America asked on

DotNetNuke SolPartMenu- How to change the Opacity?

I am using DotNetNuke 4.8.2 and was hoping to make my SolPartMenu "See Through". The problem is, when I change the opacity for the submenu, it also makes everything "see through" including the text. I need the background color of the drop-down box to be "see through" but the font to stay a solid color. I also want the (SubMenuItemSelect) to be a solid color. So once your scroll over an item in the menu that item is no longer "see through". Any clue how I can achieve this?
 I have included the code that I am using so far.

Thanks.
//****SKIN FILE****//
<dnn:SOLPARTMENU runat="server" id="dnnSOLPARTMENU" separator="<img src=&quot;sep.jpg&quot; valign=&quot;bottom&quot; height=&quot;15&quot;>" RootMenuItemCssClass ="MyRootMenuItem" RootMenuItemSelectedCssClass="MyRootMenuSelectedItem" submenuitemselectedcssclass="SubMenuItemSelect" submenucssclass="spmsub"  />		
//****************//
 
 
//****CSS FILE****//
.spmsub{
background-color:#CCCCCC;
color:#FFFFFF;
font-family:Tahoma,Arial,Helvetica;
font-size:9pt;
font-style:normal;
font-weight:bold;
opacity: 0.2;
filter: alpha (opacity=20);
} 
 
.spmsub .SubMenuItemSelect{
background-color: #CCCCCC;
color:#FFFFFF;
position: relative;
z-index:1000;
opacity: 1;
filter: alpha (opacity=100); 
}      
//**************//

Open in new window

ASP.NETCSSWeb Applications

Avatar of undefined
Last Comment
mreuring

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
mreuring

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
ksbunger1

ASKER
Thanks man, I appreciate your help. This works perfect. I'm upset that I did not think to do this myself. Great job!!!!
ksbunger1

ASKER
Perfect! This does exactly what I needed. Thank you!
mreuring

My pleasure :)
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy