Hello!
I've made a drop-down menu using the hover sub-class in CSS:
.ddmenu{ display:none; }
.box:hover .ddmenu{ padding:0px; display:block; }
Is it possible to make the "ddmenu" object appear when the user clicks on the object with the "box" class instead of when he hovers the mouse over it using HTML/CSS? If it's not how do I use Java for it?