Dialog body far too small
I am using the following (NuGet download ASP.NET)
- <link rel="stylesheet" href="Content/themes/base/dialog.css" />
- <script>
- $(function () {
- $("#dialog-message").dialog({
- modal: true,
- buttons: {
- Ok: function () {
- $(this).dialog("close");
- }
- }
- });
- });
- </script>
Here is the Div
- <div id="dialog-message" title="Download complete">
- <p>
- Your files have downloaded successfully into the My Downloads folder.
- </p>
- <p>
- Currently using <b>36% of your storage space</b>.
- </p>
- </div>
When I run this there is no background to the title and the body of the text is really small in width - probably about a 1/10 the width of the dialog.

Any idea