VGHow to change color of WMenuItem?
Added by Vitali Grabovski over 9 years ago
I tried
Where "myStyleWithColor" is
also tried:
and this:
Nothing works. Any suggestions?
Replies (3)
DK RE: How to change color of WMenuItem? - Added by Diwakar Kumar over 9 years ago
css property "color" only changes text color.
To change background color use "background-color" css property.
Also you should apply css property to ".dropdown-menu" class of bootstrap.
For e.g.:
@
.dropdown-menu .active > a, .dropdown-menu .active > a:hover {
background-color: #2004b4 !important;
background-image: none !important;
color: #e4d7d7 !important;
@
VG RE: How to change color of WMenuItem? - Added by Vitali Grabovski over 9 years ago
I want exactly to change text color.
Background color si changing fine.