Quote:
Originally Posted by banshee
Me to how can I add in the Font color to make the bubbles text darker?
|
Ok here it goes
To edit the color of the text displayed in the balloon
Go to the VBGooglemap_display_map template
(It also occurs in the other templates but it's currently not used YET)
look for
Code:
if ( (type=="yellow") || (type=="red") ){
title = "<a href='/'>"+ title +"</a>";
}
var content = "<div align=\"center\"><strong>"+title +"</strong></div>" + "<hr width=\"100\"/><div align=\"left\" style=\"width: 20em\">" + text +"</div>";
and change this to
Code:
if ( (type=="yellow") || (type=="red") ){
title = "<a href='/'><font color='#000000'>"+ title +"</font></a>";
}
var content = "<div align=\"center\"><strong><font color='#000000'>"+title +"</font></strong></div>" + "<hr width=\"100\"/><div align=\"left\" style=\"width: 20em\"><font color='#000000'>" + text +"</font></div>";
You can change the #000000 to anything you like
I'll make the font color a admincp option to add. This should make life easier for some.