The plugin does work for me, however I'm unable to change the width.
By default the width is 100% :
<?php livesearchpopup_resultsbox("100%") ?>
But no matter what I do to this (i.e. "150px" or "20%"), it's always visible at 100% in the theme.
The plugin does work for me, however I'm unable to change the width.
By default the width is 100% :
<?php livesearchpopup_resultsbox("100%") ?>
But no matter what I do to this (i.e. "150px" or "20%"), it's always visible at 100% in the theme.
Yes, more customization should be included.
yea i agree, it didnt work for me either
Here is how to fix that. It appears that the function is not recognizing the size that is indicated in the quotes. I almost decided not to use the plugin because it looked too messy but this change I made to my own site works perfectly.
<?php livesearchpopup_resultsbox("100%") ?>
Edit the file wp-content/plugins/live-search-popup/css/live_search.css and look for the following lines of css:
#livesearchpopup_box {
color: #f0f0f0;
background: #0255cd url(../resultgradient.png) 0 0px repeat-x;
right: 0em;
text-align: left;
padding: 1px;
margin: 0px;
position: absolute;
width: 100%;
filter:alpha(opacity=95);
-moz-opacity:.95;
opacity:.95;
z-index:100;
}
Change the width to whatever you want
width: 50%;
Change the margin to whatever you want in pixel measurement so its not pushed up right against the edge of your site.
margin: 10px;
hope that helps.
This topic has been closed to new replies.