ich habe mal versucht nach der Developer Anleitung ein eigenen Agent-Skin anzulegen (http://doc.otrs.org/developer/3.0/de/ht ... html#skins, leider wird aber das OTRS-Logo dennoch nicht gegen das des neuen Skins ausgetauscht.
Der Skin ist dem System bekannt und auch als Default eingetragen.
Core.Header.css:
Code: Select all
#Logo {
background: url(../img/custom_logo_black.png) no-repeat;
height: 67px; /* specify height and width to match your logo's dimensions */
width: 137px;
/* optional: specify "top" and "right" to reposition the logo on the screen */
}
Code: Select all
<?xml version="1.0" encoding="utf-8" ?>
<otrs_config version="1.0" init="Framework">
<ConfigItem Name="Loader::Agent::Skin###100-custom" Required="0" Valid="1">
<Description Translatable="1">Custom Skin</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Hash>
<Item Key="InternalName">custom</Item>
<Item Key="VisibleName">Custom</Item>
<Item Key="Description">Custom Skin</Item>
<Item Key="HomePage">www.irgendeineurl.com</Item>
</Hash>
</Setting>
</ConfigItem>
</otrs_config>
Und nebenbei: Welche Unterschiede gibt es eigentlich zwischen Skins und Themes? Bzw. wo setzt man was davon ein?