Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi,
I am trying to change the skin to ‘navy’, but whenever I edit the following:
skins: { sidebarMenu : ’’, horizontalMenu : ’’, userInfoNavbar : ’’ },
to ‘navy’ or ‘Navy’. nothing changes.
I also add this code in my controller.js (below $layout.loadOptionsFromCookies()), but nothing changes.
$layout.setOptions('skins.sidebarMenu', 'navy'); $layout.setOptions('skins.horizontalMenu', 'navy'); $layout.setOptions('skins.userInfoNavbar', 'navy');Can you help?
Thanks
Hi hanns08,
If skin changing is not working that way, you can apply it directly to body with this code:
function setNavySkin() { $( 'body' ).addClass( 'skin-navy horizontal-menu-skin-navy user-info-navbar-skin-navy' ); }This is equivalent to your previous code in your reply.Hi Arlind,
I am newbie in here. Where I could put this code ?
function setNavySkin() { $( 'body' ).addClass( 'skin-navy horizontal-menu-skin-navy user-info-navbar-skin-navy' ); }You can place this code in your file that you are doing your customization, or even add it in angular files defined by Xenon xenon-custom.js
Then you can access this function from Angular controllers or anywhere else.