http://rooms4functions.co.uk/Function Rooms/index.php If you just click search it displays results in ff but not ie, any suggestions? The same on the search page Cheers Tony
I might not remember correctly.. but I think the fix is using an input of type "submit" instead of "image" (you can style it to look just the way it does now).. I recall having had the same problem recently.
could you explain that a little more for me? I can do a lot of html but forms im not too good with. Actually i have just checked it with the admin section and what your saying would seem to make sense, as that doesnt work in ie either. Thanks for helping me (fingers crossed) have found the problem. Could anyone help me with a way of doing it correctly but preferably keeping the same design?
change this <input type="image" src="images/search.png" alt="Search" id="search" name="search" value="Search" /> HTML: to this <input type="submit" src="images/search.png" alt="Search" id="search" name="search" value="Search" /> HTML: see if it works. It might not look exactly the same as before, so you might need to change your CSS afterwards for #search.
As I said, you can style it to look just the same as before, this should give you a start: #search { width: <image width>px; height:<image height>px; background:url('<image url>') left top no-repeat; border:none; cursor:pointer; } Code (markup):