• Resolved georg77

    (@georg77)


    It seems there is a line break between the time and the description of an event in calendar view.

    <span class="time" title="19:00-20:00">19:00</span>
    <br>

    Is it possible to remove that? Although I don’t have access to the calendar, maybe the line break was included in the calendar event itself.

    Thanks!

    George

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

    (@room34)

    That must be in the calendar itself; it’s not part of the template. You can probably hide it though using CSS. Something like this would work:

    .ics-calendar-month-grid .events br { display: none; }

    You might have to tinker with that a bit; this might actually cause the time and description to run together with no space.

    You could also do something like this to insert an em dash between the time and description:

    .ics-calendar-month-grid .events br { display: inline-block; }
    .ics-calendar-month-grid .events br:after {
      content: '\00a0\2014\00a0';
      display: inline-block;
    }
    Plugin Author room34

    (@room34)

    I’m going to mark this as resolved but please feel free to open another topic if you run into anything else.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove line break from calendar view’ is closed to new replies.