If you have made any modifications to the look of your site, you had to have edited the stylesheet. Get used to it - it will become your best friend.
Changing your description entry to this:
HTML Code:
<br />
<div class="comicStats">Condition: <span class="comicStatsValue" >VG</span><br />
Title: <span class="comicStatsValue" >TEST ITEM</span><br />
Volume: <span class="comicStatsValue" >Vol. 100</span><br />
Series #: <span class="comicStatsValue" ># 999</span><br />
Date: <span class="comicStatsValue" >Apr. 05 2007 11:08pm </span><br />
Publisher: <span class="comicStatsValue" >Me</span><br />
Cover Price: <span class="comicStatsValue" >$1,000,000.00</span><br />
NOTES: <span class="comicStatsValue" >TEST TEST TEST</span><br /></div>
will make it easier to read and find the spots to add your text.
Add this to your /includes/templates/your_template/css/stylesheet.css:
HTML Code:
.comicStats {
margin-top: 3em; /* change as desired */
text-align: left;
font-family: arial;
font-size: 1.2em; /* change as desired */
color: #000000;
}
.comicStatsValue {
font-weight: bold;
color: #0000ff;
}
For .comicStatsValue, you only need to specify the properties that differ; the rest are inherited from the parent (.comicStats).
The margin-top adds space above the whole stats section.