From Version 2.2.1.0 of KonaKart it is possible to change the "skin" of the KonaKart application.
The style sheets for the KonaKart application are in the konakart/styles directory. stylesheet.css is used by the "old style" JSPs which are in the WEB-INF/jsp_osc directory. Note that if you want to continue using these JSPs, then you must copy them to the WEB-INF/jsp directory after deleting the contents of this directory.
The "new style" JSPs are in the WEB-INF/jsp directory and they use the stylesheet called skin_style.css . This style sheet contains information that is common to all skins that we ship. The unique information for each skin is in a separate style sheet called tile1.css , tile2.css etc. which is imported by skin_style.css . In order to change the skin, you must edit skin_style.css to import a different skin. For example you could change :
@import 'tile3.css'; to @import 'tile4.css';