I uploaded a new custom calender image and put the url where gravity form can find it but it is still showing up really small, is there a way to make it bigger?
I uploaded a new custom calender image and put the url where gravity form can find it but it is still showing up really small, is there a way to make it bigger?
You need to override the rule in your style.css file (line 1401) that sets the width on the icon. Add this to the end of your theme stylesheet and adjust as needed for your application.
body .gform_wrapper img.ui-datepicker-trigger {
width: 48px;
margin:0
}
test screenshot: http://grab.by/91vY
It looks fine in firefox but when I look at it in IE it looks stretched, is there any way to fix that?
Try defining a height value in the CSS rule as well. That should do it for you.