thijs
October 16, 2023, 3:54pm
1
Dear community,
I would like to use the “Feature grid with steps”, but I don’t see any way to change the color (and perhaps font size) of the steps (line and numbers in the center).
Can somebody help me out?
Suzie
October 16, 2023, 4:53pm
2
Hey @thijs ,
Please, check this thread
Hey guys, a custom code to change the middle line color of the “Feature grid with steps” block (Custom Code → Header area)
<style>
#feature-grid1 .feature-container .feature .line {
background: #ff00ff;
}
#feature-grid1 .feature-container .feature .line .num{
color: #ff00ff;
border: 1px solid #ff00ff;
}
</style>
Thanks,
thijs
October 16, 2023, 7:16pm
3
#feature-grid1 .feature-container .feature .line { background: #ff00ff; } #feature-grid1 .feature-container .feature .line .num{ color: #ff00ff; border: 1px solid #ff00ff; }
Perfect, thank you! Apologies for having missed that message earlier.