Jump to content

Quick search block module - not displaying correctly


Recommended Posts

http://www.pcperform...co.uk/index.php

 

On the page we are currently developing above the quick search bar module does not appear to display correctly. The search box is supposed to appear to the right of the search box, however it seems to of moved below and fallen below the navigation bar. I have searched a few similar problems others have found but have found no solution.

 

Any help would be most appreciated.

Link to comment
Share on other sites

he search box is supposed to appear to the right of the search box

where exactly? have you got any visualization where it should appear?

i think that it is simple css issue

 

you can change position of the search block in:

#search_block_top {
background: url("../../../img/search_bg.gif") no-repeat scroll 0 0 transparent;
height: 41px;
right: 0;
position: absolute;
top: 94px;
width: 320px;
}

by increase / decrease value of the top and heigt params

 

this is a part of file:http://www.pcperformance.co.uk/themes/PRS040090/css/modules/blocksearch/blocksearch.css

Link to comment
Share on other sites

everything is clear for me now, here is the solution:

 

add these params:

top: 1px;
right: 5px;
position: absolute;

 

to the:

#search_block_top .button {
background: url("../../../img/go_btn.gif") no-repeat scroll 0 0 transparent;
height: 30px;
margin: 5px 0 0;
padding: 0;
width: 66px;
text-indent: -9999px;
display: inline;
top: 1px;
right: 5px;
position: absolute;
}

this is a part of the file: http://www.pcperformance.co.uk/themes/PRS040090/css/modules/blocksearch/blocksearch.css

near line 27

Link to comment
Share on other sites

×
×
  • Create New...