Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Editing Categories box


gomikeyp

Recommended Posts

Posted

How do I get rid of the -> after each categories name and make the font bigger?

 

I got rid of the count number from the admin section btw.

 

Can't seem to find it on stylesheet or on the columnleft.php or categories.php

 

Please help...

 

Thanks

Posted

Look for the following line in includes/boxes/categories.php

 

$categories_string .= '->';

 

This is what's adding the -> to the categories string.

Posted

Thanks for the input. worked great...

 

Now, how do I modify the font size only for the categories box? Thanks in advance...

Posted

add something like the following right before the text that you want to change.

 

$categories_string .= '<font size=\"4\">';

 

Then after the text that you want to affect, make sure to close the font tag

 

$categories_string .= '</font>';

 

The ".=" operator means to "append to the variable $categories_string"

Archived

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

×
×
  • Create New...