How can I give a textbox or a special heading a colored background?
I cannot find a setting in the dialog box. is there custom css? I know I can give a box a css name in the developer section of the textbox like mybox for example. but how then to address it so that the background behind the text is white.
Hey ausgesonnen,
Please try to add a class to the element in question which you mentioned, then add this to Quick CSS:
.your-class {
background-color: blue;
color: white;
}
Best regards,
Rikard
ok thanks