I just installed VirtueMart and I'm a total newbie. I enabled the VM - Search in Shop module for my new webstore, but it seems to be tied to the css for the search function that came with the template and is laying over the top of the other modules. Here is what it looks like in the left column:
http://www.pacificad.com/store
if I change the css it changes the size and position of both the search box for the store and the search box for the site in the top right corner. Not sure how I can fix this...
thanks,
Nick
Use Firebug (see here: http://getfirebug.com/ (http://getfirebug.com/) and play with the settings Firebug will display if you hover with your mousepointer over your search field. The position of your search field is controlled by the following lines in your template.css (starts at line 746):
.search {
background: none repeat scroll 0 0 #b9298b;
border: 1px solid #D7D9DA;
height: 26px;
padding: 0;
position: absolute;
right: 0;
top: 85px;
width: 228px;
z-index: 5000;