How about this?
.headline { font-size: 18px; font-weight:bold; }
.txt { font-size: 12px; }
and then use these style here:
function htmlinfo(input) {
var html = "<div>";
html += "<div class='headline'>" + input.locationname + "</div>";
html += "<p class='txt'>" + input.zip + " " + input.city + ", " +
input.street + " " + input.house + "</p>";
html += "</div>";
return html;
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---