Quote:
Originally Posted by PixelFx
how do I change the width of the main map screen to say 575 pixels?
|
In the vbgooglemap_display_map
Code:
<!-- map -->
<div width="800px">
<fieldset style="width:800px">
To the width you want
and
Quote:
<div id="map" style="width: 800px; height: 400px;"></div>
|
to
Code:
<div id="map" style="width: 550px; height: 275px;"></div>
That should fix that.