How to add banner on koha opac header
You can create a banner for Koha OPAC easily with the help of an online service, http://www.bannerfans.com/banner_maker.php
How to add banner?
Put the image in /usr/share/koha/opac/htdocs
Apply following commands in a terminal
sudo su mv header.jpg /usr/share/koha/opac/htdocs
mv header.jpg /usr/share/koha/opac/htdocs/opac-tmpl/bootstrap/images
Get the link of the image.
Open Koha and go to System Preferences > OPAC > opacheader
Apply the HTML code to display header image,
<img src="header.jpg" style="width:100%;height:100%;">
<img src="/opac-tmpl/bootstrap/images/header.jpg"style="width:100%;height:100%;">
Save the changes.
Show your Opac ...