Using a "fill" colour with the menu
-
Hello all,
Because of different size monitors, sometimes the menu on my home page gets muddled by the buildings, instead of being clear against the clouds. Is there a way to “fill” the space of the menu with a solid colour so that the menu items can be easily seen?
Thanks,
Chris
The blog I need help with is: (visible only to logged in users)
-
Hi !
Did you already modify the CSS ? A prettier option would be to add ‘text-shadow’ so you would have a ‘limited background’ behind letters. Something like that would work :
.menu-item a{ text-shadow: 2px 2px #000000; } .menu-item a:hover{ text-shadow:0 0 #ffffff; } .menu-item a:active{ text-shadow:0 0 #ffffff; } -
-
Yep !
.home .menu-item a{ text-shadow: 2px 2px #000000; } .home .menu-item a:hover{ text-shadow:0 0 #ffffff; } .home .menu-item a:active{ text-shadow:0 0 #ffffff; } -
-
.home .menu{ background:rgba(255,255,255,1); }You can change for the color you want, and the last parameter is opacity.
-
Do you mean the number 1 is opacity? How would I change opacity?
Thanks again for your help!
-
I was wondering how to reverse the home page title colour and hover colour, then the menu background to black and the menu words to white and hover colour to that aqua. Would you know how to do that?
-
-
-
Were you able to change the menu colors ? Write back if you need help !
Sorry for the delay, was away on camping :)
-
Ya, the white background worked. But I’m wondering what I manipulate in what you gave me to change the fill to black. And what do I manipulate (and how) to change the opacity?
Again, thanks for your help.
-
-
I was wondering about the background fill behind the menu text. How do I make that black? And how do I change opacity?
- The topic ‘Using a "fill" colour with the menu’ is closed to new replies.