Hello euroclean!
I think you made a rule css for the “Seach” box incorrect, beacause i have changed the seach box displaying same as your snapshot, it’s work well. If you can give me the link, i’ll fix this problem.
Or you can use my solution to resolve it:
1) open the file: templatesja_selenilayoutsblocksheader.php and remove this block code:
[PHP]
<?php if($this->countModules(‘search’)) : ?>
<div id=”ja-search”>
<jdoc:include type=”modules” name=”searchs” />
</div>
<?php endif; ?>
[/PHP]
2) open the file: templatesja_selenilayoutsblockstopsl.php and find a section code at line: 4:
[PHP]
<div class=”inner clearfix”>
<strong><?php echo JText::_(‘YOU ARE HERE’)?> </strong><jdoc:include type=”module” name=”breadcrumbs” />
</div>
[/PHP]
and replace:
[PHP]
<div class=”inner clearfix”>
<strong><?php echo JText::_(‘YOU ARE HERE’)?> </strong><jdoc:include type=”modules” name=”breadcrumbs” />
<?php if($this->countModules(‘search’)) : ?>
<div id=”ja-search”>
<jdoc:include type=”modules” name=”search” />
</div>
<?php endif; ?>
</div>
[/PHP]
and then open the file: [PHP]templatesja_selenicsstemplate.css[/PHP] and find a section code:
#ja-search {
position: absolute;
bottom: 35px;
right: 10px;
}
replace:
#ja-search {
position: absolute;
bottom: 3px;
right: 10px;
}
good luck