I am using the External Search
In the field name and Search button there are so many gap.
I want to reduce the gapI try by putting the code in the Client_Script->Table-Specific->List Page->Startup Script
$(‘.ew-basic-search’).css(‘padding-top’, 0);
$(‘.ew-basic-search’).css(‘padding-bottom’, 0);
$(‘.ew-custom-template-search’).css(‘padding-top’, 0);
$(‘.ew-custom-template-search’).css(‘padding-bottom’, 0);but it is not working
- You better add CSS under HTML → Styles → User tab, not by jQuery.
- You may right click element in Chrome and select “Inspect” to check the elements and its CSS and find the correct selector of the element you want to change, you can even test changing CSS there, read:
https://developers.google.com/web/tools/chrome-devtools/css