• Resolved brad12majors

    (@brad12majors)


    Hey My Calendar!
    Very cool plug-in.
    How to remove the “/”-Character between events in the widget list (I managed to insert a carriage return, but the slash is always present)?

    Cheers brad

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    Your theme styles all list items in widgets that way; you’d need to make an exception for My Calendar.

    The styles are on line 2835 of your theme’s style.css stylesheet; you can override by adding custom CSS (Appearance > Customize > Additional Styles) like so:

    .widget .upcoming-events ul li:after {
        content: '';
    }
    Thread Starter brad12majors

    (@brad12majors)

    Thanks Joe!
    Somehow overriding the styles.css does not work, is there a specific place on the custom CSS where I should insert this line?

    brad

    Thread Starter brad12majors

    (@brad12majors)

    Ah, solved!
    Seems the “.upcoming-events”-specifier didn’t work.
    Insert this line:

    .widget ul li:after {
    display: none;
    }

    Now it’s fine ??

    Thanks again.
    brad

    Plugin Author Joe Dolson

    (@joedolson)

    I was specifying something that would only apply to that one list; but I may have gotten the selector wrong. But if you’re good with applying it to all lists, then you’re good to go!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Slash-Character between events’ is closed to new replies.