Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Changing Text on Product Info Page?


hose30

Recommended Posts

Posted

Hi,

I have managed to more or less get my new store up and running but have a problem, I want all of the text on my product info page to be the same but some is in 'Times New Roman' and looks out of place, how can I can this? or can I change it at all?

As I said it is on all the product info pages...

Any Ideas...

Thanks very much in advance!

hose30

Posted

Yes that is one of the other problems I currently have...

 

I have edited all the possible times new roman texts....

 

Take a look at this image it may help me show you what I mean, Basically I would like to change the font of that text that is circled red OR if possible? Maybe put it in that blue box above it?

Thanks for all help, I know that this is the default template but if you give me rough idea then I should able to work it myself!

 

oscommercehelpti6.th.png

Posted

I think I am familiar with the problem you're experiencing. It's caused by the product_info.php that's included with the design template you've installed.

 

The solution is to add class="main" to the <td> that contains the product description and you've got to change it to <td class="main">.

 

My cart is heavily modified, but I've still got the original version of the template product_info.php and I found the problem <td> on line 92

 

You need to look for:

		<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <td>
<table class="productinfoBox" width="100%" align="center" cellspacing="0" cellpadding="2">
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><?php echo $products_name; ?></td>

And change it to (the change is in the first line only, the rest is there simply to help you locate the correct code):

		   <td class="main"><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <td>
<table class="productinfoBox" width="100%" align="center" cellspacing="0" cellpadding="2">
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><?php echo $products_name; ?></td>

 

Hope this helps,

Jade

Archived

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

×
×
  • Create New...