Adjust colouring for matching questions

andrew-robertson
andrew-robertson Community Member Posts: 354 ♦ Idol ♦
Hello again,

I've been playing CSS to adjust the colour of the fieldset background-color but no success. Is there a quick CSS that I can apply or location in the application to modify them module wide?

Below is the devtools screenshot and one half of the question showing the blue (#0000ff) colouring that I'd like to change.




Cheers and thank you.
Andrew
Andrew R.
Developing content since 2010 using a mixed bag of tools.

Best Answers

  • andrew-robertson
    andrew-robertson Community Member Posts: 354 ♦ Idol ♦
    Answer ✓
    And... I answered my own question... For those wanting to figure it out, you can do it with the following setting under the EDIT QUESTION popup window.


    Andrew R.
    Developing content since 2010 using a mixed bag of tools.
  • nmaharaj
    nmaharaj Moderator Posts: 19 eLearning ROCKSTAR Stage Manager
    Answer ✓
    fieldset
    {
    border: solid 1px #080808;
    background-color:yellow !important;
    }

Answers

  • andrew-robertson
    andrew-robertson Community Member Posts: 354 ♦ Idol ♦
    @nmaharaj thanks for the answer in CSS. This will definitely help me down the road! Cheers!
    Andrew R.
    Developing content since 2010 using a mixed bag of tools.