Webboard

Pełna wersja: Zmiana koloru tła notki moderacyjnej
Aktualnie przeglądasz uproszczoną wersję forum. Kliknij tutaj, by zobaczyć wersję z pełnym formatowaniem.
Problem polega na zmianie koloru tła Notatka moderatora (2.0) ze standardowego (białego) na jakiś ciemny pod styl mojego forum. Dodam że szukałem już w global.css linijki .modnotice { jednakże nie mam jej a notka się wyświetla tylko że chciałbym zmienić kolory.
Szukaj w notemoderator.css zamiast w global.css.
Dzięki znalazłem ale co mam zmienić w notkach aby zamiast białego tła było np szare? 
notemoderator.css
Kod:
form #notemoderator {
   width: 500px;
}

.notemoderator {
    width: 100%;
}

.notemoderator_note_normal {
    background-image: url(images/notemoderator/normal.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 8px 12px;
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    padding: 10px 10px 10px 30px;
    border-radius: 6px 6px 6px 6px;
    color: #515151;
    line-height: 150%;
    font-size: 13px;
    margin-top: 7px;
    clear: both;
}

.notemoderator_note_information {
    background-image: url(images/notemoderator/information.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 8px 12px;
    background-color: #ebfcdf;
    border: 1px solid #a4cfa4;
    padding: 10px 10px 10px 30px;
    border-radius: 6px 6px 6px 6px;
    color: #0e440e;
    line-height: 150%;
    font-size: 13px;
    margin-top: 7px;
    clear: both;
}

.notemoderator_note_warn {
    background-image: url(images/notemoderator/warn.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 8px 12px;
    background-color: #f3e3e6;
    border: 1px solid #e599aa;
    padding: 10px 10px 10px 30px;
    border-radius: 6px 6px 6px 6px;
    color: #80001c;
    line-height: 150%;
    font-size: 13px;
    margin-top: 7px;
    clear: both;
}

.notemoderator_button_edit {
    margin-right: 10px;
}
background-color: #ffffff;

#fff to biały, wyszukaj w necie innego koloru w formacie hex i podstaw.
Wielkie dzięki koledzy ! ;)
Wszystko działa :)