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.