Transparent Menu

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?Sm9l?=

    #1

    Transparent Menu

    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,
    --
    Joe
  • Mark Rae

    #2
    Re: Transparent Menu

    "Joe" <Joe@discussion s.microsoft.com wrote in message
    news:63CB307F-2A66-4AE8-A03F-750F93EE77E9@mi crosoft.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:Menucontro l 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="backgrou nd-color: transparent;"></td>

    I haven't tried this with an <asp:Menu>, though, but it might be a good
    place to start...


    Comment

    Working...