How do i position the date

Hi, how do i position the datepicker in right side of my textbox ?

Thank you in advance.:slight_smile:

Hi,

Do you have an example so we can see what’s happening.

It also depends on what datepicker you are using exactly. I assume its the jquery datepicker which has its position controlled by javascript relative to the input. It won’t be much use modifying the css as that will get over-written with an inline style when the js runs unless you use !important but then you would lose the js auto positioning . You could move it left or right using a margin I believe by modifying .ui-datepicker in the css file.

e.g.


.ui-datepicker{margin-left:100px}

yeah I am using jquery datepicker,…and this works fine for me. :slight_smile:

Thank you :slight_smile: