Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Welcome Guest!...enlarge the text


ChrisJChrisJ

Recommended Posts

Posted

How/where can I enlarge the following text line, on the main index page?

 

"Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?"

 

Can you also tell me the code to do this? Thanks.

Posted
How/where can I enlarge the following text line, on the main index page?

 

"Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?"

 

Can you also tell me the code to do this? Thanks.

 

Hi Chris,

One way to do this is as follows :

 

In catalog/stylesheet.css, create an entry based on td.main

i.e.

 

TD.larger_main, P.larger_main {

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

font-size: 12px;

line-height: 1.5;

}

 

Then, in catalog/index.php, search for the following line :

<td class="main"><?php echo tep_customer_greeting(); ?></td>

 

and change the main to larger_main.

 

If 12 isn't large enough, change to 13 etc......

 

Best regards

Dave

Posted
Hi Chris,

One way to do this is as follows :

 

In catalog/stylesheet.css, create an entry based on td.main

i.e.

 

TD.larger_main, P.larger_main {

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

  font-size: 12px;

  line-height: 1.5;

}

 

Then, in catalog/index.php, search for the following line :

<td class="main"><?php echo tep_customer_greeting(); ?></td>

 

and change the main to larger_main.

 

If 12 isn't large enough, change to 13 etc......

 

Best regards

Dave

 

Thanks for your reply and assistance.

Archived

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

×
×
  • Create New...