jeff s. wrote:
> I need a little help with my user.css file. I am trying to change the 
> background of the news reader, but it isn't working. I have changed my 
> text but the background will not change. This what my last few lines 
> look like. Any help would be great.
> 
> blockquote[type=cite] blockquote blockquote blockquote blockquote 
> blockquote {
> color: gray ! important;
> border-color: teal ! important;
> }
> font-family: Arial !important;
> 
> background-color: gray !important;

You need to apply the rule to something. To see how it works, try

  blockquote[type=cite] blockquote blockquote blockquote blockquote

blockquote {
    color: gray ! important;
    border-color: teal ! important;
    font-family: Arial !important;
    background-color: gray !important;
}


Try indenting your css-code.  programmers do this for good reasons :-D

-- 
regards, Esben
home.worldonline.dk/~mesben (danish site)


Reply via email to