-
☆ A M B ☆
- 24,524 Posts
There’s supposed to be a "close" button in there somewhere.
Ok. So where is it hiding?
-
☆ A M B ☆
- 24,524 Posts
The javascript loads it (it presumes your form is named ajaxSearch_form)
var c = new Element('img'); //Close Image
c.setProperties({
src: _base + 'images/cross.png',
alt: 'close search',
id: 'searchClose'
});
c.addEvent('click', function(){closeSearch();});
toggleImage(c);
asf.appendChild(c);
-
☆ A M B ☆
- 24,524 Posts
Looking at Firebug, it’s there, along with the "loading" image, immediately following the closing </fieldset> and before the closing </form> tag of the form. Probably a CSS issue keeping it from being displayed.
Yep. Found it. It was a CSS issue.
I’m wondering. It seems to show up next to the submit button. Is it possible to move it to the results popup?
-
☆ A M B ☆
- 24,524 Posts
I don’t see how, at least not without hacking the javascript. You might be able to position it absolutely with CSS though.