How to put a new header/logo
Moderator: crythias
How to put a new header/logo
I readed some tricks about the subject but nothing that can do what I want. I want to change not only the logo into customer page but the whole header. is it possibile? if I want a result like that http://doc.otrs.org/3.1/en/html/public-interface.html is there a way?
OTRS 3.1.6 on ubuntu with MySQL
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to put a new header/logo
edit Kernel/Output/HTML/Standard or your theme (recommended)/CustomerHeader.dtl
Note that if you edit within Standard and upgrade, it will overwrite your changes.
Note that if you edit within Standard and upgrade, it will overwrite your changes.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to put a new header/logo
How detailed do you need? Do you know HTML?
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: How to put a new header/logo
I don't understand where it find the current header...
OTRS 3.1.6 on ubuntu with MySQL
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to put a new header/logo
Code: Select all
<!-- dtl:block:HeaderLogoCSS -->
<style type="text/css">
#Header #Logo {
background-image: $QData{"URL"};
top: $QData{"StyleTop"};
right: $QData{"StyleRight"};
width: $QData{"StyleWidth"};
height: $QData{"StyleHeight"};
}
</style>
<!-- dtl:block:HeaderLogoCSS -->
Find the entry related to the customer.
Frontend::Customer? Yes, that makes sense.
CustomerLogo seems reasonable.
some sort of skins folder.
There's a skins folder in var/httpd/htdocs/ ...
put a logo in some path there.
Adjust the SysConfig.
save.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask