Changing some background colors

Hello,

I want to change the background color of the pop-up and drop-down menus. I tried changing it with the main css in the style manager but it didn't work. What other ways to change it?

Thanks

#510750

Yep, go under style manager / aqua-soft v4 / main css, then scroll down all the way to the bottom where you see Additional CSS Definitions

Just change the following bit (its at the end of the css), this bit controls the drop menus at the top, and when you click usernames.

.dropdown {
border: 1px solid #b2b2b2;
background: #f2f2f2;
color: #000000;
}

.dropdown dl {
margin: 0;
padding: 4px 0 4px 0;
list-style: none;
}

.dropdown dl dt {
margin: 0;
padding: 0;
padding: 3px 11px 3px 11px;
display: block;
color: #909090;
font-weight: normal;
cursor: default;
}

.dropdown dl dt a {
color: #909090;
text-decoration: none;
cursor: pointer;
}

.dropdown dl dt a:hover {
color: #000000;
}

.dropdown dl dd {
margin: 0;
padding: 0;
}

.dropdown dd a {
padding: 3px 22px 3px 22px;
display: block;
color: #000000;
text-decoration: none;
cursor: pointer;
}

.dropdown dd a:hover {
background: url(images/as4/gradients/graphite_gradient_dropdown.gif) #555e69 repeat-x;
color: #ffffff;
text-decoration: none;
}

#510753

Hello Timan,

Thanks for that. But I have another question. I also want to change the background color of the drop-down list menus. Like the one that allows you to change the skin of your site or the one that allows you to sort the messages. I tried doing it in the codes that states above but again it didnt work.

Thanks in advance.

#510771