Quote:
Originally Posted by TimberFloorAu
Installed : Works great
Can we please add a shadow to the search results popup window. ?
Added:
#lsa_window {
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
width: {vb:raw vboptions.lsa_width}px;
}
to lsa_css.css made no difference. Any suggestions
|
I did it this way...
In the "product-livesearch4_eng.xml" file, find
Code:
#lsform .blockbody.formcontrols {
border: none;
}
Under that, place this
Code:
#lsa_cont {
z-index: 100;
-moz-box-shadow: 5px 5px 6px 8px rgba(0, 0, 0, 0.45);
-webkit-box-shadow: 5px 5px 6px 8px rgba(0, 0, 0, 0.45);
box-shadow: 5px 5px 6px 8px rgba(0, 0, 0, 0.45);
}
Import the product again making sure to allow overwriting.
This will fix the z-index problem (As posted previously) and create a transparent shadow under the box.