membuat menu joomla menjadi transparant adalah dengan mengubah :
div.module_menu a {
color: #fff;
background: #333333 ; /* aslinya #000; */
text-transform: capitalize; /* aslinya uppercase; */
font-weight: bold;
font-size: 140%;
padding: 2px 5px;
margin: 1px 0px;
padding: 1px 5px;
}
Menjadi
div.module_menu a {
color: #fff;
background: url(images/bg.png) 0 0;
box-shadow: inset 0 0px 1px #fff;
-o-box-shadow: inset 0 0px 1px #fff;
-webkit-box-shadow: inset 0 0px 1px #fff;
-moz-box-shadow: inset 0 0px 1px #fff;
text-transform: capitalize; /* aslinya uppercase; */
font-weight: bold;
font-size: 140%;
padding: 2px 5px;
margin: 1px 0px;
padding: 1px 5px;
}
baca juga .w3schools.com/css/css_image_transparency.asp
div.module_menu a {
color: #fff;
background: #333333 ; /* aslinya #000; */
text-transform: capitalize; /* aslinya uppercase; */
font-weight: bold;
font-size: 140%;
padding: 2px 5px;
margin: 1px 0px;
padding: 1px 5px;
}
Menjadi
div.module_menu a {
color: #fff;
background: url(images/bg.png) 0 0;
box-shadow: inset 0 0px 1px #fff;
-o-box-shadow: inset 0 0px 1px #fff;
-webkit-box-shadow: inset 0 0px 1px #fff;
-moz-box-shadow: inset 0 0px 1px #fff;
text-transform: capitalize; /* aslinya uppercase; */
font-weight: bold;
font-size: 140%;
padding: 2px 5px;
margin: 1px 0px;
padding: 1px 5px;
}
baca juga .w3schools.com/css/css_image_transparency.asp