开发者

jquery datapicker reduce table width

开发者 https://www.devze.com 2023-02-11 06:17 出处:网络
I want to reduce the widch of the datepicker table at my site http://ecentriconline.com/surferbeachfront/.

I want to reduce the widch of the datepicker table at my site http://ecentriconline.com/surferbeachfront/.

Ple开发者_JAVA技巧ase let me know how to achieve this.

Thanks.


You have an inline style definition:

<div class="datepick-inline" style="width: 282px;"> </div>

which should be something like

<div class="datepick-inline" style="width: 225px;"> </div>

then change traditional.css line 83 to

.datepick-header { font-size: 0.85em; font-weight: bold; padding: 5px 0; text-align: center; width: 225px; }

Then you'll want to play around with your margins and padding to make it sit a bit more nicely.

0

精彩评论

暂无评论...
验证码 换一张
取 消