Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Nick Young

    (@nickyoung87)

    For the title you can check this out:

    https://github.com/moonstonemedia/Simple-Calendar-Library/blob/master/css/hide_list_view_heading.css

    For the other issue it might be something in your event builder codes for that calendar. Could you post those here and I will take a look for you?

    Thanks!

    Thread Starter poboxes

    (@poboxes)

    Thanks for the headings, worked of course. Now need to figure out how to remove the space it took as I don’t need it on the widget.

    For the extra > character, its not in the calendar function its something in my theme but I cant work out how to get around it. I made another calendar and it did the same with

    <strong>[title]</strong><p>[when]
    [location]</p><div>[description]</div><p>[link newwindow="yes"]See more details[/link]</p>

    Its showing as ::before between

    <li class="simcal-event simcal-event-recurring simcal-event-has-location simcal-events-calendar-531" itemprop="event" itemscope="" itemtype="https://schema.org/Event">


    and

    <div class="simcal-event-details">

    and is…

    `media=”all”
    .widget ul>li::before {
    content: ‘\f432’;
    font-size: 12px;
    margin-bottom: 2px;
    margin-right: 6px;
    vertical-align: middle;
    transform: rotate(90deg);
    }`

    Thread Starter poboxes

    (@poboxes)

    Found the code for the space at the top of the calendar list from another thread (Thanks mcarpenter2004)

    .simcal-calendar-list .simcal-current {
        visibility: hidden !important;
    }
    .simcal-calendar-list > .simcal-calendar-head{
       display: none !important;
    }
    .simcal-default-calendar-list{
       padding-top: 0px !important;
    }

    But I cannot work out my > issue

    Thread Starter poboxes

    (@poboxes)

    Found it!

    Thanks for your help especially as it wasn’t connected to the calendar at all!!!

    .widget ul>li::before {
       display: none !important;
    }
    Plugin Contributor Nick Young

    (@nickyoung87)

    Well I am glad you found the issue ??

    So was that coming from your theme then?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Widget ">" before each event’ is closed to new replies.