Solved

Adjust colouring for matching questions

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

Solutions (2)

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.

fieldset

{

border: solid 1px #080808;

background-color:yellow !important;

}

Discussion (3)

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.

fieldset

{

border: solid 1px #080808;

background-color:yellow !important;

}

@nmaharaj thanks for the answer in CSS. This will definitely help me down the road! Cheers!