Hello,
you can try the following code (insert in Appearance / Customize / Additional CSS):
.site-nav.active {
opacity: 0.9;
}
With the value (in the example 0.9) the opacity can be adjusted → the image background shines through the menu. With increasing opacity of the background (for example, 0.7), the font becomes increasingly paler. With the code:
body a {
color: #000;
}
… the font color in the main menu (left) can be made darker (in the example black #000 – more is not possible).
The opacity of the font in the second menu (right) can be adjusted with the following code (in the example the value 0.5):
.site-nav ul + ul a {
color: rgba( 0, 0, 0, 0.5 );
}
[ Signature deleted ]
-
This reply was modified 6 years, 6 months ago by martineller.
-
This reply was modified 6 years, 6 months ago by martineller.
-
This reply was modified 6 years, 6 months ago by martineller.
-
This reply was modified 6 years, 6 months ago by Jan Dembowski.