• Resolved neautotalk

    (@neautotalk)


    The Google map box is greyed out on the computer view. Works on the mobile layout. Is there a way to hide it on the computer view? Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support shubham0095

    (@shubham0095)

    Hi @neautotalk

    Do you want to completely remove the google map from the computer view?
    If yes, then please use the custom CSS code given below to remove the map from computer and show it on mobile view.

    .epta-map-area{
    display:none !important;
    }
    @media screen and (max-width: 480px){
    .epta-map-area{
    display:block !important;
    }
    }

    Thread Starter neautotalk

    (@neautotalk)

    That worked, thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Grey Google Map Box’ is closed to new replies.