Currency selection dropdown

It is easy to add a currency selection dropdown to any of your pages. To do this, you simply need to place the following HTML on your page:

<span id="currency_select"></span>

This will produce a currency selection dropdown that looks like this:

Reducing the width of the currency selection dropdown

In order to better fit on your page, you may need to reduce the width of the currency selection dropdown. You can achieve this using CSS styles.

You may need to experiment with the font size and font family used on your site to achieve the desired result. Here is the style CSS:

#currency_select select { width: 150px; font:0.6em Arial, Helvetica, sans-serif; }

You can add the above style definition into your sites CSS file. Try changing the width parameter to achieve the desired result.



;