How do I remove box shadowing around the table on all pages of my site. See link and notice the gray box/border around the whole table I would like to remove the gray and replace with a simple red line like each of the cells.
Hi there The table is defined like this in the HTML... <table style="width: 90%" border="2" align="center"> If you change that to this... <table style="width: 90%;border:1px solid rgb(204, 0, 0)" align="center"> ...then that should do the trick.