motif theme google map link not working and grid page edit

  • Unknown's avatar

    I have some problems with google map embedded ( on the contact us page ) : when i press the ” view lager map ” , 9 out of 10 times , it will be “The Google Maps Embed API must be used in an iframe. ” Occasionally , it works, but most time, it does not work. I just wonder, whether i can remove this sentence completely.

    Another question is the page ( our services ) , which is a grid page. I left the excerpt area blank, which cause the white space underneath the pictures of each child page. Is there any chance remove that space?

    thanks for your help

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I’m not sure how to fix it, but this code will hide the “view larger map” link:

    .googlemaps small {
      display:none;
    }

    This will hide the white boxes that would otherwise contain the excerpts on the Our Services page:

    .page-id-58 .entry-summary {
      display:none;
    }
  • Unknown's avatar

    thanks hallluke, it works great. Both of the problem have been sorted.

    another question, is there any chance to change the size and font of the words in the grid page? such as ” free consultation, etc” I would like to make them looks slightly smaller and probably another font.

    thanks again, you are really helpful, have helped me a lot!

  • Unknown's avatar

    Yes, you can make those changes using the example below:

    .page-id-58 h1.entry-title {
      font-size:1.2rem;
      font-family:"Droid Sans",Arial,sans-serif;
    }

    I quite like the existing font though, it matches the page and footer headers and you want to be careful about including too many different types of font because it can make your site visually confusing. Perhaps try looking through the custom fonts to see if you can select something from there instead.

  • Unknown's avatar

    the code changed the size of the text, however, it changes the page title size as well. I would like to keep the original size of the page title, ” our services” above the feature image, and just change the size of the text under each small images.

    Just like what you suggest, I will keep the same font. After change the size, it looks great. could you help me change the page title text back to the bigger size and keep the other small?

    thanks

  • Unknown's avatar

    Swap the previous code for this and it should work:

    .page-id-58 .grid h1.entry-title{
      font-size:1.2rem;
    }
  • Unknown's avatar
  • The topic ‘motif theme google map link not working and grid page edit’ is closed to new replies.