The product description is what you enter in the textbox when creating/editing a product. It is stored in the database, so you will never find it with the Developers Toolkit.
You could change the product description from
HTML Code:
<table width="50%" border="0" cellpadding="1" cellspacing="2">
<tr>
<td width="50%" align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Artist</td>
<td width="50%" align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Degas</td>
</tr>
<tr>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Item #</td>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">9542</td>
</tr>
<tr>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Image Size</td>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">27.5X27.75</td>
</tr>
<tr>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Poster Size</td>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">31.5X23.5</td>
</tr>
<tr>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Price</td>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">29.95</td>
</tr>
<tr>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Publication Type</td>
<td align="left" valign="top" style="background-color: #F3F3F3;" class="bodycopy">Distributed</td>
</tr>
</table>
<br>
<br>
<br>
<br>
Keywords: <span style="font-size:10px; color:#0000FF">Hills, Horse, Jockey, Plants, Animals</span>
to
HTML Code:
<table>
<tr>
<td>Artist</td>
<td>Degas</td>
</tr>
<tr>
<td>Item #</td>
<td>9542</td>
</tr>
<tr>
<td>Image Size</td>
<td>27.5X27.75</td>
</tr>
<tr>
<td>Poster Size</td>
<td>31.5X23.5</td>
</tr>
<tr>
<td>Price</td>
<td>29.95</td>
</tr>
<tr>
<td>Publication Type</td>
<td>Distributed</td>
</tr>
</table>
<br>
Keywords: <span>Hills, Horse, Jockey, Plants, Animals</span>
in conjunction with the stylesheet declarations
Code:
#productDescription table {
width: 50%;
text-align: left;
vertical-align: top;
background-color: #F3F3F3;
}
#productDescription td {
width: 50%;
padding: 2px;
}
#productDescription span {
margin-top: 6em;
font-size: 10px;
color: #0000FF;
}
and you would never need to enter the whole mass of code in descriptions again, which would also make it much easier to understand when looking at the raw text.