ToddTheRod Posted October 21, 2008 Posted October 21, 2008 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:');
Guest Posted October 21, 2008 Posted October 21, 2008 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.
ToddTheRod Posted October 21, 2008 Author Posted October 21, 2008 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!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.