• Im trying to change the text decoration only for the events column on my home page to NONE and trying to change the event details to a white color. I’ve tried adding
    .calendar-highlights .event-title a { text-decoration: none; } to my CSS but it doesn’t work. As far as the font color for the event details go I’m completely stumped.

    https://partners.sbceo.org

Viewing 2 replies - 1 through 2 (of 2 total)
  • The code you posted should have worked. Are you using any caching plugins? If so, you need to temporarily disable the plugin or force-refresh your browser (see your browser’s documentation) to see your changes. As for your event details, if your theme has a custom CSS option, use it; otherwise, get a custom CSS plugin and try:

    .calendar-highlights .event-details,
    .calendar-highlights .venue {
        color: #E7C75B;
    }

    I used the same yellow color that’s on your website in a few other places, but you could also check out a site like Colorpicker to get an appropriate color.

    Thread Starter lRlevolution

    (@lrlevolution)

    Thank you! I got the links to work by

    .calendar-highlights .event-details,
    .calendar-highlights .event-title {text-decoration: none;}

    you rock!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I target events column on my homepage.’ is closed to new replies.