diff --git a/lam/docs/manual-sources/howto.xml b/lam/docs/manual-sources/howto.xml index 0bef2149..b28ed3f8 100644 --- a/lam/docs/manual-sources/howto.xml +++ b/lam/docs/manual-sources/howto.xml @@ -5710,7 +5710,7 @@ Run slapindex to rebuild the index.
Edit your new profile -
+
Basic settings On top of the page you see the link to the user login page. Copy @@ -8044,6 +8044,76 @@ Run slapindex to rebuild the index.
+ + Adapt LAM to your corporate design + + There are cases where you might want to change LAM's default + look'n'feel to better integrate it in your company network. Changes can be + done like this: + + Change colors, fonts and other parts with + custom CSS + + You can integrate custom CSS files in LAM. It is recommended to + write a separate CSS file instead of modifying LAM's default files. + + The CSS files are located in + + DEB/RPM: /usr/share/ldap-account-manager/style + tar.bz2: style + + + LAM will automatically integrate all CSS files in alphabetical + order. E.g. you can create a file called "900_myCompany.css" which will be + added as last file. + + Example: + + This will change the background color of all pages to turquoise. See + 500_layout.css for LAM's default settings. + + body { + background-color: #b6eeff; +} + + + You can use the same way to change fonts, sizes and more. + + Custom logo and other images + + All images are located in + + DEB/RPM: /usr/share/ldap-account-manager/graphics + tar.bz2: graphics + + Please note that if you replace images then you need to reapply your + changes every time you upgrade LAM. + + Special changes with custom + JavaScript + + In rare cases it might not be sufficient to write custom CSS or + replace some image files. E.g. you might want to add custom content to all + pages. + + For these cases you can add a custom JavaScript file that contains + your code. + + The JavaScript files are located in + + DEB/RPM: /usr/share/ldap-account-manager/templates/lib + tar.bz2: templates/lib + + LAM will automatically integrate all .js files in alphabetical + order. E.g. you can create a file called "900_myCompany.js" which will be + added as last file. + + Self service + + See here for self + service customisations. + + Clustering LAM