|
Answer» I’m building a website using Dreamweaver CS6 on a MACINTOSH. On my menu bar the sub menu CONTENT area is transparent. I’m trying to put in a semitransparent color into the content field of my sub-menu and can’t figure out which new property to ADD and where in the CSS rules it should be added. I’ve tried many different workarounds but I’m only able to change the text color in a content field. Any ideas would be helpful thanksAssuming u used an unordered list for your sub menu you could add a class to the submenus (IF U DON'T HAVE ALREADY) Then in your css file add this:
Code: [Select].classname { background-color:#ccc; opacity:0.8; } I ask that u post some of your code to HELP us better understand what u r doing. Thanks a lot, I've got it working properly now. Next time I will include code examples as per your request.
|