Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Flipper Code

    (@flippercode)

    Hello,

    Apology for the delay. Please update the plugin. We’ve released a new version. After that you can add below code snippet to functions.php file of you active theme to apply border on the map. You can change the color and thickness of border according to your choice.

    Place add below code snippet in functions.php file of your active theme :

    add_filter(‘wpgmp_map_output’,’add_additional_style’,10,4);
    function add_additional_style( $output, $map_div, $listing_div, $map ){

    $output .= ‘<style>.wpgmp_map_parent{border: 5px solid orange;}</style>’;
    return $output;
    }

    Please let me know if you need more assistance.

    Thank You

    Thread Starter ma3ry

    (@ma3ry)

    Many thanks!!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How Do I Put A Border On My Map?’ is closed to new replies.