I created a drop down menu for “Romanian Folklore ”
But the background changed to red (when hover) and lila . I want it to be black as the primary menu.
I also want all the menus to be in the higher part of the header.
I want that all the menus to have the same color (normal and at hover).
Right now I use this extra code for the colors : #page .entry-title a:hover {
color: #855aa5;
}
I added:
/Change active and hover color/
.dropdown-menu>.active>a {
background-color: #000 !important;
color: #855aa5 !important;
}
.dropdown-menu a:hover{
background-color: #000 !important;
color: #855aa5 !important;
}
But the background color is lila 855aa5 and the text black.
I want the background to be exactly as the color of the background of the header and the text white and only at hover to be this color : 855aa5 . So same patter as the header.
I resolved the issue with the menu which was down by making the logo smaller.
Thanks ,
Right now the background is black, but if selecting several times the subitems (from the drop down menu), the background becomes red .
I would like the background to be always black.
And also, the color of the subitems text is a kind of grey. I would like all menu text including the drop down menu to be all white.
Thanks and really appreaciating!
Adriana
PS:
Pls see al the CSS I have until now so that not to overlapp :
/Heading color/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
color: #855aa5;
}
/Change active and hover color/ ul.dropdown-menu {
It is working much better now on PC.
But on iphone (smart phones) the background still becomes red :(.
Is there any way we can do this for both platforms?
So, now I should use both the code you gave me earlier and the last one you gave me? :
.navbar-default .navbar-nav li a {
color: #fff;
}
.dropdown-menu>.active>a{
background-color: transparent;
} #page .dropdown-menu>.active>a{
background-color: transparent;
}
Or just the last piece of code you gave me?
Thanks,
Adriana