Hi,
I'm using DROP DOWN MENU webpart, and I gave the drop down a class:
.subLevelCMSMenu{
background: transparent url("~/App_Themes/keloo/images/menuMain/mainMenu-dropDown-bg.png") no-repeat ;
width:178px;
}
All good in all browsers except IE7/8.
in IE the png has a white background. I tried using IE DEVELOPER TOOLS to pin point the white background but couldn't find where its coming from.
I went to webpart code:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="~/CMSWebParts/Navigation/cmsmenu.ascx.cs"
Inherits="CMSWebParts_cmsmenu" %>
<cms:CMSMenu ID="menuElem" runat="server" />
when I added:
MenuControl-BackColor="Red" the white changed tored, so I tried
MenuControl-BackColor="Transparent" but it didnt help.
Any idea how to fix issue?
THanks