Hi
Yes, you are right. There a small bug on style switcher.
Here's the fix for it.
Open ../templates/gk_corporate/lib/php/gk_head.php
Find this code:
- Code: Select all
<link href="<?php echo $template_baseurl; ?>/css/style<?php echo (isset($_COOKIE['gk25_style']) ? $_COOKIE['gk25_style'] : 1); ?>.css" rel="stylesheet" media="all" type="text/css" />
Replace it with:
- Code: Select all
<link href="<?php echo $template_baseurl; ?>/css/style<?php echo (isset($_COOKIE['gk25_style']) ? $_COOKIE['gk25_style'] : $template_color); ?>.css" rel="stylesheet" media="all" type="text/css" />
Or download the respective file attach.
This fix will be updated on template ASAP.
Cheers