> My page: http://www.homedesigntrends.com/contact.php > My CSS: http://www.homedesigntrends.com/contact.css >
One major problem, which is going to give undefined behaviour, is that your submit button is inside a link: <a href="contact.php"><button type="submit" name="submit" class="search">Submit</button></a> Just a theory (I don't have a web server handy to test on), but I'd imagine that Firefox is following the link and thus discarding the form submission, while IE is doing it the other way around. Take the link out and it should start working in Firefox. regards, Nick. -- Nick Fitzsimons http://www.nickfitz.co.uk/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
