Skip to content
MarCnu edited this page Jun 10, 2014 · 21 revisions

Provisioning method

To enable Stanford theming in a sandbox instance:

  1. Add the following lines to /edx/app/edx_ansible/server-vars.yml
edxapp_use_custom_theme: true
edxapp_theme_name: 'default'
edxapp_theme_source_repo: 'git://github.com/Stanford-Online/edx-default-theme.git'
edxapp_theme_version: 'HEAD'
  1. Re-run the provisioning scripts:
sudo /edx/bin/update edx-platform master

Manual method

Theming only works for the LMS.

  1. You should first modify /edx/app/edxapp/lms.auth.json, and set USE_CUSTOM_THEME (True), THEME_NAME (the theme directory name) and PLATFORM_NAME (it will replace "edX" in many views).

  2. You must put theme files in /edx/app/edxapp/themes/<theme-name>/. Put your images in themes/<theme-name>/static/images. The themes/<theme-name>/static/sass directory should at least contain a file named _<theme-name>.scss. The themes/<theme-name>/templates directory must contain 4 files :

  • theme-header.html
  • theme-head-extra.html
  • theme-footer.html
  • theme-google-analytics.html
  1. You shall then recompile the assets.

If you want deeper customisations, you shall begin by looking at the lms/templates/main.html file.

Clone this wiki locally