How to overide the map's loading icon ?

547
0
10-03-2016 10:30 PM
JeremieCornet1
Occasional Contributor II
5 0 547

Hi,

If you want to change the position of the map's loading icon (which is not convenient in Foldable Theme), it's simple with css.

Loading

You just have to overide style's properties with !important, for example in the index.html style.

Left bottom : 20px for left and standard bottom

.map .load-container {
    left: 20px !important;
}

Left top : 20px for top and 50 for left

.map .load-container {
    top: 20px !important;
    left: 50px !important;
}