> You have a huge number of syntax errors: > Nested tables and presentational markup. Argh. Use CSS for presentation.
Hi, Just to follow up here are a couple of quick tips for you. You can achieve your layout without the need for tables. CSS based layout is easier to maintain and lighter on code. Secondly you have got both javascript and CSS in the head of you document. A more maintainable option is to put these in external files and call them in: <style type="text/css" media="screen">@import "/css/yourcss.css";</style> <script type="text/javascript" src="/js/yourjavascript.js"></script> Finally in your markup you've got lots of inline styles. If you are using css there is no need to do this <td colspan="2" bgcolor="#33FFCC" align="center" valign="center" class="ProdName"> You could use the class ProdName to style this from the CSS file rather than on the page. As for the show hide there is a nice unobtrusive show/hide here: http://lab.victoriac.net/showhide/index.html Good luck George Shape Shed | www.shapeshed.com ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
