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

    (@morehawes)

    Hi David,

    Firstly thanks for the review and for your kind words, I really appreciate it.

    As for the Map width, while there isn’t an option for this (yet), you can easily adjust the width of Maps using CSS:

    To adjust *all* Maps:

    .waymark-shortcode {
      width: 400px;  
    }

    To adjust a single Map you will need to inspect the page source to find the Map ID. Each Map starts with some HTML that looks like this:

    <article id="waymark-shortcode-22b29a" class="waymark-shortcode waymark-container">

    You can use this ID to target a single Map with CSS:

    #waymark-shortcode-22b29a {
      width: 600px
    }

    I hope this helps.

    Joe

    Thread Starter carldavidcarlstrom

    (@carldavidcarlstrom)

    Hey,

    ok, then I know great. I′m sure there might be an option later, but for now the CSS works fine. Thank you!

    /David

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Width?’ is closed to new replies.