This topic has 2 replies, 2 voices, and was last updated 6 years, 7 months ago ago by Rose Tyler
Hi,
What should I do to get the language and currency selector in the same style as your demo?
My site (selector language): http://prntscr.com/j9lrin
Your demo (selector language): http://prntscr.com/j9lpdn
My site (selector value): http://prntscr.com/j9ls3h
Your demo (selector value): http://prntscr.com/j9lsdr
Thank you
Hello,
You need to use custom css code to change looks of your selectors.
For example, add this code in Theme Options > Styling > Custom css or in style.css file of child theme:
.top-bar .wcml-dropdown li ul a {
background-color: #a80d2d;
border: none;
color: white !important;
}
.header .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a {
background-color: #a80d2d;
color: white;
opacity: 1;
}
.top-bar.topbar-color-white a:hover{
color: white;
opacity: 1;
background-color: #b55367ba;
}
.header-center .languages-area > div {
border-color: white;
}
.top-bar ul.wpml-ls-sub-menu, .top-bar .wpml-ls-legacy-dropdown a {
background-color: #a80d2d;
border-color: white;
}
.top-bar .wpml-ls-legacy-dropdown a, .top-bar .wcml-cs-active-currency {
width: 100px;
text-align: center;
}
.top-bar .wpml-ls-legacy-dropdown a {
border: none;
}
.top-bar .wpml-ls-legacy-dropdown a:focus, .top-bar .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a {
background-color: #b55367ba;
color: white;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up