Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Changing colors on the Hello Guest and What new Here logo


dmitryinc

Recommended Posts

Hello I have a general question

 

whats the simplest way to change the color of the "whats new here" and welcome "guest" logo on the oscommerce , thanks for any help. Can you give me step by step because I am new to this

 

 

To change the "what's new here"

 

in file "includes/language/english/index.php" file

replace

define('HEADING_TITLE', 'What\'s New Here?');

 

with

define('HEADING_TITLE', '<font color="red">What\'s New Here?</font>');

 

 

and to replace the color of guest"

 

in file includes/language/english.php file

define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s"><u>log yourself in</u></a>? Or would you prefer to <a href="%s"><u>create an account</u></a>?');

 

either change the class class="greetUser" ...font color or

replace the above code with

 

define('TEXT_GREETING_GUEST', 'Welcome <font color="blue">Guest!</font> Would you like to <a href="%s"><u>log yourself in</u></a>? Or would you prefer to <a href="%s"><u>create an account</u></a>?');

 

This i sthe simplast way to do this.

Hard Work Is The Simplest Way Of Success

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...