Adjusting style of the dialog widget from jquery-ui -
i trying make customizations in dialog widget jquery-ui. accomplish this, include css file follow content in jsp page: .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; background-color: black; } .ui-dialog .ui-dialog-title { float: left; margin: .1em 0; white-space: nowrap; width: 90%; overflow: hidden; text-overflow: ellipsis; text-decoration-color: white; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 20px; margin: -10px 0 0 0; padding: 1px; height: 20px; } which take example available in official page ( http://jqueryui.com/dialog/ ), has no effect in dialog when run application (it's displayed same way, css or without it). the complete code jsp page using dialog this: https://github.com/klebermo/webapp_horario_livre/blob/master/webcontent/web-inf/jsp/acesso/start.jsp someone knows doing wrong?