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.
Question about styles...
I am trying to develop my own style / theme. I created a #body tag to wrap all the #body elements in white. I'm not sure why it works on the disussion pages but not the Category or other pages. Any thoughts? I'm trying this out here:
http://healthyschoolscampaign.org/community/
0
This discussion has been closed.
Comments
Try adding
#CategoryPage #Body {
overflow:auto;
}
or simply
#Body {
overflow:auto;
}
Other options to play with are height:inherit; for the outer div, or using the pseudo-class :after method. More info here and here.
Like you, I tried to figure out these things. Have you read the documentation about themes and styles.
I am still reading and didn't tried but I guess it will be in themes/head.php. I think you have to create a new folder for you theme and copy head.php in it, and make your changes in this copy.
Lol... That's looking good.