CCBJ Posted October 26, 2006 Posted October 26, 2006 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 ?
usernamenone Posted October 27, 2006 Posted October 27, 2006 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 ?
♥Vger Posted October 27, 2006 Posted October 27, 2006 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
CCBJ Posted October 27, 2006 Author Posted October 27, 2006 Thanks, but I wanted to get rid of it, not creating a new border. .infoBox {background: #b6b7cb; does not affect my currencies-box . Background-color in currencies.php does. You might see what I mean here http://www.clausjoergensen.com/catalog/
Recommended Posts
Archived
This topic is now archived and is closed to further replies.