Difference between revisions of "Koha:Customization"

From TSAS Library
Jump to: navigation, search
Line 1: Line 1:
==Favicon==
==Favicon==
* Create 16x16 or 32x32 .png, upload<ref>May need to upload to directory with permissions, then <code>sudo mv file.png /usr/share/koha/opac/htdocs</code>. Change permissions with <code>sudo chown root image.png</code> to <code>/usr/share/koha/opac/htdocs</code>.
* Create 16x16 or 32x32 .png, upload<ref>May need to upload to directory with permissions, then <code>sudo mv file.png /usr/share/koha/opac/htdocs</code></ref>. Change permissions with <code>sudo chown root image.png</code> to <code>/usr/share/koha/opac/htdocs</code>.
* OPAC and staff interface are at <code>/htdocs</code>, so the URL in the "favicon" Administration Preferences in Koha should be <code><nowiki>http://sitename.com/image.png</nowiki></code>
* OPAC and staff interface are at <code>/htdocs</code>, so the URL in the "favicon" Administration Preferences in Koha should be <code><nowiki>http://sitename.com/image.png</nowiki></code>


Line 11: Line 11:
#login h1 {
#login h1 {
background:url("http://www.domain.com/link/to/logo.png") no-repeat scroll center top transparent;
background:url("http://www.domain.com/link/to/logo.png") no-repeat scroll center top transparent;
}</code> <ref>https://www.myacpl.org/koha/customizing-the-staff-client-login-logo/ </ref>
}</code><ref>https://www.myacpl.org/koha/customizing-the-staff-client-login-logo/</ref>
<references />
<references />
[[Category:Koha]]
[[Category:Koha]]

Revision as of 11:47, 28 August 2016

Favicon

  • Create 16x16 or 32x32 .png, upload[1]. Change permissions with sudo chown root image.png to /usr/share/koha/opac/htdocs.
  • OPAC and staff interface are at /htdocs, so the URL in the "favicon" Administration Preferences in Koha should be http://sitename.com/image.png

Staff Client Login

  • Under "IntranetUserCSS" in Administration Preferences in Koha, add the following:

#login h1 a { height:71px; }

  1. login h1 {

background:url("http://www.domain.com/link/to/logo.png") no-repeat scroll center top transparent; }[2]

  1. May need to upload to directory with permissions, then sudo mv file.png /usr/share/koha/opac/htdocs
  2. https://www.myacpl.org/koha/customizing-the-staff-client-login-logo/