Skip Navigation

[Resolved] View – Styling 'Select Multiple' fields

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.

This topic contains 4 replies, has 2 voices.

Last updated by Christopher Amirian 1 year, 1 month ago.

Assisted by: Christopher Amirian.

Author
Posts
#2663661
Screenshot 2023-11-11 at 22.46.00.png

Hello,

I have placed 4 search filters in a grid with 4 columns but the 4th filter is showing on the next row.

1. How do I get all 4 to show on the same row.
2. How can I style the 'Select Multiple' fields to be styled the same as the 'Text search' field

Thanks

#2663767

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

The issue you are experiencing is similar to a known issue that we have:

https://toolset.com/errata/4-column-grid-displaying-as-3-columns-after-wordpress-6-4-update/

We will provide an update to fix the issue.

For the second question, I'd appreciate it if you deactivate your website maintenance mode and give me the URL that contains the items to see if it is possible to give you proper CSS code.

In some cases it is not possible if there is a select bix wich is rendered by the operating system and not HTML code. But I need to check to see.

Thanks.

#2663845

Sure, I can give you access details privately as the website is not ready to go live yet.

#2664013

Christopher Amirian
Supporter

Languages: English (English )

Thank you. Please set the next reply as private and you will be able to provide the login information. Also please tell us which URL to check

#2664159

Christopher Amirian
Supporter

Languages: English (English )

Hi there,
Thank you. Please add the CSS below to the View that you added the search boxes:

.chosen-container-multi .chosen-choices {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 5.5px 14px;
    outline: none;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    width: 100%;
    max-width: 100%;
    -webkit-transition: all .2s ease;
    transition: .25s ease;
    box-shadow: none;
}

Thanks.

#2664327

Brilliant! Thank you.