Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Currencies border


CCBJ

Recommended Posts

Posted

How can I get rid of the blue/gray currencies-box borderline .

 

I managed to change the box background color in catalog/includes/boxes/currencies.php

'text' => tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit(); " style="width: 100% ; "') . $hidden_get_variables . tep_hide_session_id());

->

'text' => tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit(); " style="width: 100% ; background-color : #000000 ; "') . $hidden_get_variables . tep_hide_session_id());

 

But the borderline seems beyond reach. Any suggestion please ?

Posted

That is not a border but infact a nested box it is in your style sheet,

 

.infoBox {

background: #b6b7cb;

 

but changing your infoBox background will change them in all your info box's unless you create a class and seperate that one box from the rest.

 

Hope that does it for you.

 

How can I get rid of the blue/gray currencies-box borderline .

 

I managed to change the box background color in catalog/includes/boxes/currencies.php

'text' => tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit(); " style="width: 100% ; "') . $hidden_get_variables . tep_hide_session_id());

->

'text' => tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit(); " style="width: 100% ; background-color : #000000 ; "') . $hidden_get_variables . tep_hide_session_id());

 

But the borderline seems beyond reach. Any suggestion please ?

Posted

includes/boxes/currencies.php - use some html to stick it inside a table, give the table a border which is a different colour to the background of the other boxes.

 

Vger

Archived

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

×
×
  • Create New...