Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

add text to boxes Im Lost Please Help


Sweet16s

Recommended Posts

Hi there Im Really Stuck,

 

How do I add text inside the boxes.

 

Namely Currency Box - I want to add the following text above the drop down currency list:-

*Display Prices in the following Currency*

 

and then an image under the drop down currency list, can you help me as how to achieve this or even if you only know the answer to one of my questions that would be great as any help is appreciated.

 

Kind Regards

very puzzled oscommerce member

Link to comment
Share on other sites

Hi there Im Really Stuck,

 

How do I add text inside the boxes.

 

Namely Currency Box - I want to add the following text above the drop down currency list:-

 

and then an image under the drop down currency list, can you help me as how to achieve this or even if you only know the answer to one of my questions that would be great as any help is appreciated.

 

Kind Regards

very puzzled oscommerce member

 

Any assistance would be great PLEASE!

Link to comment
Share on other sites

Any assistance would be great PLEASE!

 

 

$info_box_contents = array();

$info_box_contents[] = array('form' => tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get'),

'align' => 'center',

'text' => '*Display Prices in the following Currency*<br>' . tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();" style="width: 100%"') . $hidden_get_variables . tep_hide_session_id() . '<br>' . tep_image('images/your_image.jpg', 'Your image alt text'));

 

 

something like that.

Treasurer MFC

Link to comment
Share on other sites

$info_box_contents = array();

    $info_box_contents[] = array('form' => tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get'),

                                'align' => 'center',

                                'text' => '*Display Prices in the following Currency*<br>' . tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();" style="width: 100%"') . $hidden_get_variables . tep_hide_session_id() . '<br>' . tep_image('images/your_image.jpg', 'Your image alt text'));

something like that.

 

Thank You so much for your help, It has worked a treat just how i wanted it.

 

Much appreciated

 

THANK YOU!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...