I've just written joomla module. This is basic but working version of my moule. I want to 'effectize' it, so i need to work with some css. Elements of my module has own classes so i can style it very easy. But where to put CSS?
+1
A:
I typically just create a css folder under my module's directory. You can then use this call to include your css from your module's php code: JDocument::addStyleSheet
Will Mavis
2010-06-19 17:48:45
Thanks.but i decided to put css in <style></style>It's simple enough for my module
matiit
2010-06-20 10:46:29
A:
Yes but would still recommend to put CSS in a seperate folder as suggested by Will Mavis as it is the right professional approach.
Vikram
2010-10-17 02:09:18