Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27629

    I have an issue with the Google-Map Bubbles that pop up when you click a location and see the details. The issue is, that the bottom-line of the border isn’t aligned correctly. You can see it at:

    http://www.dasjuengstegericht.org

    After investigating a bit I’ve found out that removing the following style from the the base.css fixed the issue:

    * { -moz-box-sizing: border-box;

    -webkit-box-sizing: border-box;

    box-sizing: border-box; }

    My question is: When/where is that style needed?

    Thanks for your feedback.

    Cheers!

    quicky

    #134732

    Hey!

    This style is needed across the site and almost every element is using it. it makes sure that padding and width calculations are done as we intended them.

    However you can try to change the box model to content box for the maps only


    .sabai-embed, .sabai-embed *{ -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box; }

    #134733

    That is awesome! Fixed! :-)

    Thanks, again!

    #134734

    Glad we could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Issue with Google-Map Bubble’ is closed to new replies.