Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Change one class, without changing another?
Best Answers
-
UnderDog MVP
I'm no CSS expert, but I would look for the class that the (I want to change this) Meta div is in.
Is it in "Discussion List" or is it in "Discussion". You can find that easily by using FireBug of course.
Now you do:
.DiscussionList .Meta {changethis : #FF0000}
Someone will stop by to correct me, no worries. Problem is that .Meta is a CSS class and not a CSS id.There was an error rendering this rich post.
1
Answers
I'm no CSS expert, but I would look for the class that the (I want to change this) Meta div is in.
Is it in "Discussion List" or is it in "Discussion". You can find that easily by using FireBug of course.
Now you do:
.DiscussionList .Meta {changethis : #FF0000}
Someone will stop by to correct me, no worries. Problem is that .Meta is a CSS class and not a CSS id.There was an error rendering this rich post.
@amphios
You can make rules specific to different pages in Vanilla.
By prefixing, for example
.Discussion
to a CSS rule, it will only affect the rule on discussion pages.
To change only the front page, prefix
.Discussions
etc.Ah that's perfect thanks both of you! Short and simple answer. I was using the wrong 'CSS ID' as @underdog put it. Thanks again. Progress can continue on my style.