Is it possible to do transparent background in css3 drop down menu generator?

Q: I'm trying the free menu and would like to have transparency around the menu. Any way to do that?

A: You should open "style.css" file, generated CSS3Menu in any text editor (for example,
NotePad), find following lines:

ul#css3menu1, ul#css3menu1 ul {
    background-color: #DEDEDE;
    border-color: #5F5F5F;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 1px;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}



and change background-color. So, you should have:

ul#css3menu1, ul#css3menu1 ul {
    background-color: transparent;
    border-color: #5F5F5F;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 1px;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

Related