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.
Easy question: Add another stylesheet
Here's an easy question for anybody who's marginally familiar with Vanilla: how do I add a stylesheet to all the pages? I'm trying to make an extension, and I need the command that I can place in my extension to add a stylesheet to all the pages. Thanks in advance!
0
This discussion has been closed.
Comments
if(isset($Head)) $Head->AddStyleSheet(...);
would do the trickAddStyleSheet
method).A helpful resource is the Vanilla:ClassTree. But the best place to start is to look through the documentation on Developing New Extensions.