Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

shopping_cart.php


Guest

Recommended Posts

Posted

How do I make the total cost of product [the font] per line larger?

Posted

You'll need to modify your stylesheet.css

 

Though the class assigned to your price font may be used for other fonts as well - so you may need to define a new class and set that.

 

My css files are heavily modified so I'm not sure if this is stock or not.

 

Inside the smy tylesheet.css I have

 

H2 {

font : normal 17px Georgia, "Times New Roman", Times, serif;

color : #606c45;

border-bottom-width : 1px;

border-bottom-style : dotted;

border-top-color : #e2d9ba;

border-right-color : #e2d9ba;

border-bottom-color : #e2d9ba;

border-left-color : #e2d9ba;

text-indent : 2pt;

}

 

Your can see the size and style by looking at my site.

 

 

My prices are inside <H2> tags.

 

You can edit this by looking in /catalog/products_info.php

 

find the line that looks somewhat like this

 

<td class="pageHeading" valign="top"><h2><BR><?php echo $products_price; ?></h2></td>

 

 

(Mainly your looking for <?php echo $products_price; ?> )

 

You can either reassign the values by hard coding them right there in that file, or making changes in stylesheet.css and assigning a new class to the product_info.php file

My Contributions

 

Henry Smith

Posted

Thank you for responding, but like my topic states, I am looking to make the price font larger in the shopping_cart.php, not the product_info.php page. I guess it's the same process, I'll see if I can figure it out.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...