Jump to content

[solved] Currency selection at front office


Jevgen

Recommended Posts

Hello everyone. I need help. By default in PS selected currency is without any trim around. Only others currencies are in square box. But I want what selected currency was in square box.

On picture you see that euro is selected and I want that square box was around euro, but not around kr.

Any solutions?

38883_jsOPb0pPvDDAwY5qgfTo_t

Link to comment
Share on other sites

resolved by myself
at global.css changed following code:

#header_right #currencies_block_top ul li a {
   display: block;
   font-size: 0.8em;
   background-color: #f1f2f4;
   border: #595a5e 1px solid;
   text-decoration: none;
   min-width: 1em;
   padding: 0 2px 0 3px;
   line-height: 1.5em;
   text-align: center;
   vertical-align: middle
}
#header_right #currencies_block_top ul li a:hover {
   background-color: white;
   color: black
}
#header_right #currencies_block_top ul li.selected a {
   border: none;
   background-color: transparent;
   font-size: 11px;
   line-height: 1.2em;
   font-weight: bold;
   color: black;
   border: 1px solid white
}



to ........

#header_right #currencies_block_top ul li a {
   display: block;
   font-size: 11px;
   background-color: transparent;
   border: none;
   text-decoration: none;
   min-width: 1em;
   padding: 0 2px 0 3px;
   line-height: 1.2em;
   text-align: center;
   vertical-align: middle;
   border: 1px solid white
}
#header_right #currencies_block_top ul li a:hover {
   background-color: white;
   color: black
}
#header_right #currencies_block_top ul li.selected a {
   border: #595a5e 1px solid;
   background-color: #f1f2f4;
   font-size: 0.8em;
   line-height: 1.5em;
   font-weight: bold;
   color: black
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...