Extra.css not applying

mmoore5553

Well-known member
I have no issues with 1.1 but newest version this not getting applied as i put the new css in there but never takes affect. I have to go back in and modify it on the built in css.
 
Well to be honest it was not just this one as some others i had to modify directly too. Here is one example


Code:
.discussionListItem {
    background-color: #FCFCFF;
    border-bottom: 1px solid #B0C4DE;
}

As i just made the line darker to add more separation between threads.

I am not worthy to have you visit my thread. (y)
 
Oh i am old school as i just do it via css and in one spot so i can just save it later when upgrade time or when i do mass changes. I will test and report back.

Do you sleep at all Brogan ?

No it did not work with !important.
 
Code:
 background-color: #FCFCFF; !important
border-bottom: 1px solid #B0C4DE !important;
Semi-colon in the wrong place. :)
 
I tested this on my local and it worked fine.

Code:
.discussionListItem {
    background-color: orange !important;
    border-bottom: 1px solid green !important;
}
 
Top Bottom