ThinkGeo.com    |     Documentation    |     Premium Support

Customize text appearance

Is it possible to customize the css of the circled elements in the enclosed file? What i would like to do is setting a white background with a black color so that the elements are always visisble whatever the color of the map displayed.


thanks in advance



Sebastien, 
  
 Sorry, the image you attached crashes. I don’t understand your issue quite well. Please update your image and provide us more information for your queries. 
  
 Thanks, 
 Howard

what i meant was to customize the appeasrance of the coordonates on the bottom right and the text that shows the scale in miles and kilometers on the bottom left. 


Hi Sebastien,


To change the appearance of the coordinates and scale line text, you should customize the css style of the coordinates control and scale line control. For example, if you want to change the color of the text to white, just add some html following the definition of the map control like this:

[script removed]
</cc1:Map>
<style type="text/css">
    div.olControlMousePosition
    {
        bottom: 0em;
        right: 3px;
        display: block;
        position: absolute;
        font-family: Arial, Helvetica, sans-serif;
        font-size: x-small;
        color: White;
        background-color: Black;
    }
    .olControlScaleLine
    {
        background-color: Black;
        left: 10px;
        bottom: 15px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: xx-small;
        color: White;
    }
</style>

 
Any more questions please let me know.
Thanks,
Sun