3

I'm working with Moodle Framework, so I need change layout of clean theme, in the document is written:

/style/custom.css 
This is where all the settings CSS is generated.

But why my change in the custom.css is not affect in my layout?

Lai32290
  • 8,062
  • 19
  • 65
  • 99

2 Answers2

9

Might be caching. On your development machine add this to your config.php

$CFG->themedesignermode = true;

Only do this when designing though, Moodle will be very slow otherwise. Remove it or set it to false when you are finished designing.

I wouldn't recommend putting it on a production server.

https://docs.moodle.org/28/en/Theme_Designer_Mode

Russell England
  • 9,436
  • 1
  • 27
  • 41
1

sometime you need to clear the cache of theme to apply your customization at style by go to site administration > appearance > theme selector then click clear cache button