• Resolved yfbchelp

    (@yfbchelp)


    Hi everyone,

    If you’re like me, and using the free plug-in (which is really solid, thanks team), but you want to get rid of things like bullet points, there’s a video on how to decipher the CSS (which is what styles your website), if you search for another post titled “Bullet Points.” The video is generic, so it shows you how to change anything. If you want to specifically change the bullet points to not show up, and maybe add some space and a separator between your listings, here’s the code:

    Removes the bullet point completely:
    ul.ecs-event-list {
    list-style-type: none;
    }

    Adds a double line divider and puts a little space below it to make your list look nicer:

    li.ecs-event {
    border-bottom: double;
    margin-bottom: 0.5em;
    }

    You need to put this in your Additional CSS section in your WordPress theme.

    Good luck and happy styling!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.