Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how can i modify the small text in my shopping cart


shoron

Recommended Posts

Posted

hi,

 

dose anyone knows how to modify the text style and size for size description in shopping cart content.

for ex: under what's in your cart, you will have your product name listed, and below that you will have the size description, such as size 2, 4, 6, or 8. i am having trouble to find where to modify that size description. right now it's so small and hard to read.

i tried stylesheet and shopping cart, english.php, but so far no luck. if anyone knows how to change it, please let me know thank you.

Posted
hi,

 

dose anyone knows how to modify the text style and size for size description in shopping cart content.

for ex: under what's in your cart, you will have your product name listed, and below that you will have the size description, such as size 2, 4, 6, or 8. i am having trouble to find where to modify that size description. right now it's so small and hard to read.

i tried stylesheet and shopping cart, english.php, but so far no luck. if anyone knows how to change it, please let me know thank you.

 

I guess you're searching for this:

	  if (isset($products[$i]['attributes']) && is_array($products[$i]['attributes'])) {
	reset($products[$i]['attributes']);
	while (list($option, $value) = each($products[$i]['attributes'])) {
	  $products_name .= '<br><small>' . $products[$i][$option]['products_options_name'] . ': ' . $products[$i][$option]['products_options_values_name'] . '</small>';
	}
  }

 

in shopping_cart.php. Maybe you only have to delete "<small>"?

Posted
I guess you're searching for this:

	  if (isset($products[$i]['attributes']) && is_array($products[$i]['attributes'])) {
	reset($products[$i]['attributes']);
	while (list($option, $value) = each($products[$i]['attributes'])) {
	  $products_name .= '<br><small>' . $products[$i][$option]['products_options_name'] . ': ' . $products[$i][$option]['products_options_values_name'] . '</small>';
	}
  }

 

in shopping_cart.php. Maybe you only have to delete "<small>"?

 

 

 

 

hi,

thank you for your quick reply, i tried it, but it's not working...

i guess i have to keep digging, if you ever find the solution, please let me know.

many thanks!!!

Posted
hi,

thank you for your quick reply, i tried it, but it's not working...

i guess i have to keep digging, if you ever find the solution, please let me know.

many thanks!!!

 

I've also tried now. Are you sure you did it correct?

 

before

after

Posted
hi,

thank you for your quick reply, i tried it, but it's not working...

i guess i have to keep digging, if you ever find the solution, please let me know.

many thanks!!!

 

 

 

 

 

hi,

 

it's me again.

i am sorry, the way that you show me does work, i delete the wrong thing that is why i thought it's not working.

no it's great, thank you very much!!!

Archived

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

×
×
  • Create New...