"Joe" <Jo*@discussions.microsoft.comwrote in message
news:63**********************************@microsof t.com...
I am using the ASP.NET 2.0 menu control and would like to make its
background transparent, so that the page's background image can be seen
through it. I haven't found an obvious way to do this. Does anyone have
any
ideas?
An <asp:Menucontrol is just an HTML table by the time it gets rendered and
streamed down to the client browser.
The "normal" way of making a <table>, <tror <tdbackground transparent is
something like this:
<td style="background-color: transparent;"></td>
I haven't tried this with an <asp:Menu>, though, but it might be a good
place to start...