What is causing the dollar sign to not line up with the field? I suspect it is the size of the input field, but here is what I have:
I suspect it is in this coding somewhere (copied below)?
.mytable table {
/* formatting for the table */
}
table {
border-width: 1px;
border-spacing: 0px;
border-style: groove;
border-color: gray;
border-collapse: separate;
background-color: rgb(255, 255, 240);
}
.mytable table th {
/* formatting for table header elements */
}
table th {
border-width: 1px;
padding: 0px;
border-style: inset;
border-color: gray;
background-color: rgb(255, 255, 240);
-moz-border-radius: ;
}
.mytable table td {
/* formatting for table cells */
}
table td {
border-width: 1px;
padding: 3px;
border-style: inset;
border-color: gray;
background-color: rgb(255, 255, 240);
}