Skip Navigation

[Resolved] make in between field into 2 columns

This support ticket is created 2 years, 2 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 8 replies, has 2 voices.

Last updated by ashodK 2 years, 2 months ago.

Assisted by: Luo Yang.

Author
Posts
#2478579
2022-10-18_15-45-07.jpg
2022-10-18_15-43-13.jpg

how can I make the in between number field search feature into 2 column?
i activated the 2 column feature but its not working
when I save the setting and then refresh the page, it gets deactivated on its own
here is the page
hidden link
see attached image

#2478933
my-date-filter.jpg

Hello,

Thanks for the feedback, I can duplicate the same problem, will escalate this issue.

Currently, please try these:
1) Edit the page you mentioned above, find the "Date" Custom Search Filter block, add a custom CSS class name in it: my-date-filter
See my screenshot my-date-filter.jpg
2) Add below custom CSS codes into the view:

.my-date-filter div {
    display: flex;
    margin-bottom: 1.75em;
    box-sizing: border-box;
    flex-wrap: wrap!important;
    align-items: normal!important;
}
.my-date-filter div.form-group {
 margin-right: 1em;
}

See below test site:
hidden link

Login URL:
hidden link

#2479215

this worked, but is this a temporary fix? Until the radio button option works?

#2479785

Thanks for the confirmation, I have escalated this issue, will update here if there is anything news.

#2487213
2022-11-01_16-12-55.png
2022-11-01_16-13-34.png

I did the same steps for another archive page but its not working

see images

hidden link

#2487327
input-boxes.jpg

In your case, please try to add below CSS codes:

div.my-date-filter input.form-control[type=text]{
    width: 8em;
}

And test again

It works fine in my Chrome browser, see my screenshot input-boxes.jpg

#2487951

is there a way to do autowidth so it expands to each column?

Thanks

#2488215

No, there isn't such kind of built-in feature within Toolset plugins, you can test it in your own website, for example: modify the CSS codes as be width: auto, it won't work

#2488227

My issue is resolved now. Thank you!