• Hello,

    I can’t find how to remove the extra spacing between lines for individual listings. Is there CSS to make it work? The website has the 6.1.2 version of the Events Manager plugin.

    Thank you,

    Geoff

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
  • What are you using for the shortcode?

    Thread Starter geof8

    (@geof8)

    This is the shortcode on the page:

    [events_list_grouped mode=”yearly” scope=”all” groupby_order=”DESC” limit=”0″]

    #_EVENTDATES #_EVENTLINK
    #_EVENTEXCERPT #_EVENTTIMES


    [/events_list_grouped]

    Did you intend to add the blank lines before and after the placeholders?

    Thread Starter geof8

    (@geof8)

    I’m looking to have the spacing something like the attached (I mocked this up in Photoshop, so it’s not exact…)

    Use the following HTML block:

    [events_list_grouped mode=yearly scope=all groupby_order=DESC limit=0]
    <ul>
    <li>#_EVENTDATES #_EVENTLINK</li>
    <li>#_EVENTEXCERPT{10,...}</li>
    <li>#_EVENTTIMES</li>
    </ul>
    [/events_list_grouped]

    Then add the following custom CSS:

    .em.em-list {
    grid-gap: 0;
    }
    .em.em-list li {
    list-style-type: none;
    }
    .em.em-list h2 {
    margin-bottom: 10px !important;
    }

    To add the custom CSS click on Customize then select Additional CSS to add the CSS.

    Thread Starter geof8

    (@geof8)

    Thank you, it looks like the page didn’t take your CSS. I did the test here:

    http://www.tomsantopietro.com/test/

    Yes, you’re correct. You didn’t successfully add the additional CSS.

    Thread Starter geof8

    (@geof8)

    Thank you, the template’s CSS function didn’t do it (someone else designed the site). I was able to make it work via a CSS plugin. Thank you!

    Thread Starter geof8

    (@geof8)

    My client wanted to know if the spacing between entries could be tightened up. Is there a way to do it? The CSS says the gap is 0.

    Can you provide a link to the page?

Viewing 10 replies - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.