• I have done as suggested to add a full width map. I added the function:

    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');

    I put this inside the wrapper at the end.

    I then added the bgmp-style.css file and copied the style.css into it along with this style:

    #bgmp_map-canvas
    {
    	width: 100% !important;
    	
    }

    I get a “loading map” on my page, but no map displays

    • This topic was modified 8 years, 3 months ago by taraloca.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Full Width Map’ is closed to new replies.