Change Search Box to a line

Can we remove the search bar to have a unique line as in the screenshot below?
image

Hi Lucas,

Yes, it is possible to customize the styling of the search bar. For example, you could add the following CSS to adjust the border and make it a single line on the bottom:

.yxt-SearchBar-container {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid grey;
    border-radius: 0;
}

Here is a screenshot of what the search bar looks like with the above CSS styling:

Best,
DJ