I am trying to make my first Agent skin for OTRS 4.0.10.
From reading the documentation (http://otrs.github.io/doc/manual/develo ... id-1.3.5.4)
it seems all I need to do is create a copy of: "[OTRS-root]/var/httpd/htdocs/skins/Agent/default" to a new folder, "[OTRS-root]/var/httpd/htdocs/skins/Agent/myskin"
and customize it to my liking, (rip out all the orange... ewww... and add my logo)

then make a xml config file in [OTRS-root]/Kernel/Config/Files/myskin.xml to make OTRS see the theme:
myskin.xml
Code: Select all
<?xml version="1.0" encoding="utf-8" ?>
<otrs_config version="1.0" init="Framework">
<ConfigItem Name="AgentLogo" Required="0" Valid="1">
<Description Translatable="1">The logo shown in the header of the agent interface. The URL to the image must be a relative URL to the skin image directory.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Hash>
<Item Key="URL">skins/Agent/myskin/img/mylogo.png</Item>
<Item Key="StyleTop">13px</Item>
<Item Key="StyleRight">75px</Item>
<Item Key="StyleHeight">67px</Item>
<Item Key="StyleWidth">244px</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Loader::Agent::Skin###100-myskin" Required="0" Valid="1">
<Description Translatable="1">Custom skin for some epic people.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Hash>
<Item Key="InternalName">myskin</Item>
<Item Key="VisibleName">myskin</Item>
<Item Key="Description">Stupid skin that doesn't work!</Item>
<Item Key="HomePage">www.nooooooooooooooo.com/</Item>
</Hash>
</Setting>
</ConfigItem>
</otrs_config>
Did I miss something?

Thanks!
PS this is my first post, but I have been a long time lurker... Thank you for all your helpful posts!
