How to change top menu/submenu hyperlink property values?

When mouse-on to lingerie’s submenu, the submenu text color change to white as same as the background menu color. So I cannot see it. I would like to change it to black. How to make it.

Refer http://magento.cybertoads.net/eiregnil/lingerie.html

9 answers

Profile photo of Victor Lai 0.00 $tone August 20, 2013
Public

Hi Sherlock,

You should go to SKIN menu and change it to other color (jade, red, yellow, green, violet) rather than DEFAULT COLOR and ABSTRACT COLOR. Then you will see the problem.

#2
Profile photo of Victor Lai 0.00 $tone August 21, 2013
Public

Please refer screenshot.
The submenu for LINGERIE, which is Bras, Knickers is in white color as same with the background color. So it will not seen by user until the user’s mouse move to it.

#4
Profile photo of Sherlock 0.00 $tone August 21, 2013
Public

Hi mate,

you can open the file of skin/frontend/default/jm_lingerie/joomlart/jmmegamenu/css/jmmegamenu.css look for this css rule

HTML Code:

.jm-megamenu ul.level1 li.mega a.mega span.menu-title {
         background: none repeat scroll 0 0 transparent;
        padding: 3px 0;
         text-shadow: none;
      }

change it to

HTML Code:

 .jm-megamenu ul.level1 li.mega a.mega span.menu-title {
  background: none repeat scroll 0 0 transparent;
  color: black !important;
  padding: 3px 0;
  text-shadow: none;
}

I hope this would help !

#5

Please login or Register to Submit Answer

Written By

Comments