Comments Gillian Cook started the conversationAugust 27, 2020 at 10:40pmHi there,Is there any way to change the bullet points on this page to match the colour of the text with which they appear?Kind regardsGillian 1,558Laborator repliedAugust 28, 2020 at 7:26amHi Gillian,That's not possible through theme options or any styling method but I could achieve it by doing some CSS tricks, I have added to each row a class so for example the row where the red text is is named red-section: (view large version)And so on, after that I have added this CSS to Custom CSS of that page: ul { list-style: none; } .red-section li:before { content: "• "; color: #be1823; } .blue-section li:before { content: "• "; color: #2a3183; } .green-section li:before { content: "• "; color: #016e37; } Best regards,Laborator Team Documentation Join Kalium Users Group Sign in to reply ...
Hi there,
Is there any way to change the bullet points on this page to match the colour of the text with which they appear?
Kind regards
Gillian
Hi Gillian,
That's not possible through theme options or any styling method but I could achieve it by doing some CSS tricks, I have added to each row a class so for example the row where the red text is is named red-section:
(view large version)
And so on, after that I have added this CSS to Custom CSS of that page:
Best regards,
Laborator Team