hi @eochoa ,
I hope you’re doing well, and I’m sorry to see that you’re facing this issue.
That is not the expected behavior for that field, there could be a CSS conflict on your site with a plugin or your theme.
In order to check it, would it be possible for you to share the page where it’s happening with us? In case it has sensitive info, could you please duplicate the form > remove all sensitive info, and add it to a test page? Then share that test page with us.
We’ll check it further for you.
I hope to hear back from you soon.
Best Regards,
Williams Valerio
Thread Starter
Ed
(@eochoa)
Hi @eochoa
Thank you for the link, it seems any other plugin or theme is adding a max height to the calendar container:
https://monosnap.com/file/HpqDPWfREswinVSc0ggcOpV4AWRaEi
Since site is using the caching plugin I couldn’t identify the origin of that CSS but you can override it with:
.forminator-calendar--material.ui-widget-content{
max-height: unset !important;
}
Please, add to WordPress > Appearance > Custom CSS.
Let us know the result you get.
Best Regards
Patrick Freitas
Thread Starter
Ed
(@eochoa)
Hi @eochoa
I checked again and I can see the conflict is with your theme codes, this code should fixed the number alignment.
.forminator-calendar--material .ui-state-default {
display: flex !important;
justify-content: center !important;
align-items: center !important;
}
You can add it in the same place in wp-admin => appearance => customizer => additional CSS.
Best Regards
Amin
Thread Starter
Ed
(@eochoa)
oh wow didn’t notice that…thank you so much! it works…