ok search its not working
and i left only 3 days for sucscription
can be this fixed
when i search its redirect me to home page
and how to add thumbnail view and test on slideshow
thanks
<input type="hidden" name="Itemid" value="0" />
<?php if($this->countModules('search')) : ?>
<div id="gk-search">
<jdoc:include type="modules" name="search" style="raw" />
</div>
<?php endif; ?>
<?php
// definitions of bg image connections
$bg_images = array(
// pairs - itemid -> bg image
"22" => "img1.png",
"25" => "img3.png",
"default" => "bg.png"
);
$itemID_value = JRequest::getCmd('Itemid');
$bg_image = '';
if(isset($bg_images[$itemID_value])){
$bg_image = $bg_images[$itemID_value]);
}else{
$bg_image = $bg_images["default"];
}
?>
<!--Width of template -->
<style type="text/css">
body#bd{
background:#ddd url('<?php echo $this->templateurl(); ?>/images/backgrounds/<?php echo $bg_image; ?>') no-repeat<?php echo ($this->_tpl->params->get('fixed_bg') == 1) ? ' fixed' : ''; ?> center 0!important;
}
.main {width: <?php echo $this->getParam('tmplWidth', 'auto', true); ?>;margin: 0 auto;}
</style>