Transparent Menu

G

Guest

Hello All,

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?

TIA,
 
M

Mark Rae

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:Menu> control 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>, <tr> or <td> background 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...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top