• Resolved mhimel

    (@mhimel)


    I’m trying to basically make a page for a single category that has a table structure like the main page and is grouped by month. The problem I’m having is that there is a stray <p> tag after every event that I can’t figure out where it’s coming from, so there is a whole bunch of extraneous space. Here is my shortcode:

    [events_list_grouped mode="monthly" date_format="F Y" format_header="<table cellpadding=0 cellspacing=0><thead><tr><th width=125px>Date</th><th width=175px>Type of Event</th><th>Location</th></tr></thead><tbody>" format_footer="</tbody></table>"]<tr><td>#_EVENTDATES</td><td>#_EVENTNAME</td><td>{has_location}<a href="#_ATT{LocationLink}" target="_blank"> #_LOCATIONNAME</a>,#_LOCATIONTOWN #_LOCATIONSTATE{/has_location}</td></tr>[/events_list_grouped]

    and here is the resulting page:
    https://lesliehowardyoga.com/newsite/workshops/

    https://www.ads-software.com/plugins/events-manager/

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

    (@angelo_nwl)

    maybe your theme is adding extra p and br tags (you can asked your theme provider on how to disable this)

    however, you can try this snippet in your theme style.css

    p:empty {
      display: none;
    }

    or

    .entry-content br {
      display: none;
    }
    Thread Starter mhimel

    (@mhimel)

    It’s definitely not the theme – tried a very simple theme and it still does it. Will use CSS as a workaround, thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘extra space in events_list_grouped’ is closed to new replies.