Hi,
I am using a DateField and in my css I am trying to make the font size smaller for this component. I notice that the DatePicker calendar font has become smaller, but the DateTextField does not get that style. How should I make the DateTextField get the same style? Here's the relevant pieces from my code. HTML: --------- <wicket:extend> <form wicket:id="depositSummarySearchForm"> <fieldset> <table> <tr> <td><span wicket:id="dtTm" class="gwformdate" tabindex="1" /></td> </tr> <tr> <td><input type="submit" value="Search" name="submitSearch" tabindex="3"></td> </tr> </table> </fieldset> </form> CSS: -------- span.gwformdate { color: Black; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: x-small; font-weight: 500; } Thanks, Sadhna.