OPen the style.css for your skin
then at the bottom add this code
CODE
.txtPriceDisplay
{
font-size: 16px;
}
you can set the size in px to what ya want/need...
then open your lang.inc.php
find this section
CODE
'product_info' => "Product Information",
'price' => "Price:",
'product_code' => "Product Code:",
this instance of price is the Price text that is displayed on the veiw product page
now change
CODE
'price' => "Price:",
to this
CODE
'price' => "<span class=\"txtPriceDisplay\">Price:</span>",
save both files and upoload to their proper places...

Kinetic