I'm trying to setup a skin for our Customer interface, running otrs 3.0.1. I created the directory /opt/otrs/var/httpd/htdocs/skins/Customer/ACCCustomer/css and created the file Core.Default.css. The contents of that file are:
#Header #Logo {
position: absolute;
top: 200px;
right: 25px;
width: 193px;
height: 40px;
background: transparent url(../img/ACCSmallLogo.png) no-repeat;
}
I then created ACCCustomerSkin.xml in /opt/otrs/Kernel/Config/Files which contains the following:
<?xml version="1.0" encoding="utf-8" ?>
<ConfigItem Name="Loader::Customer::Skin###100-ACCCustomer" Required="0" Valid="1">
<Description Translatable="1">Custom skin for ACC Customers.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<Hash>
<Item Key="InternalName">ACCCustomer</Item>
<Item Key="VisibleName">ACC Customer</Item>
<Item Key="Description">ACC Customer skin</Item>
<Item Key="HomePage">helpdesk.arapahoe.edu</Item>
</Hash>
</Setting>
</ConfigItem>
I then went to sysConfig and set Loader::Customer::SelectedSkin to ACCCustomer. After all of that it doesn't show my logo in the customer interface.
I'm sure I'm missing something simple (been staring at the screen for far too many hours setting all of this up). Thanks for any help.
- Jeremy