Hi,
Please give me a link of your product that shows the flag. This could be done with some css.
Please use this css:
.woo-multi-currency.wmc-price-switcher{
display: inline-block;
}
.woo-multi-currency.wmc-price-switcher+p.price {
display: inline-block;
float:left;
margin-right: 20px;
}
It says float can’t be used with inline-block, but it’s looking better positioned than before!
Is there a way to remove the drop down aspect so it shows both prices at once?
This could be what you want:
.woo-multi-currency.wmc-price-switcher .wmc-current-currency {
vertical-align: bottom;
}
.woo-multi-currency.wmc-price-switcher .wmc-sub-currency{
position:unset !important;
opacity:1 !important;
visibility:visible !important;
}
.woo-multi-currency.wmc-price-switcher .wmc-current-currency:before{
content:"" !important;
}
That looks so much better!! Thank you. I wish it would let us float that flag over the other side of the price though ha ha.
I think css can not help in this case.
Yeah that’s what I was thinking.
It would be cool if you guys had different layouts for prices. Like flag then price listed as inline or with breaks in between, or just a normal drop down. The CSS looks completely weird and foreign on my site dropping down so fancy lol.
Thanks so much for the help!