First post CSS
                    Hi Guys,
I've been travelling around Vanilla and I have a question:
Is there a simple way to change some CSS style properties (e.g background color) of the first post of a thread?
I looked into the CSS file and seems that there's no specific style class for the first post.
Thanks                
                0          
            This discussion has been closed.
             
         
            
Comments
.FirstComment{
background-color: #FF0000 !important;
}
using the !important for any style rule will give it precedence.
most notably: !important rules DO NOT work in IE for windows.