Can't change the color of timeline on the timeline block?

Am I blind, or can’t I change the colour of the line in the middle of this block? :smiley:

Hi Tim,
I hope it will be solved natively one day but until then you can perform it with custom code:

<style>
#feature-grid1 .feature-container .feature .line {
    background: #ff00ff;
}
#feature-grid1 .feature-container .feature .line .num {
    color: #ff00ff;
    border: 1px solid #ff00ff;
}
</style>

To be inserted in the header custom code of the page.
Change feature-grid1 by the id of the block and change #ff00ff by the color you want.

1 Like

Thank you so much!!!