• It appears the background square matte remains at light grey causing date/time text that is coloured white to be illegible. Can the square’s colour be altered? Can the event text’s colour be altered?

    I am using twenty-seventeen theme in ‘dark’ colours setting.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you create a child theme, you can change the background and foreground colours in its style.css.

    For example:

    .event-list .startdate, .event-list .enddate {
      /* No background colour. */
        background-color: transparent;
    }

    or

    .event-list .startdate, .event-list .enddate {
      /* Background colour dark grey. */
      background-color: #666;
    }

    I recommend using a child theme, because if you make these changes in Twenty Seventeen directly, they will be overwritten the next time you update theme.

    Thread Starter altenbplc

    (@altenbplc)

    Great! Works like a charm – thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Alter Background or text colour’ is closed to new replies.