Hello,
You can align to center position, but you can ajust it relative to your sidebar.
1) Please open this file
../booking/css/client.css
at line 140
find this code:
.wpdev_hint_with_text {
float: left;
white-space: nowrap;
}
and replace it to this code:
.wpdev_hint_with_text {
float: none;
white-space: nowrap;
}
2) then at line 159
replace this code:
.block_hints {
border: medium none;
clear: both;
font-size: 11px;
height: 30px;
margin: 0 auto !important;
width: 280px !important;
}
to this:
.block_hints {
border: 1px solid #000000;
font-size: 11px;
height: 30px;
margin: 0 auto !important;
padding: 0 35px !important;
text-align: center;
}
Perfect, worked like a charm, thank you!