diff -r eb681a030699 -r 4ee15441f2eb doc/book/en/annexes/faq.rst --- a/doc/book/en/annexes/faq.rst Mon Jun 22 14:15:16 2015 +0200 +++ b/doc/book/en/annexes/faq.rst Mon Jun 22 14:27:37 2015 +0200 @@ -102,21 +102,17 @@ How to change the instance logo ? --------------------------------- -There are two ways of changing the logo. - -1. The easiest way to use a different logo is to replace the existing - ``logo.png`` in ``myapp/data`` by your prefered icon and refresh. - By default all instance will look for a ``logo.png`` to be - rendered in the logo section. +The logo is managed by css. You must provide a custom css that will contain +the code below: - .. image:: ../images/lax-book_06-main-template-logo_en.png +:: + + #logo { + background-image: url("logo.jpg"); + } -2. In your cube directory, you can specify which file to use for the logo. - This is configurable in ``mycube/uiprops.py``: :: - LOGO = data('mylogo.gif') - - ``mylogo.gif`` is in ``mycube/data`` directory. +``logo.jpg`` is in ``mycube/data`` directory. How to create an anonymous user ? ---------------------------------