I am attempting to change the title bar color of a dialog box in CSS, but I am running into issues. Below is the HTML code for the dialog box and the corresponding CSS.
<div id="picture1Dialog" title = "Title">
<p id="picture1Text"></p>
</div>
CSS
#picture1Dialog.ui-dialog-titlebar{
background-color: #f00;
}