Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Change style of Currency dropdown menu possible?


The Lego Man

Recommended Posts

Hello

 

I have been trying to change the style of the Currency dropdown menu.

 

Does anyone know how this can be achieved without affecting other text (I was able to reduce font size in stylesheet but it also reduced the Categories listing font size)?

 

Thanks.

Link to comment
Share on other sites

inside the bm_currencies.php on line 56 is this following code:

          $data = '<div class="ui-widget infoBoxContainer">' .

change that for example to

          $data = '<div class="ui-widget-currency infoBoxContainer">' .

then define the new class inside the stylesheet (just a sample code ;) )

.ui-widget-currency select {
 width: 100%;
 height: 25px;
 color: red;
 font-weight: bolder;
 font-size: 18px;
 background-color: blue;
}
Link to comment
Share on other sites

@@Tsimi

 

Thank you very much, that's excellent and worked perfectly! Appreciate the time you took to answer!

 

Is it possible do you THINK to change the Cart Contents and/or Checkout button style using something similar, ie a new class.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...