Okay
  Public Ticket #2520532
Change colour of bullet points
Closed

Comments

  • Gillian Cook started the conversation

    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


  •  1,558
    Laborator replied

    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:

    medium
    (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