Change the default width of the two columns from predictive search

The predictive search capability is phenominal.
However, the narrow columns takes away from the function by not seeing the whole description field that is being searched. Any ideas?
image

1 Like

Hello Larson,
Were you able to figure this out?

Never did…
I think if you make the source column wider, then the predictive search window is wider.

I just looked at this and I found a way by modifying the .css file in the server app. I guess that would need to be done every time we upgrade but I’m still researching what are the impacts of doing this

  1. Open your Epicor in the web browser
  2. Open the developer console and then search for the source files being loaded. Spefically, the styles.(id).css file
  3. Go to your Epicor server directory (Mine is D:\Websites(Server)\Server\Apps\ERP\Home)
  4. Backup the styles.(id).css file
  5. Add these lines to the end of the styles.(id).css file. Simply change the number of pixels that you want
.predictive-search-grid [_ngcontent-ng-c3392144069]
{
    width: 1000px !important;
}

1 Like