I'm using a RadButton and trying to get the button background to transparent. I am using an image on the button. In Chrome it displays as expected but in IE 11 it does not display properly. I am using Telerik version 2014.1.225.40.
.rbClearButton{ background-color: transparent !important; border: none !important; color: #000 !important; /* optional, depending on the background */}
RadButton rb = new RadButton();rb.Icon.PrimaryIconUrl = "~/Styles/images/alarm_red.png";rb.ToolTip = "Alarm";rb.CssClass = "rbClearButton";//rb.BackColor = Color.Yellow;