Hi,
Is it possible to make the background of my menu transparent? No matter what background attribute I change it still stays light gray.
Thanks,
Emma
Hello,
You can use Page_Load event and implement logic that coreresponds with selected page. Also you can use the property UltraWebMenu1.Items[1].Styles.ForeColor to set color. Please take a look ath the code below: protected void Page_Load(object sender, EventArgs e) { UltraWebMenu1.Items[1].Styles.ForeColor = Color.Red; }
Hope this helps.
Cancel that - I figured out that I needed to change the background of IslandStyle attribute.
Now I have a different question - how do I change the forecolour of the menu item that corresponds to the selected page? Do I need to do this using code, or is there a SelectedStyle attribute anywhere like the asp.net menu?