Search code examples
javascriptbootbox

Issue with title bootbox


Can anyone tell me how to fix it? Ihave the same title issue in the alert box.

bootbox.confirm({
    title: "Confirmation",
    message: "Are you sure you want to delete the selected items?",
    buttons: {
        confirm: {
             label: 'Yes',
             className: 'btn-success',
        },
        cancel: {
            label: 'No',
            className: 'btn-danger'
        }
    },
    callback: function (result) {
                    if (result == true) {
                        $("#delete").submit();
                    } 
                }
    });

enter image description here


Solution

  • You seem to have messed up some CSS.

    Maybe you are using another library which is overwriting bootbox styles.

    You can try the following to fix that particular issue:

    .bootbox .modal-header h4 {
      float: none;
    }
    
    .bootbox .modal-header .close {
      position: absolute;
      right: 15px;
    }