Kuroshi Posted May 2, 2019 Report Share Posted May 2, 2019 I tried to hide my Search button with this code: <style> .cbSearchButton{ display:none !important; } .cbSearchButtonContainer{ display:none !important; } </style> and it works except when I deploy the embeded script in wordpress, the search button reappears. Quote Link to comment Share on other sites More sharing options...
Kurumi Posted May 2, 2019 Report Share Posted May 2, 2019 You could try this one instead: td[class*="cbSearchButtonContainer"] { display:none !important; } or td[class*="cbSearchButton"] { display:none !important; } I hope this helps! Quote Link to comment Share on other sites More sharing options...
Harbinger Posted May 29, 2019 Report Share Posted May 29, 2019 Hi Batchini, Try to access the Parent node of the element. something like #caspioform > table ... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.