Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
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.