Oh, now I see why

.
There was a little bug in this template version. You need to edit 2 files:
1. /templates/gk_bikestore/layouts/default.php
copy and remove line around 16 row:
- Code: Select all
$this->layout->generateLayout();
2. /templates/gk_bikestore/layouts/blocks/head.php
add copied line into line number 71, so it looks like this:
- Code: Select all
$font_iter++;
}
// add responsive stylesheets
$this->generateLayout();
// include JavaScript
$this->API->addJSFragment("\n".' $GKMenu = { height:'.($this->API->get('menu_height','0') == 1 ? 'true' : 'false') .', width:'.($this->API->get('menu_width','0') == 1 ? 'true' : 'false') .', duration: '.($this->API->get('menu_duration', '500')).' };');
Now, if problem still remains, please write back and I'll check the files again.