How to put a new header/logo

Moderator: crythias

Locked
rschirin
Znuny newbie
Posts: 35
Joined: 16 Apr 2012, 18:25
Znuny Version: 3.1.2

How to put a new header/logo

Post by rschirin »

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
crythias
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

Post by crythias »

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.
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
rschirin
Znuny newbie
Posts: 35
Joined: 16 Apr 2012, 18:25
Znuny Version: 3.1.2

Re: How to put a new header/logo

Post by rschirin »

can you be more specific?
OTRS 3.1.6 on ubuntu with MySQL
crythias
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

Post by crythias »

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
rschirin
Znuny newbie
Posts: 35
Joined: 16 Apr 2012, 18:25
Znuny Version: 3.1.2

Re: How to put a new header/logo

Post by rschirin »

I don't understand where it find the current header...
OTRS 3.1.6 on ubuntu with MySQL
crythias
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

Post by crythias »

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 -->
Type the word "header" in the SysConfig search
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
Locked