I want to change in the navBrand the background color (to white) and the text (to black) and it still fails (
)
Background:
This works only with Chrome but not in FFox:
.navbar.pl-color-black-trans {
background-color: transparent;
background-image: -webkit-linear-gradient(top,rgba(255, 255, 255, 1),rgba(255, 255, 255, 1));
background-repeat: repeat-x;
border-top: 0 solid transparent;
}
Texto color:
I can change size, weight... but not color with this:
#navbar div.navbar.fix {
font-size: 23px !important;
font-weight: 600 !important;
line-height: 20px !important;
color: black !important;
}
How can I do?












