Jump to content

Price Font Size


Guest cntgifts

Recommended Posts

OPen the style.css for your skin

then at the bottom add this 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
'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 
'price' => "Price:",


to this
'price' => "<span class=\"txtPriceDisplay\">Price:</span>",

save both files and upoload to their proper places...

:whistle: Kinetic :P

Link to comment
Share on other sites

now once ya got the word Price big and bad and ya want the actual PRice or sale price old price to be big and bad open your skins style.css and find

the txtOldPrice and txtSale styles and add

font-size: 16px; to each


like mine here


.txtOldPrice {

	text-decoration: line-through;

	font-size: 16px;

}

.txtSale {

  color: #FF0000;

	font-size: 16px;

	font-weight: bold;

}

Link to comment
Share on other sites

open your SKINS style.css and add a new style at the end of the file

.txtProdPrice{ font-size: 16px;}




then open includes/content/viewProd.php

find this line 
$view_prod->assign("TXT_PRICE",priceFormat($prodArray[0]['price']));


and replace it with


$view_prod->assign("TXT_PRICE","<span class='txtProdPrice'>".priceFormat($prodArray[0]['price'])."</span>");

save and upload both files

let me know if this works for ya

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...