
Make It Disappear
<style type="text/css">
.description { display: none; }
</style>

Borders
To put a border around the description:
<style type="text/css">
.description { border: 1px solid red; }
</style>
[ More Border Styles ]

Background
To set a background color:
<style type="text/css">
.description { background: red; }
</style>
Or a background image:
<style type="text/css">
.description { background: url('http://www.PATH TO YOUR IMAGE.gif'); }
</style>
More on
[ Backgrounds ]

Styling Text
<style type="text/css">
.description {
color: red;
font-family: "Times New Roman", Times, serif;
text-decoration: none;
}
</style>
More
[ Text Styles ]

The Icon
If you have an icon, this appears in your description table too. You can hide this icon:
<style type="text/css">
.description img { display: none; }
</style>
Or change the look of it, for instance by applying borders, filters or resizing it:
<style type="text/css">
.description img {
border: 1px solid red;
filter: xray;
width: 50px;
height: 50px;
}
</style>
More
[ Border Styles ]
[ Image Filters ]