Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how do I change these things?


Relay

Recommended Posts

the last query is found in catalog/includes/languages/english.php

 

you need the following lines anywhere in there

 

 

// checkout procedure text

define('CHECKOUT_BAR_DELIVERY', 'Delivery Information');

define('CHECKOUT_BAR_PAYMENT', 'Payment Information');

define('CHECKOUT_BAR_CONFIRMATION', 'Confirmation');

define('CHECKOUT_BAR_FINISHED', 'Finished!');

Reddy to Rumble

 

Thank you osCommerce and all who Contribute to her!

Link to comment
Share on other sites

Also to make all the info box titles align left then in the catalog/includes/boxes/ folder open the necessary info box file and find the following line;

 

  $info_box_contents[] = array('align' => 'left',

 

make sure 'left' is in the align part.

Reddy to Rumble

 

Thank you osCommerce and all who Contribute to her!

Link to comment
Share on other sites

// checkout procedure text 

define('CHECKOUT_BAR_DELIVERY', 'Delivery Information'); 

define('CHECKOUT_BAR_PAYMENT', 'Payment Information'); 

define('CHECKOUT_BAR_CONFIRMATION', 'Confirmation'); 

define('CHECKOUT_BAR_FINISHED', 'Finished!');

 

this worked just as it should :D

 

but I had a look at my code and the

$info_box_contents[] = array('align' => 'left',

part was already set to left and its still not left? any other ideas?

Glen Young

Link to comment
Share on other sites

Hi,

 

Did u check all the info boxes? Compare you 'Feature Products' info box with all the others because that seems to be ok! That would be a good start.

 

Next check your stylesheet.css file for the InfoBoxHeading setting to see if it has an align bit eg.

 

TD.infoBoxHeading {

 font-family: Verdana, Arial, sans-serif;

 font-size: 11px;

 text-align: left;

 font-weight: bold;

 background: transparent;

 color: #FF9900;

}

 

This is my one!

Reddy to Rumble

 

Thank you osCommerce and all who Contribute to her!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...