[ad_1]
Hi @diploidaa
You can use the ‘hover’ color picker to select the hover color for active regions.
If you want to target all regions, active and inactive, the css code would be:
.imapsMapPolygon-group:hover
{
stroke-width:2px;
stroke:#6699cc;
fill:#6699CC;
}If you only want to target inactive regions:
.imapsMapPolygon-group[fill="#e0e0e0"]:hover
{
stroke-width:2px;
stroke:#6699cc;
fill:#6699CC;
}Where #e0e0e0 is the inactive colour.
Greetings, Carlos
