Using Google Maps, I am trying to have an info window open with tabs in it, each tab showing a different city for the selected country. The problem is that the city names don't always fit into a tab so they make the design break. How can I change the dimensions of the tabs considering that I have to pass a string as tab label (not a node, which could be styled)? Note that it is the tab label that doesn't fit, not the content.
Here is the code I use to add the tabs:
var tab1 = new GInfoWindowTab("string", node);
var tab2 = new GInfoWindowTab("string", node);
tabs.push(tab1);
tabs.push(tab2);
marker.openInfoWindowTabs(tabs);
where node is a valid DOM node, of course