Thanks for getting back to me.
Looks like it is a theme issue. I fiddle about with the layout in the lddbd_display.php
managed to get the map to display correctly but for some reason the “view bigger” link gets squashed to the point where you can have a word more than three character long. I don’t seem to be able to fix this.
Theme is called: Vantage Premium
You can view the install here: https://mapto.com.au/operators/
` $map_query = $options[‘google_map’];
if($map_query==’Yes’) {
$map=”
<div style=’width:50%; background-color:#0CF; padding:5px’><a target=’_blank’ href=’https://maps.google.com/maps?q={$address}&ie=UTF8&hq=&hnear={$address}&t=m&z=13&source=embed’ style=’color:#000000;text-align:left;text-size-adjust: auto’>+Map</a>
</div>
<br />
<br />
<br />
<div id=’lddbd_map’><iframe width=’100%’ height=’500′ frameborder=’0′ scrolling=’no’ marginheight=’0′ marginwidth=’0′ src=’https://maps.google.com/maps?q={$address}&ie=UTF8&hq=&hnear={$address}&t=m&z=14&iwloc=A&output=embed&typecontrol=0′></iframe>
<br />
</div><br />”;
} else {
$map = “”;
}
}`