I would like to change the colors of the background of this form so that it displays properly.
http://pearsoncommunications.com/node/237

As you can see, it has gray grid lines & a white background.

attached is the code that I pasted in to the content area for the form.

CommentFileSizeAuthor
#1 form.txt85.31 KBlloydpearsoniv
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

lloydpearsoniv’s picture

FileSize
85.31 KB
webmatter’s picture

Hi, sorry for the late reply ..
The grey grid lines are defined in your styles css as follows
table th, table td {
border: 1px solid #869497;
padding: 4px 7px;
vertical-align: middle;
}

so they define ALL tables not just the one in your form and the declaration
is most likely needed for other tables

To change it in the specific form you could use the body class by adding
body.page-node-237 table th,
body.page-node-237 table td { border: 0 none; }

Then the border will dissapear in this specific node.
Hope this helps ..