So, i really can't override the styles to the map.
I need a full screen map on my homepage..so:
1) I have added
function setBGMPStyle()
{
wp_deregister_style( 'bgmp_style' );
wp_register_style(
'bgmp_style',
get_bloginfo('template_url') . '/bgmp-style.css'
);
wp_enqueue_style( 'bgmp_style' );
}
add_action('init', 'setBGMPStyle');
in my theme's functions.php file
2) Then I saved this bgmp-style.css in my theme folder:
#bgmp_map-canvas
{
width: 100%;
height: 100%;
}
As you can see from my test blog here: smll.eu/maps I get always the default settings.
Can someone help me out?
Thank you!
http://wordpress.org/extend/plugins/basic-google-maps-placemarks/