Hey guys,
i am currently working on a project for my semester at my university. I want to build homepage for a PR Agency in Germany. It is my first time building a page, so i am relatively new to this stuff.
On this page: i want to change the colors of the font. When you click on "Leistungen" and then hover over it, every subsite name is shown in grey. How can i change that? I want to have every name there in black,so that you can read it better...
What i already found out with firebug and changed in the CSS window is shown below. Maybe i made a mistake there, because i dont understand it for 100%. I really came to this settings by trial and error. ;)
'
#access li a:hover {
background: #ff9900 !important;
color: Black !important;
}
#access ul ul a {
background: none repeat scroll 0 0 #ff9900 !important;
height: auto;
line-height: 1em;
padding: 10px;
}
#access li:hover > a, #access ul ul *:hover > a {
background: none repeat scroll 0 0 #ff9900;
color: black !important;
}
#access ul ul {
background: none repeat scroll 0 0 #ff9900;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
display: none;
float: left;
left: 0;
position: absolute;
top: 38px;
z-index: 99999;
}
#access a {
color: black;
display: block;
line-height: 38px;
padding: 0 10px;
text-decoration: none;
}
'
Thank you in advance!