Is there a way to get the date picker to show up on top of the field rather then below the entire form?
Hey Erik,To display the date picker at the top of the input field, use the following CSS code in Appearance → Customizer → Additional CSS.#ui-datepicker-div.ui-datepicker {margin-top: -275px !important;}
Here is the output:
Batter code view: https://codefile.io/f/e3kbsT63Il
Alternative code:
#ui-datepicker-div.ui-datepicker {
bottom: -165px !important;
top: unset !important;
}
Please login or Register to submit your answer