tags:

views:

46

answers:

2

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
Thanks.but i decided to put css in <style></style>It's simple enough for my module
matiit
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