Placement of calendar icon falls below textbox, I believe this is because the css code in jscalendar.css is theme dependent. To place the icon under the selector .jscalendar-icon there is a text-indent: -1000em;. If you remove this and under input.form-text.jscalendar add display: inline; the icon will show after the textbox.
Comments
Comment #1
scb commentedThis is also happening in 5.x-0.3 with drupal 5.1.
Adding
float:left;to the selectorinput.form-text.jscalendarin jscalendar.css solves the problem.Comment #2
amessina commentedthis issue occurs in 4.7.x-1.x-dev but adding the above "float: left" fix works. note that without that fix, the calendar icon does not display at all in ie6 or ie7.
Comment #3
buddaI can confirm that the canlendar icon does appear under the textbox for the date, and in IE7 the icon doesn't even appear on screen!Adding the
float: left;does fix the placement of the image in FF2, and makes the image appear in IE7.However, under IE7 the image doesn't bring up the pop-up calendar onclick.