Customer Journey Timeline - how to change the background colour or make transparent?

  • **Issue description:
    **
    I imported the customer journey timeline widget and there is a white background on it with no option to remove, change, or make transparent.

    Ideally, it should be transparent so the background section colour on Squarespace can be changed to any colour without effecting the widget.

  • **Link to the page with the widget in question:
    **
    Coaching — The Etiquette Method

1 Like

Hi there, @John-Paul :waving_hand:

If you’d like to make transparent only the widget background (white section), here is the code that should be added to the Custom CSS field on the Settings tab of your widget’s settings:

[class*='Background__Base-sc'] {
  background: transparent !important;
}

In case you’d like to change the background of the event card, this CSS code will do the trick:

[class*="event-card-layout__Container"] {
    background: transparent!important;
}

Give it a try and let me know if it worked :wink:

1 Like

Brilliant, thank you once again!

2 Likes

Great, you’re always welcome :wink: