The following screen shot shows a jquery ui datepicker that, up until recently, was displaying correctly:

Table overflows

The class associated with the problematic table is ui-datepicker-calendar, which is nested in ui-datepicker. I can inspect this element in chrome and see it has a width of 100%, which erroneously confers a width of 617px, that overruns the 217px width of its parent.

I admit my inexperience with CSS, but I thought I could override the style by using something like the following snippet:

.ui-datepicker-calendar
{
width: 217px !important;
}

I've seen this work in other questions on Stack Overflow, but I've been unable to fix this particular bug with like solutions to the above. Any ideas are enthusiastically welcomed.

Edit:

Code:

HTML:

<div id="container">
    <br />
    <!--This div will be dynamically loaded based on the selected tab-->
    <div id="dataDisplay">
    <!-- Section table is loaded here -->
    </div>

    <!--This div will be dynamically loaded based on the selected tab-->
    <div id="mainBody">
    <!--Date picker is loaded here -->
    </div>
</div>

In the CSS:

#sectionTable th, td{
    border-collapse:collapse;
    background-color:#EEE;
    border:2px solid #39F;
    min-width:80px; 
    width:97%;
}

The culprit is in the above CSS entry for sectionTable. Defining the width on this table in another div caused the symptoms in the above screen shot as Mystere Man points out.

For anyone else that stumbles across this question, check out the following resources for CSS syntax and selectors to get a better hold of your CSS file.

link|improve this question
add a semi colon to the end of the width: 217px !important; and also drop the space between the ! and important – scrappedcola Nov 7 '11 at 21:47
please post your code – William Niu Nov 7 '11 at 21:58
Having better syntax would probably do me good in general, but unfortunately this bug didn't budge. I'll update the question to reflect this suggestion though. – Erracity Nov 7 '11 at 22:04
feedback

1 Answer

up vote 1 down vote accepted

More than likely, you have some style that is overriding this. look for a th or td style with a width on it. You may somehow be tripping over a specificity issue.

link|improve this answer
You're absolutely correct. I methodically went through my CSS file and commented out each entry bit by bit, and it was a style referring to th and td. I don't quite understand why it was overriding it yet though. I wish I noticed your comment sooner, haha – Erracity Nov 7 '11 at 23:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.