• Resolved peterfrycki

    (@peterfrycki)


    Since the latest update (Which I really like overall) the Locations are listed with each word of a location on a separate line. This wastes space. I want to save the space and have most locations name info on one line on the list view. Where is this setting or a fix to stop it from going to the next line on each word of the location name?

    example from today:

    Nucky’s
    Kitchen
    &
    Speakeasy

    I would prefer it to list the location on one line as: Nucky’s Kitchen & Speakeasy

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

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

    (@angelo_nwl)

    You can to add this custom CSS at the end of your theme style.css

    .em-event-location a {
      width: 100% !important;
      display: contents;
    }

    This worked, but the text was still being bumped down to the second line beneath the icon. I added the following code to get them both on one line:

    .em-event-location a {
    width: 100% !important;
    display: contents;
    }
    .em-event-meta.em-item-meta br {
    display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Locations are listed with each word on a separate line. I want on one line only’ is closed to new replies.