Q: Hello. I purchased your menu. I am surprised that there isn't anything with a transparent background! Is it possible?
A: You should open "style.css" file generated by CSS3Menu in any text editor (for example,
NotePad), find following lines:
ul#css3menu1 a {
background-color: #424542;
background-image: none;
background-repeat: repeat;
border-color: #424542;
border-radius: 4px 4px 4px 4px;
border-style: solid;
border-width: 1px 0 0;
color: #FFFFFF;
cursor: pointer;
display: block;
font: 12px Trebuchet MS;
padding: 10px 9px;
text-align: left;
text-decoration: none;
vertical-align: middle;
}
and change background-color. So, you should have:
ul#css3menu1 a {
background-color: transparent;
background-image: none;
background-repeat: repeat;
border-color: #424542;
border-radius: 4px 4px 4px 4px;
border-style: solid;
border-width: 1px 0 0;
color: #FFFFFF;
cursor: pointer;
display: block;
font: 12px Trebuchet MS;
padding: 10px 9px;
text-align: left;
text-decoration: none;
vertical-align: middle;
}
For troubleshooting, feature requests, and general help,
contact Customer Support at . Make sure to
include details on your browser, operating system,
CSS3 Menu version, link to your page.
In most cases you'll get a reply within 1 business day. Please read the FAQs first to see if your question has already been answered.