Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding Text


ToddTheRod

Recommended Posts

Posted

Does anyone know how to just add a block of text to a page like lets say the Contact Us page?

 

What code needs to be added and where?

 

define('HEADING_TITLE', 'Contact Us');

define('NAVBAR_TITLE', 'Contact Us');

 

--> in here?

 

define('TEXT_SUCCESS', 'Your enquiry has been successfully sent to the Store Owner.');

define('EMAIL_SUBJECT', 'Enquiry from ' . STORE_NAME);

 

define('ENTRY_NAME', 'Full Name:');

define('ENTRY_EMAIL', 'E-Mail Address:');

define('ENTRY_ENQUIRY', 'Enquiry:');

Posted

Manipulate the Heading Title like this, for example:

 

define('HEADING_TITLE', 'Contact Us<br>
<font size="2" face="arial" color="000000">You will receive a reply within 24 hours.</font>');
define('NAVBAR_TITLE', 'Contact Us');

 

You can do anything you want between that opening apostrophe before the words Contact Us and the closing ');

 

The HTML I used will override your default stylesheet settings for the Heading Title. If you don't do that, all of the text you insert will be the the same size, color, etc. per your stylesheet definitions for the headings.

Posted
Manipulate the Heading Title like this, for example:

 

define('HEADING_TITLE', 'Contact Us<br>
<font size="2" face="arial" color="000000">You will receive a reply within 24 hours.</font>');
define('NAVBAR_TITLE', 'Contact Us');

 

You can do anything you want between that opening apostrophe before the words Contact Us and the closing ');

 

The HTML I used will override your default stylesheet settings for the Heading Title. If you don't do that, all of the text you insert will be the the same size, color, etc. per your stylesheet definitions for the headings.

 

Nice! Thank you very much!

Archived

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

×
×
  • Create New...